/* ============================================================
   DESIGN TOKENS & RESET
============================================================ */
:root {
  --bg:           #000000;
  --bg-2:         #080808;
  --bg-3:         #0f0f0f;
  --border:       #1a1a1a;
  --border-light: #242424;
  --text:         #f0f0f5;
  --text-2:       #a0a0b8;
  --text-3:       #6060788;
  --accent:       #00e676;
  --accent-hover: #33eb91;
  --accent-2:     #69ff47;
  --accent-glow:  rgba(0, 230, 118, 0.35);
  --accent-2-glow:rgba(105, 255, 71, 0.2);
  --success:      #22c55e;
  --warning:      #f59e0b;
  --danger:       #ef4444;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 40px var(--accent-glow);
  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   LIGHT MODE TOKENS
============================================================ */
[data-theme="light"] {
  --bg:            #f7f8fc;
  --bg-2:          #ffffff;
  --bg-3:          #eef0f6;
  --border:        #e2e4ee;
  --border-light:  #c8cad8;
  --text:          #0a0a14;
  --text-2:        #52546a;
  --accent:        #00a855;
  --accent-hover:  #00c060;
  --accent-glow:   rgba(0, 168, 85, 0.2);
  --accent-2-glow: rgba(80, 200, 50, 0.15);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.1);
  --shadow-glow:   0 0 40px rgba(0, 168, 85, 0.2);
}

[data-theme="light"] .nav-header.scrolled {
  background: rgba(247, 248, 252, 0.88);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.07);
}

@media (max-width: 768px) {
  [data-theme="light"] .nav-links {
    background: rgba(247, 248, 252, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

[data-theme="light"] .cta-inner {
  background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
}

[data-theme="light"] .btn-ghost {
  color: var(--text-2);
  border-color: var(--border-light);
}

[data-theme="light"] .badge-pill {
  color: #000000;
  background: rgba(0, 168, 85, 0.1);
  border-color: rgba(0, 168, 85, 0.3);
}

[data-theme="light"] .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .btn-accent:hover {
  box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0, 168, 85, 0.3);
}

[data-theme="light"] .btn-outline:hover {
  background: rgba(0, 168, 85, 0.06);
}

[data-theme="light"] .hero-visual-wrap {
  box-shadow: var(--shadow-md), 0 0 60px rgba(0, 168, 85, 0.15);
}

[data-theme="light"] .bar {
  background: linear-gradient(180deg, rgba(0, 168, 85, 0.5) 0%, rgba(0, 168, 85, 0.2) 100%);
}

[data-theme="light"] .bar.bar-active {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 168, 85, 0.4) 100%);
}

[data-theme="light"] .feature-card:hover {
  border-color: rgba(0, 168, 85, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 168, 85, 0.08);
}

[data-theme="light"] .feature-icon {
  background: rgba(0, 168, 85, 0.12);
  border-color: rgba(0, 168, 85, 0.2);
}

[data-theme="light"] .feature-card:hover .feature-icon {
  background: rgba(0, 168, 85, 0.2);
}

[data-theme="light"] .step:hover {
  border-color: rgba(0, 168, 85, 0.3);
}

[data-theme="light"] .testimonial-card:hover {
  border-color: rgba(0, 168, 85, 0.25);
}

[data-theme="light"] .testimonial-featured {
  border-color: rgba(0, 168, 85, 0.35);
  background: linear-gradient(135deg, rgba(0, 168, 85, 0.06) 0%, var(--bg-2) 100%);
  box-shadow: 0 0 30px rgba(0, 168, 85, 0.1), inset 0 0 30px rgba(0, 168, 85, 0.03);
}

[data-theme="light"] .pricing-featured {
  border-color: rgba(0, 168, 85, 0.5);
  background: linear-gradient(160deg, rgba(0, 168, 85, 0.08) 0%, var(--bg-3) 50%);
  box-shadow: 0 0 40px rgba(0, 168, 85, 0.2), inset 0 0 40px rgba(0, 168, 85, 0.04);
}

[data-theme="light"] .pricing-featured:hover {
  box-shadow: 0 0 60px rgba(0, 168, 85, 0.3), inset 0 0 40px rgba(0, 168, 85, 0.05);
}

[data-theme="light"] .cta-section::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 168, 85, 0.2) 0%, transparent 70%);
}

[data-theme="light"] ::selection {
  background: rgba(0, 168, 85, 0.3);
}

/* Theme toggle button */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  border: 1px solid var(--border-light);
  background: var(--bg-2);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--bg-3);
}

/* Show sun in dark mode, moon in light mode */
.icon-moon { display: none; }
.icon-sun  { display: block; }

[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none; }

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost-nav {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.btn-ghost-nav:hover { color: var(--text); }

/* Buttons */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(108,99,255,0.3);
  transform: translateY(-1px);
}

.btn-accent.btn-lg {
  padding: 13px 26px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.btn-accent.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(108,99,255,0.06);
}

.btn-outline.btn-full { width: 100%; }

.btn-arrow { transition: transform var(--transition); }
.btn-accent:hover .btn-arrow { transform: translateX(3px); }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* Animated blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 18s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00e676 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
  animation-duration: 20s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #69ff47 0%, transparent 70%);
  top: -100px;
  right: -50px;
  animation-delay: -7s;
  animation-duration: 25s;
  opacity: 0.1;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: 100px;
  left: 30%;
  animation-delay: -12s;
  animation-duration: 22s;
  opacity: 0.08;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(30px, -40px) scale(1.05); }
  50%       { transform: translate(-20px, 30px) scale(0.95); }
  75%       { transform: translate(20px, 20px) scale(1.02); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Badge pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a9a4ff;
  width: fit-content;
  animation: fadeInDown 0.7s ease both;
}

.badge-star {
  color: var(--accent-2);
  font-size: 0.7rem;
}

/* Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 480px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: var(--bg-3);
}

.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #00e676, #00c853); }
.av2 { background: linear-gradient(135deg, #69ff47, #33eb91); }
.av3 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.av4 { background: linear-gradient(135deg, #22c55e, #10b981); }

.social-proof-text {
  font-size: 0.82rem;
  color: var(--text-2);
}

.social-proof-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   HERO DASHBOARD MOCKUP
============================================================ */
.hero-dashboard {
  animation: fadeInUp 0.9s 0.3s ease both;
}

.dashboard-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 60px rgba(108,99,255,0.15);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.window-dots { display: flex; gap: 6px; }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.window-title {
  font-size: 0.75rem;
  color: var(--text-2);
  margin: 0 auto;
  font-weight: 500;
}

.dashboard-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-change {
  font-size: 0.7rem;
  font-weight: 600;
}

.stat-change.positive { color: var(--success); }
.stat-change.negative { color: var(--danger); }

/* Bar chart */
.chart-section {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
}

.chart-title {
  font-size: 0.72rem;
  color: var(--text-2);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(108,99,255,0.5) 0%, rgba(108,99,255,0.2) 100%);
  transition: height 0.6s ease;
}

.bar.bar-active {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(108,99,255,0.4) 100%);
  box-shadow: 0 0 10px var(--accent-glow);
}

.bar-label {
  font-size: 0.6rem;
  color: var(--text-2);
  font-weight: 500;
}

/* Invoice list */
.invoice-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.invoice-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.invoice-list-header span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.list-link {
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 500;
  transition: color var(--transition);
}

.list-link:hover { color: var(--accent-hover); }

.invoice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(30,30,46,0.6);
}

.invoice-item:last-child { border-bottom: none; }

.invoice-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.invoice-id {
  font-size: 0.65rem;
  color: var(--text-2);
  font-family: 'Menlo', monospace;
}

.invoice-client {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.invoice-amount {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-heading);
  margin-left: auto;
  flex-shrink: 0;
}

.status-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.status-badge.paid    { background: rgba(34,197,94,0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.25); }
.status-badge.pending { background: rgba(245,158,11,0.15); color: var(--warning); border: 1px solid rgba(245,158,11,0.25); }
.status-badge.overdue { background: rgba(239,68,68,0.15);  color: var(--danger);  border: 1px solid rgba(239,68,68,0.25); }

/* ============================================================
   LOGOS SECTION
============================================================ */
.logos-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.logos-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  opacity: 0.6;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-2);
  opacity: 0.35;
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}

.logo-name:hover { opacity: 0.65; }

/* ============================================================
   SECTION SHARED STYLES
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-subtext {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}

/* ============================================================
   FEATURES
============================================================ */
.features-section {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.feature-card:hover {
  border-color: rgba(108,99,255,0.4);
  background: var(--bg-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(108,99,255,0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background var(--transition), box-shadow var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(108,99,255,0.2);
  box-shadow: 0 0 16px var(--accent-glow);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-2);
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.step:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-2px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-2);
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 16px;
  padding-top: 50px;
  flex-shrink: 0;
}

.connector-line {
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.connector-arrow {
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(108,99,255,0.25);
  transform: translateY(-2px);
}

.testimonial-featured {
  border-color: rgba(108,99,255,0.35);
  background: linear-gradient(135deg, rgba(108,99,255,0.06) 0%, var(--bg-2) 100%);
  box-shadow: 0 0 30px rgba(108,99,255,0.1), inset 0 0 30px rgba(108,99,255,0.03);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.85rem;
}

.testimonial-quote {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  quotes: "\201C""\201D""\2018""\2019";
}

.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after  { content: close-quote; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}

.av-a { background: linear-gradient(135deg, #00e676, #00c853); }
.av-b { background: linear-gradient(135deg, #69ff47, #33eb91); }
.av-c { background: linear-gradient(135deg, #f59e0b, #f97316); }

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-2);
}

/* ============================================================
   PRICING
============================================================ */
.pricing-section {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  background: rgba(105,255,71,0.12);
  color: var(--accent-2);
  border: 1px solid rgba(105,255,71,0.25);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  position: relative;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.toggle-switch.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.toggle-switch.active .toggle-thumb {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-featured {
  border-color: rgba(108,99,255,0.5);
  background: linear-gradient(160deg, rgba(108,99,255,0.08) 0%, var(--bg-3) 50%);
  box-shadow: 0 0 40px rgba(108,99,255,0.2), inset 0 0 40px rgba(108,99,255,0.04);
}

.pricing-featured:hover {
  box-shadow: 0 0 60px rgba(108,99,255,0.3), inset 0 0 40px rgba(108,99,255,0.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  transition: none;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 400;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.plan-features li.feature-muted {
  color: var(--text-2);
  opacity: 0.5;
}

.check-icon {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.cross-icon {
  color: var(--text-2);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  opacity: 0.5;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.84rem;
  color: var(--text-2);
  opacity: 0.7;
}

/* ============================================================
   FINAL CTA
============================================================ */
.cta-section {
  padding: 80px 0 120px;
}

.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0,230,118,0.6) 0%, rgba(105,255,71,0.3) 50%, rgba(0,230,118,0.2) 100%);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(108,99,255,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0f0f1a 0%, #0a0a0f 100%);
  border-radius: calc(var(--radius-xl) - 2px);
  padding: 80px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.cta-subtext {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item.open {
  border-color: rgba(0, 230, 118, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-2);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 16px 24px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.social-link:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: rgba(255,255,255,0.04);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-copy,
.footer-made {
  font-size: 0.8rem;
  color: var(--text-2);
  opacity: 0.55;
}

.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-2);
  opacity: 0.6;
  line-height: 1.6;
  max-width: 720px;
}

.window-sample-label {
  font-size: 0.65rem;
  opacity: 0.5;
  font-weight: 400;
  letter-spacing: 0;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  text-align: center;
}

.about-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.about-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 24px;
}

.about-hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
}

.about-section {
  padding: 72px 0;
}

.about-two-col {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .about-two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-col-label {
  padding-top: 6px;
}

.about-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-col-content p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 16px;
}

.about-col-content p:last-child {
  margin-bottom: 0;
}

.about-divider {
  height: 1px;
  background: var(--border);
  margin: 0 auto;
  max-width: calc(100% - 48px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

.about-value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.about-value-card:hover {
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateY(-2px);
}

[data-theme="light"] .about-value-card:hover {
  border-color: rgba(0, 168, 85, 0.3);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

[data-theme="light"] .about-value-icon {
  background: rgba(0, 168, 85, 0.08);
  border-color: rgba(0, 168, 85, 0.15);
}

.about-value-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}

.about-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================================
   POLICY PAGES
============================================================ */
.policy-hero {
  padding: 120px 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.policy-pdpa-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}

[data-theme="light"] .policy-pdpa-badge {
  background: rgba(0, 168, 85, 0.1);
  border-color: rgba(0, 168, 85, 0.3);
  color: var(--accent);
}

.policy-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.policy-subtitle {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 10px;
}

.policy-meta {
  font-size: 0.85rem;
  color: var(--text-2);
}

.policy-intro {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.policy-content {
  padding: 64px 0 80px;
}

.policy-container {
  max-width: 800px;
}

.policy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.policy-section:last-of-type {
  border-bottom: none;
}

.policy-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.policy-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}

.policy-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 12px;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.policy-section ul li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-2);
  padding: 4px 0 4px 20px;
  position: relative;
}

.policy-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.policy-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.policy-section a:hover {
  opacity: 0.8;
}

.policy-contact-block {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 16px 0;
}

.policy-contact-block p {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.policy-contact-block p:last-child {
  margin-bottom: 0;
}

.policy-note {
  background: var(--bg-3);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.88rem !important;
}

.policy-placeholder {
  color: var(--text-2);
  font-style: italic;
  opacity: 0.7;
}

.policy-plan-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 16px 0;
}

.policy-plan-card h3 {
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-plan-price {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 100px;
  padding: 2px 10px;
}

[data-theme="light"] .policy-plan-price {
  background: rgba(0, 168, 85, 0.08);
  border-color: rgba(0, 168, 85, 0.2);
  color: var(--accent);
}

.policy-important {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-2);
}

.policy-important strong {
  color: #ef4444;
}

.policy-footer-note {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.policy-footer-note p {
  font-size: 0.82rem;
  color: var(--text-2);
  opacity: 0.6;
  margin-bottom: 4px;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.features-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.features-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.features-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.features-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.features-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.features-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

.testimonials-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.25s; }

.pricing-grid .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.pricing-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.25s; }

.steps-row .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.steps-row .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.steps-row .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }

/* Hero entrance animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SELECTION & MISC
============================================================ */
::selection {
  background: rgba(108,99,255,0.35);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   RESPONSIVE — 1200px
============================================================ */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.05s; }
  .features-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.1s; }
  .features-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.15s; }
  .features-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.2s; }

  .footer-top {
    grid-template-columns: 220px 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    margin-right: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px 24px;
    display: block;
    width: 100%;
    font-size: 1rem;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-container {
    position: relative;
  }

  /* Hero */
  .hero {
    padding: 120px 0 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtext {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .hero-dashboard {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  /* Logos */
  .logos-row {
    gap: 28px;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  /* Features */
  .features-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-grid .animate-on-scroll { transition-delay: 0s !important; }

  /* How it works */
  .how-section {
    padding: 80px 0;
  }

  .steps-row {
    flex-direction: column;
  }

  .step-connector {
    padding: 0;
    justify-content: center;
    padding: 4px 0;
  }

  .connector-line { width: 1px; height: 20px; }
  .connector-arrow { transform: rotate(90deg); }

  /* Testimonials */
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .animate-on-scroll { transition-delay: 0s !important; }

  /* Pricing */
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-grid .animate-on-scroll { transition-delay: 0s !important; }

  /* CTA */
  .cta-inner {
    padding: 56px 28px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .logos-row {
    gap: 20px;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .pricing-toggle {
    gap: 8px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn-accent,
  .cta-actions .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   WHATSAPP WIDGET
============================================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget svg {
  display: block;
}
