/* ================================================================
   AFRODOCS LANDING PAGE — BRAND CSS
   Brand: Cyan #00C8FF → Deep Blue #1B70E0
   ================================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-950: #020810;
  --blue-900: #060f1e;
  --blue-800: #0a1a35;
  --blue-700: #0e2650;
  --blue-600: #133470;
  --blue-500: #1B70E0;
  --blue-400: #2B88F5;
  --blue-300: #4DAAFF;
  --blue-200: #87CCFF;
  --blue-100: #BAE4FF;
  --blue-50:  #E5F4FF;
  --cyan: #00C8FF;
  --success: #22c55e;
  --bg-base: #020810;
  --bg-surface: #060f1e;
  --bg-elevated: #0a1a35;
  --border: #133470;
  --border-subtle: #0e2650;
  --accent: #1B70E0;
  --accent-hover: #2B88F5;
  --accent-muted: #4DAAFF;
  --text-primary: #FFFFFF;
  --text-secondary: #BAE4FF;
  --text-muted: #6B9AC4;
  --gradient-brand: linear-gradient(135deg, #00C8FF, #1B70E0);
  --gradient-brand-r: linear-gradient(135deg, #1B70E0, #00C8FF);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3), 0 1px 4px rgba(0,200,255,0.06);
  --shadow-glow: 0 0 40px rgba(0,200,255,0.15);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(2,8,16,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(19,52,112,0.4);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(2,8,16,0.95); border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 36px; height: 36px; border-radius: 8px; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: 0.02em; color: #fff;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition); position: relative;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-brand); border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav-cta {
  padding: 8px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
  background: var(--gradient-brand); color: #fff; transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,200,255,0.2);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,200,255,0.35); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 24px; gap: 2px;
  border-top: 1px solid var(--border-subtle);
}
.mobile-menu a {
  padding: 12px 16px; border-radius: 8px; font-size: 15px; font-weight: 500;
  color: var(--text-secondary); transition: var(--transition);
}
.mobile-menu a:hover { background: var(--bg-elevated); color: var(--cyan); }
.btn-mobile-cta {
  margin-top: 8px; text-align: center; padding: 12px;
  background: var(--gradient-brand); color: #fff; border-radius: 10px; font-weight: 600;
}

@media(max-width:768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .mobile-menu.open { display: flex; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding: 100px 24px 60px;
  position: relative; overflow: hidden;
  max-width: 1200px; margin: 0 auto;
}
.hero-bg-grid {
  position: absolute; inset: 0; opacity: 0.3;
  background-image:
    linear-gradient(rgba(0,200,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.hero-glow-1 { width: 500px; height: 500px; top: -100px; right: -100px; background: rgba(0,200,255,0.12); }
.hero-glow-2 { width: 400px; height: 400px; bottom: -80px; left: -80px; background: rgba(27,112,224,0.1); }
.hero-content { flex: 1; max-width: 600px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.2);
  color: var(--cyan); margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
  animation: fadeInUp 0.7s ease forwards;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem); color: var(--text-muted);
  line-height: 1.7; margin-bottom: 32px; max-width: 520px;
  text-align: justify;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeInUp 0.9s ease forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: var(--gradient-brand); color: #fff; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,200,255,0.25); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0,200,255,0.4); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 14px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent-muted); color: var(--cyan); background: rgba(0,200,255,0.05); }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeInUp 1s ease forwards;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--cyan); }
.stat-suffix { font-size: 1.4rem; font-weight: 700; color: var(--accent-muted); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.03em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-visual {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2; padding-left: 40px;
}
.hero-mockup {
  width: 100%; max-width: 520px; border-radius: var(--radius-lg);
  background: var(--bg-surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden; animation: floatUp 1s ease forwards, float 6s ease-in-out infinite 1s;
}
.mockup-header {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: var(--bg-elevated); border-bottom: 1px solid var(--border-subtle);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.mockup-title { font-size: 12px; color: var(--text-muted); white-space: nowrap; }

.mockup-body { padding: 24px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.single-mockup-body { padding: 16px; }

.transformative-doc {
  position: relative;
  background: #fff; border-radius: 4px; border: 1px solid var(--border-subtle);
  width: 100%; max-width: 440px; aspect-ratio: 1 / 1.414;
  box-shadow: 0 6px 30px rgba(0,0,0,0.25); overflow: hidden;
  text-align: left;
}

.layer-raw { z-index: 1; }
.layer-raw, .layer-formatted {
  position: absolute; inset: 0; padding: 36px 24px 24px;
  background: #fff; width: 100%; height: 100%;
}
.layer-formatted {
  z-index: 2;
  animation: formatWipe 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.header-badges { margin-left: auto; position: relative; width: 130px; height: 20px; }
.h-badge {
  position: absolute; right: 0; top: 0; white-space: nowrap;
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 8px; border-radius: 4px; background: var(--bg-surface); border: 1px solid var(--border-subtle);
}
.raw-badge { color: var(--text-muted); animation: labelRaw 8s infinite cubic-bezier(0.4, 0, 0.2, 1); }
.formatted-badge { color: var(--cyan); border-color: rgba(0,200,255,0.3); background: rgba(0,200,255,0.05); animation: labelFormatted 8s infinite cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes labelRaw { 0%, 25% { opacity: 1; } 35%, 85% { opacity: 0; } 90%, 100% { opacity: 1; } }
@keyframes labelFormatted { 0%, 25% { opacity: 0; } 35%, 85% { opacity: 1; } 90%, 100% { opacity: 0; } }

.scanner-effect {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
}
.scanner-bar {
  position: absolute; left: -10%; right: -10%; top: 0; height: 3px;
  background: var(--cyan); box-shadow: 0 0 20px 4px rgba(0,200,255,0.7);
  animation: scannerMove 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes formatWipe {
  0%, 20% { clip-path: inset(0 0 100% 0); opacity: 1; }
  45%, 85% { clip-path: inset(0 0 0% 0); opacity: 1; }
  90%, 100% { clip-path: inset(0 0 0% 0); opacity: 0; }
}

@keyframes scannerMove {
  0%, 20% { top: 0%; opacity: 0; }
  22% { opacity: 1; }
  45% { top: 100%; opacity: 1; }
  48%, 100% { top: 100%; opacity: 0; }
}

.demo-img { 
  width: 100%; max-width: 440px; height: auto; border-radius: 8px; 
  box-shadow: 0 6px 25px rgba(0,0,0,0.3); border: 1px solid var(--border-subtle); 
  object-fit: contain; background: #fff; 
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
}
.demo-img:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(0,200,255,0.25); z-index: 10; position: relative; }

.raw-content-preview {
  font-family: 'Calibri', 'Segoe UI', sans-serif;
  font-size: 11px;
  color: #111;
  line-height: 1.5;
  white-space: pre-wrap;
  margin: 0;
}

.formatted-page {
  font-family: 'Times New Roman', Times, serif;
  color: #000;
  position: relative;
  height: 100%;
}
.f-title { font-size: 11px; font-weight: bold; text-align: center; margin: 0 0 16px 0; text-transform: uppercase; line-height: 1.5; }
.f-heading { font-size: 11px; font-weight: bold; margin: 16px 0 4px 0; line-height: 1.5; }
.f-subheading { font-size: 11px; font-weight: bold; margin: 16px 0 4px 0; line-height: 1.5; }
.f-heading + .f-subheading { margin-top: 0; }
.f-p { font-size: 11px; margin: 0 0 16px 0; text-align: justify; line-height: 1.5; }
.f-list-item { font-size: 11px; margin: 0 0 0 24px; text-align: left; line-height: 1.5; display: list-item; list-style-type: disc; }
.f-page-number { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); font-size: 11px; color: #000; line-height: 1.5; }

@keyframes floatUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media(max-width:900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { padding-left: 0; margin-top: 40px; width: 100%; }
  .hero-mockup { max-width: 520px; }
  .desktop-br { display: none; }
}
@media(max-width:480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.6rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .mockup-images-container { flex-direction: column; gap: 16px; padding: 16px; }
  .mockup-arrow svg { transform: rotate(90deg); margin: 8px 0; width: 40px; height: 40px; }
}

/* ─── TRUSTED BAR ─── */
.trusted-bar {
  padding: 32px 24px; text-align: center;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.trusted-bar p { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 16px; }
.trust-logos { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-logos span { font-size: 14px; font-weight: 600; color: var(--text-muted); opacity: 0.6; white-space: nowrap; }

/* ─── SECTIONS ─── */
.section { padding: 100px 24px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--cyan);
  margin-bottom: 12px; padding: 4px 14px; border-radius: 100px;
  background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.15);
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); margin-top: 16px; line-height: 1.7; }

/* ─── FEATURES ─── */
.features-section { background: var(--bg-base); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 32px; border-radius: var(--radius-lg); background: var(--bg-surface);
  border: 1px solid var(--border-subtle); transition: var(--transition);
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
  background: rgba(0,200,255,0.08); color: var(--cyan);
  border: 1px solid rgba(0,200,255,0.15);
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.icon-ai { background: rgba(168,85,247,0.1); color: #a855f7; border-color: rgba(168,85,247,0.2); }

@media(max-width:768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:500px) { .features-grid { grid-template-columns: 1fr; } }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--bg-surface); }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step-card {
  flex: 1; max-width: 280px; text-align: center; padding: 32px 24px;
  border-radius: var(--radius-lg); background: var(--bg-elevated);
  border: 1px solid var(--border-subtle); transition: var(--transition);
  position: relative;
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}
.step-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.step-number {
  font-size: 3rem; font-weight: 900; color: rgba(0,200,255,0.1);
  position: absolute; top: 12px; right: 20px; line-height: 1;
}
.step-icon { color: var(--cyan); margin-bottom: 20px; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.step-connector { color: var(--border); display: flex; align-items: center; padding-top: 60px; }

@media(max-width:768px) {
  .steps-grid { flex-direction: column; align-items: center; gap: 16px; }
  .step-connector { display: none; }
  .step-card { max-width: 400px; width: 100%; }
}

/* ─── SHOWCASE ─── */
.showcase-section { background: var(--bg-base); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.showcase-item {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  transition: var(--transition); cursor: pointer;
}
.showcase-item:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.showcase-thumb {
  aspect-ratio: 16/9; background: var(--bg-elevated); display: flex;
  align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,200,255,0.15); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2;
  border: 2px solid rgba(0,200,255,0.3);
}
.showcase-item:hover .play-btn { background: var(--gradient-brand); color: #fff; transform: scale(1.1); border-color: transparent; }
.placeholder-text { position: absolute; bottom: 12px; left: 12px; font-size: 11px; color: var(--text-muted); opacity: 0.6; }
.showcase-item h4 { padding: 16px 16px 4px; font-size: 1rem; font-weight: 700; }
.showcase-item p { padding: 0 16px 16px; font-size: 0.85rem; color: var(--text-muted); }
.showcase-item video, .showcase-item img.uploaded { width: 100%; height: 100%; object-fit: cover; }

.photo-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.gallery-item:hover { border-color: var(--accent); }
.photo-placeholder {
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: var(--text-muted); opacity: 0.5;
}
.photo-placeholder span { font-size: 12px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

@media(max-width:768px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ─── PRICING ─── */
.pricing-section { background: var(--bg-surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-grid-single { grid-template-columns: 1fr; max-width: 360px; }
.pricing-grid-duo { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
.pricing-card {
  border-radius: var(--radius-xl); padding: 36px 28px;
  background: var(--bg-base); border: 1px solid var(--border-subtle);
  text-align: center; transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-6px); }
.pricing-card.featured {
  border-color: var(--accent); background: linear-gradient(180deg, #0a1a35, var(--bg-base));
  box-shadow: 0 0 50px rgba(0,200,255,0.1); transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.06) translateY(-4px); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 100px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--gradient-brand); color: #fff;
}
.pricing-top { margin-bottom: 24px; }
.pricing-top h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pricing-amount { margin-bottom: 8px; }
.price-curr { font-size: 2.8rem; font-weight: 900; }
.price-unit { font-size: 1rem; color: var(--text-muted); margin-left: 4px; }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; flex: 1; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary);
  border-bottom: 1px solid rgba(19,52,112,0.3);
}
.pricing-features li:last-child { border-bottom: none; }
.btn-pricing {
  display: block; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700;
  text-align: center; transition: var(--transition);
  background: rgba(0,200,255,0.08); border: 1px solid var(--border);
  color: var(--text-secondary);
}
.btn-pricing:hover { background: rgba(0,200,255,0.15); border-color: var(--accent); color: #fff; }
.btn-pricing.featured-btn { background: var(--gradient-brand); border: none; color: #fff; box-shadow: 0 4px 20px rgba(0,200,255,0.2); }
.btn-pricing.featured-btn:hover { box-shadow: 0 6px 30px rgba(0,200,255,0.35); }

@media(max-width:768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 380px; } .pricing-grid-single { max-width: 380px; } .pricing-grid-duo { grid-template-columns: 1fr; max-width: 380px; } .pricing-card.featured { transform: none; } .pricing-card.featured:hover { transform: translateY(-4px); } }

/* Pricing tier headers & info */
.pricing-tier-header {
  font-size: 1.3rem; font-weight: 800; text-align: center;
  margin-bottom: 4px; color: var(--text-primary);
}
.pricing-tier-desc {
  font-size: 0.92rem; color: var(--text-muted); text-align: center;
  margin-bottom: 24px;
}
.pricing-info-box {
  margin-top: 40px; padding: 20px 24px; border-radius: var(--radius);
  background: rgba(0,200,255,0.04); border: 1px solid rgba(0,200,255,0.12);
  text-align: center;
}
.pricing-info-box p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.pricing-info-box strong { color: var(--cyan); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--bg-base); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  transition: var(--transition);
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}
.testimonial-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

@media(max-width:768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── CTA ─── */
.cta-section {
  background: var(--bg-surface); text-align: center;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
  overflow: hidden; position: relative;
}
.cta-glow {
  position: absolute; width: 600px; height: 300px; top: 50%; left: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,200,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.cta-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
.footer { background: var(--bg-base); padding: 60px 24px 0; border-top: 1px solid var(--border-subtle); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; }
.footer-brand { flex: 1.5; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-img { width: 32px; height: 32px; border-radius: 6px; }
.footer-logo span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 0.02em; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.footer-links-grid { display: flex; gap: 60px; flex: 2; }
.footer-links-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-links-grid h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 4px; }
.footer-links-grid a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-links-grid a:hover { color: var(--cyan); }
.footer-bottom { max-width: 1100px; margin: 40px auto 0; padding: 20px 0; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

@media(max-width:768px) {
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links-grid { gap: 32px; }
}
@media(max-width:500px) { .footer-links-grid { flex-direction: column; gap: 24px; } }

/* ─── VIDEO MODAL ─── */
.video-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; }
.video-modal.active { display: flex; }
.video-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.video-modal-content { position: relative; z-index: 2; width: 90%; max-width: 800px; border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.video-modal-content video { width: 100%; display: block; }
.video-modal-close {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  z-index: 3;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
