/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #000;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
.container { max-width: 1230px; margin: 0 auto; padding: 0 20px; }
.highlight { color: #0082b0; }

/* ===== VARIABLES ===== */
:root {
  --accent: #0082b0;
  --accent-dark: #006a8f;
  --accent-light: #e0f2fe;
  --blue-light: #eef2ff;
  --blue-soft: #eef2ff;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --bg-light: #f8fafc;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  min-height: 72px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 72px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-btn {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown.open .nav-btn { color: var(--accent); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 4px 0;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.dropdown-menu a {
  display: flex;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  transition: background 0.2s;
}
.dropdown-menu a:hover { background: var(--accent-light); color: var(--accent); }
.dropdown-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px !important;
  white-space: normal !important;
  border-bottom: 1px solid var(--border);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}
.dropdown-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  display: block;
  line-height: 1.3;
}
.dropdown-text small {
  font-size: 11px;
  color: #888;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  margin-top: 2px;
}
.dropdown-item:hover .dropdown-text strong { color: var(--accent); }

.header-actions { display: flex; gap: 10px; align-items: center; margin-left: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-outline {
  background: #fff;
  border: 1.5px solid #d1d5db;
  color: #111;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary {
  background: #111;
  color: #fff;
}
.btn-primary:hover { background: #333; }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }

/* ===== HERO CLICKBOOSTMEDIA ===== */
.hero-cbm {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 80px;
}
.hero-cbm-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-cbm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-cbm-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,130,176,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,130,176,0.1) 0%, transparent 50%);
  z-index: 2;
}
.hero-cbm-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.hero-cbm-content {
  text-align: left;
}
.hero-cbm-form .contact-form-card {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-cbm-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,130,176,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 18px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-cbm-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
}
.hero-cbm-content h1 span {
  color: #5bc0eb;
}
.hero-cbm-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 32px;
}
.hero-cbm-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-cbm-actions .btn-primary {
  background: #0082b0;
  color: #fff;
}
.hero-cbm-actions .btn-primary:hover {
  background: #006a8f;
}
.hero-cbm-actions .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.hero-cbm-actions .btn-outline:hover {
  border-color: #5bc0eb;
  color: #5bc0eb;
}
.hero-cbm-stats {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-cbm-stat {
  text-align: center;
}
.hero-cbm-stat strong {
  display: block;
  font-family: 'Kanit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #5bc0eb;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-cbm-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 767px) {
  .hero-cbm-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-cbm-content {
    text-align: center;
  }
  .hero-cbm-content > p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cbm-actions {
    justify-content: center;
  }
  .hero-cbm-stats {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .hero-cbm-content h1 { font-size: 60px; }
  .hero-cbm-content > p { font-size: 18px; }
  .hero-cbm-stat strong { font-size: 38px; }
}
@media (min-width: 1024px) {
  .hero-cbm-content h1 { font-size: 72px; letter-spacing: -3px; }
  .hero-cbm-stats { gap: 60px; }
}

/* ===== TWO BOXES SECTION ===== */
.section-two-boxes {
  padding: 40px 0;
  background: transparent;
}
.two-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-box {
  position: relative;
  background: transparent;
  border: 1px solid rgba(201,201,201,0.36);
  border-radius: 20px;
  padding: 30px 24px;
  overflow: hidden;
}
.info-box-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(187,204,250,0.49), rgba(187,204,250,1));
  opacity: 0.3;
  border-radius: 20px;
}
.info-box-tag {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.info-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.info-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.box-results { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.box-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.box-result-icon { font-size: 24px; flex-shrink: 0; }
.box-result-ai {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0082b0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.box-result-item strong { display: block; font-size: 14px; }
.box-result-item span { font-size: 13px; color: #555; }

.ai-platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.ai-platform-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f7fc;
  border: 1px solid rgba(0,130,176,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #0082b0;
  transition: all 0.2s;
}
.ai-platform-item:hover {
  background: #0082b0;
  color: #fff;
}
.ai-logo { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.ai-platform-item:hover .ai-logo {
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .two-boxes { flex-direction: row; }
  .info-box { padding: 40px; }
  .info-box h2 { font-size: 35px; }
}
@media (min-width: 1280px) {
  .info-box h2 { font-size: 45px; line-height: 56px; }
  .info-box { padding: 50px 40px; }
}

/* ===== LOGOS SECTION ===== */
.section-logos {
  background: #0f172a;
  padding: 40px 0;
  overflow: hidden;
}
.section-logos h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fff;
}
.section-logos h2 span { color: #60a5fa; font-weight: 700; }
.logo-scroll {
  overflow: hidden;
  width: 100%;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}
.logo-track:hover {
  animation-play-state: paused;
}
.logo-track img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (min-width: 768px) {
  .section-logos h2 { font-size: 35px; }
}
@media (min-width: 1280px) {
  .section-logos h2 { font-size: 45px; line-height: 56px; }
}

/* ===== TESTIMONIALS SECTION ===== */
.section-testimonials {
  padding: 50px 0 70px;
  background: transparent;
}
.section-testimonials h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 20px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.section-testimonials h2 span { color: #0082b0; }
.testimonial-slider { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.testimonial-nav {
  display: flex;
  gap: 12px;
  background: #f3f4f6;
  padding: 6px;
  border-radius: 12px;
}
.testimonial-btn {
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  transition: all 0.2s;
}
.testimonial-btn.active { background: #fff; box-shadow: var(--shadow-sm); }
.testimonial-btn img { height: 24px; width: auto; }
.testimonial-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
}
.t-card-avatar {
  font-size: 40px;
  margin-bottom: 8px;
}
.t-card-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 8px;
}
.t-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.t-card p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.t-card-source { font-size: 12px; color: var(--text-light); }
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
}
.testimonial-dots .dot.active { background: var(--accent); }
@media (min-width: 768px) {
  .section-testimonials h2 { font-size: 34px; line-height: 38px; }
}
@media (min-width: 1280px) {
  .section-testimonials h2 { font-size: 50px; line-height: 56px; letter-spacing: -2.5px; width: 65%; }
}

/* ===== STATS SECTION ===== */
.section-stats {
  padding: 60px 0;
  background: radial-gradient(at top left, #FFFFFF 0%, #DFE8FF 100%);
  position: relative;
  overflow: hidden;
}
.section-stats h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 30px;
  padding: 0 16px;
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
  min-width: 180px;
  flex: 1;
}
.stat-card img { height: 40px; width: auto; margin: 0 auto 12px; }
.stat-number {
  font-family: 'Kanit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card p { font-size: 13px; color: #555; line-height: 1.4; }
@media (min-width: 768px) {
  .section-stats h2 { font-size: 40px; line-height: 48px; }
  .stat-number { font-size: 48px; }
}
@media (min-width: 1280px) {
  .section-stats h2 { font-size: 50px; line-height: 60px; }
  .stat-number { font-size: 58px; }
}

/* ===== CLIENT VIDEO TESTIMONIAL SECTION ===== */
.section-client-video {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c1222 0%, #1a1f36 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.section-client-video::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(37,99,235,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(91,192,235,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.client-video-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.client-video-side {
  flex: 1;
  min-width: 0;
}
.client-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,0.15);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.client-video-side h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.client-video-side h2 span { color: #60a5fa; }
.client-video-side > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.client-video-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.client-video-meta strong {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.client-video-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.client-video-player {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 25px 80px rgba(0,0,0,0.5);
  background: #000;
}
.client-video-player video {
  display: block;
  height: 520px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  background: #000;
}
@media (max-width: 768px) {
  .client-video-inner {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .client-video-side h2 { font-size: 28px; }
  .client-video-side > p { max-width: 100%; }
  .section-client-video { padding: 50px 0; }
}
@media (min-width: 1024px) {
  .client-video-side h2 { font-size: 44px; }
}

/* ===== FEATURED ON SECTION ===== */
.section-featured {
  padding: 40px 0;
  background: #fff;
}
.section-featured h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-featured > .container > p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #565656;
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}
.featured-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.featured-row img { height: 30px; width: auto; opacity: 0.7; }
.featured-link { display: block; }
.featured-link img { opacity: 0.8; }
@media (min-width: 768px) {
  .section-featured h2 { font-size: 50px; letter-spacing: -2.5px; }
}

/* ===== SERVICES SECTION ===== */
.section-services {
  padding: 50px 0;
  background: transparent;
}
.services-header { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.services-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.services-header h2 span { color: #0082b0; font-weight: 700; }
.services-header p { font-size: 15px; color: #555; }
.services-grid {
  display: grid;
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.service-card > p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.service-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}
.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0082b0;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) {
  .services-header h2 { font-size: 40px; }
}

/* ===== DASHBOARD SECTION ===== */
.section-dashboard {
  padding: 50px 0;
  background: transparent;
}
.dashboard-wrap {
  background: radial-gradient(at center center, #BBCCFA 0%, #eef2ff 80%);
  border-radius: 20px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.dashboard-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.dashboard-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.dashboard-video { border-radius: 12px; overflow: hidden; }
.video-placeholder { width: 100%; }

@media (min-width: 768px) {
  .dashboard-wrap { padding: 56px 40px; flex-direction: row; align-items: center; }
  .dashboard-text { flex: 1; }
  .dashboard-video { flex: 1; }
}
@media (min-width: 1280px) {
  .dashboard-text h2 { font-size: 36px; }
}

/* ===== WHAT'S NEW SECTION ===== */
.section-whatsnew {
  padding: 60px 0;
  background: radial-gradient(at top center, #BBCCFA 0%, #FFFFFF 100%);
}
.section-whatsnew h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
.section-whatsnew h2 span { color: #0082b0; }
.whatsnew-video { max-width: 600px; margin: 0 auto; border-radius: 12px; overflow: hidden; }
.whatsnew-video video { width: 100%; display: block; border-radius: 12px; }

@media (min-width: 768px) {
  .section-whatsnew h2 { font-size: 40px; }
}
@media (min-width: 1280px) {
  .section-whatsnew h2 { font-size: 50px; line-height: 56px; }
}

/* ===== CTA SECTION ===== */
.section-cta {
  padding: 40px 0;
  background: #fff;
}
.cta-card {
  background: radial-gradient(at center center, #E8EEFF 24%, #BBCCFAB8 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.cta-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .cta-card { padding: 50px 40px; }
  .cta-card h2 { font-size: 50px; line-height: 50px; letter-spacing: -2px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #f8f9fb;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .since {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-top: 12px;
}
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.footer-social a:hover { background: #111; color: #fff; border-color: #111; }
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}
.footer-col p { font-size: 13px; color: #6b7280; line-height: 1.6; margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a img { width: 12px; height: 12px; flex-shrink: 0; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #6b7280;
}
.footer-contact-item a { color: #6b7280; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-item svg { flex-shrink: 0; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6b7280;
}
.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-bottom-links a { color: #6b7280; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-bottom-links span { color: #d1d5db; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== FLOATING PHONE ===== */
.floating-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}
.floating-phone:hover { transform: scale(1.1); }

/* ===== BBB BADGE ===== */
.bbb-badge {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 999;
  background: #006daa;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bbb-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  padding: 120px 0 60px;
  background: radial-gradient(at top left, #FFFFFF 0%, #DFE8FF 100%);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.page-hero p { font-size: 15px; color: #555; max-width: 600px; margin: 0 auto; }

/* ===== SECTION GENERAL ===== */
.section { padding: 60px 0; }
.section-light { background: #f8f9fb; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-header p { font-size: 15px; color: #555; }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: #555; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { gap: 20px; }
  .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions .btn-sm { font-size: 12px; padding: 6px 12px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
}
@media (max-width: 640px) {
  .stat-card { min-width: 140px; }
  .featured-row img { height: 22px; }
}

/* ===== HERO (dark bg inner pages) ===== */
.hero {
  background: radial-gradient(at top left, #002b3d, #001520);
  color: #fff;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
  max-width: 800px;
}
.hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.6;
}

/* ===== CASE CARDS ===== */
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.case-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.case-type { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.case-results { display: flex; flex-direction: column; gap: 6px; }
.case-result { font-size: 13px; font-weight: 600; color: #333; }

/* ===== SERVICE ICON ===== */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-role { font-size: 12px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.faq-left h2 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 400; letter-spacing: -1px; margin-bottom: 12px; }
.faq-left p { font-size: 14px; color: #555; margin-bottom: 20px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: radial-gradient(at center center, #E8EEFF 24%, #BBCCFAB8 100%);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
}
.cta-features { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin: 20px 0; }
.cta-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #555; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card { padding-right: 20px; }
.contact-info-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.contact-info-card > p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.contact-detail .icon { font-size: 24px; width: 40px; text-align: center; }
.contact-detail-label { font-size: 13px; color: var(--text-light); }
.contact-detail-value { font-size: 15px; font-weight: 600; color: #111; }
.social-network { margin-top: 28px; }
.social-network h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.social-icons { display: flex; gap: 8px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  color: #6b7280;
}
.social-icon:hover { background: #111; color: #fff; border-color: #111; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: #555; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 100px; resize: vertical; }

/* ===== BLOGS ===== */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.blog-featured-image, .blog-card-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.blog-featured-content h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.blog-featured-content p { font-size: 14px; color: #555; line-height: 1.6; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-image {
  padding: 24px;
  background: var(--accent-light);
  min-height: 120px;
}
.blog-card-content { padding: 20px; }
.blog-card-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.blog-card-content p { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--accent); }
.read-more:hover { text-decoration: underline; }

/* ===== DOT ===== */
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block; flex-shrink: 0;
}

/* ===== LOGOS SECTION (inner pages) ===== */
.logos-section {
  padding: 24px 0;
  background: #f8f9fb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ===== FEATURED CASE STUDY ===== */
.section-case-study {
  padding: 80px 0;
  background: #fff;
}
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.case-study-content .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.case-study-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}
.case-study-content ul {
  margin-bottom: 32px;
  padding-left: 20px;
}
.case-study-content ul li {
  margin-bottom: 12px;
  color: #4b5563;
}
.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-item {
  padding: 24px;
  border: 1px dashed #e5e7eb;
}
.stat-item h3 {
  font-size: 24px;
  color: #0082b0;
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
}
.chart-svg {
  width: 100%;
  height: 40px;
}
@media (max-width: 768px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE EXTENSIONS ===== */
@media (min-width: 768px) {
  .hero h1 { font-size: 42px; }
  .hero { padding: 140px 0 80px; }
}
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .faq-grid, .blog-featured { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 26px; }
  .cta-box { padding: 32px 20px; }
  .cta-box h2 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form-card { padding: 20px; }
}

/* ===== WORKFLOW ===== */
.workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.workflow-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 32px 16px;
  position: relative;
}
.workflow-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,130,176,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s;
}
.workflow-step:hover .workflow-icon {
  background: rgba(0,130,176,0.15);
}
.workflow-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.workflow-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.workflow-step ul li {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  padding: 0;
}
.workflow-arrow {
  display: flex;
  align-items: center;
  padding-top: 48px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .workflow-steps {
    flex-direction: column;
    align-items: center;
  }
  .workflow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }
  .workflow-step {
    max-width: 100%;
  }
}

/* ===== PRICING PAGE ===== */
.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.pricing-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: #111;
}
.pricing-header p {
  font-size: 16px;
  color: #555;
}

/* Pricing Cards Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-featured {
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: 0 8px 32px rgba(0,130,176,0.15);
}
.pricing-badge {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 0;
}
.pricing-card-header {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-card-header h3 {
  font-family: 'Kanit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price-original {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}
.price-current {
  font-family: 'Kanit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}
.price-period {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}
.pricing-card-body {
  padding: 20px 24px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature span:first-child { color: #555; }
.pricing-feature span:last-child { font-weight: 600; color: #111; }
.feature-yes {
  color: var(--accent) !important;
  font-weight: 700 !important;
}
.feature-no {
  color: #d1d5db !important;
  font-weight: 700 !important;
}
.pricing-card-footer {
  padding: 16px 24px 24px;
}

/* Comparison Table */
.comparison-table-wrapper {
  margin-bottom: 32px;
}
.comparison-section {
  margin-bottom: 32px;
}
.comparison-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  background: var(--accent-light);
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.comparison-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.comparison-col-header {
  background: #f8f9fb;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row span:first-child { color: #555; }
.comparison-row span:last-child { font-weight: 600; color: #111; min-width: 80px; text-align: right; }

/* CTA Row */
.pricing-cta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.pricing-cta-row .btn {
  width: 100%;
  justify-content: center;
}
.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 16px;
  font-style: italic;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cta-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .comparison-grid { grid-template-columns: 1fr; }
  .pricing-cta-row { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-header h2 { font-size: 28px; }
  .price-current { font-size: 32px; }
}

/* ===== BLOG ARTICLE ===== */
.blog-article { max-width: 780px; margin: 0 auto; padding: 40px 20px 80px; }
.blog-article .article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.blog-article .article-tag { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-article .article-date { font-size: 14px; color: #888; }
.blog-article h1 { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; letter-spacing: -1px; }
.blog-article h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 600; margin-top: 40px; margin-bottom: 16px; }
.blog-article h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; margin-top: 32px; margin-bottom: 12px; }
.blog-article p { font-size: 16px; line-height: 1.8; color: #333; margin-bottom: 16px; }
.blog-article ul, .blog-article ol { margin-bottom: 16px; padding-left: 24px; }
.blog-article li { font-size: 16px; line-height: 1.8; color: #333; margin-bottom: 8px; }
.blog-article strong { font-weight: 600; }
.blog-article blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; margin: 24px 0; background: #f8f9fb; border-radius: 0 8px 8px 0; }
.blog-article blockquote p { margin-bottom: 0; font-style: italic; color: #555; }
.blog-article .article-image { margin: 32px 0; border-radius: var(--radius); overflow: hidden; background: #f0f4ff; padding: 40px; text-align: center; }
.blog-article .article-image span { font-size: 13px; color: #888; display: block; margin-top: 12px; }
.blog-article .article-divider { border: none; height: 1px; background: #e5e7eb; margin: 40px 0; }
.blog-article .article-author { display: flex; align-items: center; gap: 16px; padding: 24px; background: #f8f9fb; border-radius: var(--radius); margin-top: 48px; }
.blog-article .article-author-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 20px; flex-shrink: 0; }
.blog-article .article-author-info strong { display: block; font-size: 15px; }
.blog-article .article-author-info span { font-size: 13px; color: #888; }
.blog-article .article-nav { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid #e5e7eb; }
.blog-article .article-nav a { font-size: 14px; font-weight: 600; color: var(--accent); }
.blog-article .article-nav a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .blog-article h1 { font-size: 26px; }
  .blog-article { padding: 24px 16px 60px; }
  .blog-article .article-nav { flex-direction: column; gap: 12px; }
}
