/* ══════════════════════════════════════
   HOME.CSS — Aditya Horizon Landing Page
   ══════════════════════════════════════ */

:root {
  --banana-cream:    #fff05a;
  --golden-pollen:   #ffd25a;
  --light-caramel:   #f8b878;
  --vibrant-coral:   #ff785a;
  --watermelon:      #e84855;
  --bg:              #141414;
  --bg2:             #1a1919;
  --bg3:             #222121;
  --border:          rgba(255,240,90,0.07);
  --border2:         rgba(255,240,90,0.14);
  --text:            #f5f0e8;
  --text2:           #9a9080;
  --text3:           #5a5248;
  --accent:          #ffd25a;
  --accent2:         #ff785a;
  --danger:          #e84855;
  --success:         #4ade80;
  --grad:            linear-gradient(135deg, #fff05a 0%, #ffd25a 35%, #ff785a 70%, #e84855 100%);
  --grad-btn:        linear-gradient(135deg, #ffd25a 0%, #ff785a 100%);
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       18px;
  --radius-xl:       28px;
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:       0 24px 64px rgba(0,0,0,0.6);
  --shadow-accent:   0 8px 32px rgba(255,210,90,0.22);
}

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

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

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text2 {
  background: linear-gradient(135deg, #ff785a, #e84855);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ══ NAVBAR ══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-mark {
  font-size: 22px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; gap: 12px; margin-left: 16px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--grad-btn);
  color: #141414;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(255,120,90,0.25);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,120,90,0.35);
}
.btn-primary .material-icons-round { font-size: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: transparent;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--border3, rgba(255,240,90,0.3));
  background: rgba(255,240,90,0.05);
}
.btn-ghost .material-icons-round { font-size: 18px; }

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.btn-glow {
  box-shadow: 0 0 0 0 rgba(255,210,90,0);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(255,120,90,0.3); }
  50% { box-shadow: 0 4px 48px rgba(255,210,90,0.5), 0 4px 24px rgba(255,120,90,0.4); }
}

.nav-cta { padding: 9px 18px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn-primary {
  margin-top: 8px;
  justify-content: center;
  border-bottom: none;
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 60px;
  overflow: visible;
}

.hero-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orb-float 8s ease-in-out infinite;
}
.orb1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(255,210,90,0.3), transparent 70%);
  animation-delay: 0s;
}
.orb2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(255,120,90,0.25), transparent 70%);
  animation-delay: -3s;
}
.orb3 {
  width: 350px; height: 350px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(232,72,85,0.15), transparent 70%);
  animation-delay: -6s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 25px) scale(0.97); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,240,90,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,240,90,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,210,90,0.08);
  border: 1px solid rgba(255,210,90,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text3);
}
.proof-avatars {
  display: flex;
}
.proof-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #141414;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.proof-avatars .proof-av:first-child { margin-left: 0; }

/* ── Hero Preview Card ── */
.hero-preview {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.preview-card {
  width: 360px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255,210,90,0.08);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.preview-dots {
  display: flex;
  gap: 6px;
}
.preview-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.7;
}
.preview-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  flex: 1;
  text-align: center;
}
.preview-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 2px 8px;
  border-radius: 100px;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: badge-pulse 1.5s ease-in-out infinite;
}

.preview-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
}

.preview-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.user-msg {
  justify-content: flex-end;
}
.user-msg span {
  background: var(--grad-btn);
  color: #141414;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 16px 16px 4px 16px;
  max-width: 80%;
}
.ai-msg {
  justify-content: flex-start;
}
.ai-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,210,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.ai-response {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px 16px 16px 16px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  max-width: calc(100% - 40px);
}
.typing-word {
  display: inline;
  opacity: 0;
  animation: word-appear 0.3s forwards;
}
@keyframes word-appear {
  to { opacity: 1; }
}
.preview-cursor {
  width: 2px; height: 16px;
  background: var(--accent);
  animation: cursor-blink 1s ease-in-out infinite;
  margin-left: 40px;
  border-radius: 1px;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ══ STATS STRIP ══ */
.stats-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,240,90,0.02);
  padding: 28px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ══ SECTION HEADER ══ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
}

/* ══ FEATURES ══ */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.feature-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-large {
  grid-column: span 2;
}
.feature-right {
  /* pushes to column 2-3 on second row */
}

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-wrap .material-icons-round { font-size: 24px; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.feature-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* ══ HOW IT WORKS ══ */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(255,240,90,0.02), transparent);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.step {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 36px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 0.25s;
}
.step + .step { margin-top: 16px; }
.step:hover { border-color: var(--border2); }

.step-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step-content p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  bottom: -28px;
  left: 52px;
  color: var(--text3);
  z-index: 1;
  font-size: 20px;
}

/* ══ TESTIMONIALS ══ */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.featured-testimonial {
  border-color: rgba(255,210,90,0.2);
  background: linear-gradient(160deg, rgba(255,210,90,0.04), var(--bg2));
}

.quote-icon {
  font-size: 56px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.3;
  font-weight: 900;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #141414;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text3);
}

/* ══ ABOUT ══ */
.about {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.about-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-inner p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.about-badge {
  padding: 8px 16px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* ══ CTA SECTION ══ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}
.cta-inner {
  position: relative;
  text-align: center;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 32px;
  padding: 72px 40px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,90,0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-inner p {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cta-inner .btn-primary { position: relative; z-index: 1; }

/* ══ FOOTER ══ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.footer-links a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text3);
  margin-left: auto;
  text-align: right;
  line-height: 1.7;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    align-items: center;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-preview { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-large { grid-column: span 1; }

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

  .stats-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .stat-item { padding: 0 24px; }
  .stat-divider { display: none; }

  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { margin-left: 0; }
  .footer-copy { text-align: left; margin-left: 0; }
  .steps-container { padding: 0; }
  .step { padding: 24px; }
  .cta-inner { padding: 48px 24px; }
  .about-badges { gap: 8px; }
  .about-badge { font-size: 12px; padding: 6px 12px; }
}


/* ══════════════════════════════════════
   LIGHT MODE — data-theme="light"
   ══════════════════════════════════════ */
[data-theme="light"] {
  --bg:     #f8f6f2;
  --bg2:    #ffffff;
  --bg3:    #f0ede8;
  --border:  rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.12);
  --text:    #1a1612;
  --text2:   #5a5248;
  --text3:   #9a9080;
}

[data-theme="light"] body { background: var(--bg); color: var(--text); }

[data-theme="light"] .navbar.scrolled {
  background: rgba(248,246,242,0.88);
  border-color: var(--border2);
}
[data-theme="light"] .nav-links a { color: var(--text2); }
[data-theme="light"] .hero-title  { color: var(--text); }
[data-theme="light"] .hero-sub    { color: var(--text2); }

[data-theme="light"] .stats-strip { background: rgba(0,0,0,0.02); border-color: var(--border2); }

[data-theme="light"] .feature-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .step,
[data-theme="light"] .fact-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
[data-theme="light"] .feature-card:hover,
[data-theme="light"] .testimonial-card:hover,
[data-theme="light"] .step:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

[data-theme="light"] .featured-testimonial {
  background: linear-gradient(160deg, rgba(255,210,90,0.06), #fff);
}

[data-theme="light"] .cta-inner { background: #fff; border-color: rgba(0,0,0,0.08); }

[data-theme="light"] .about-badge {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .footer { border-color: var(--border2); }
[data-theme="light"] .footer-links a { color: var(--text3); }
[data-theme="light"] .footer-copy    { color: var(--text3); }

[data-theme="light"] .preview-card {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
[data-theme="light"] .preview-header { background: #f0ede8; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ai-response { background: #f0ede8; border-color: rgba(0,0,0,0.08); }

[data-theme="light"] .mobile-menu {
  background: rgba(248,246,242,0.97);
}
[data-theme="light"] .mobile-menu a { border-color: rgba(0,0,0,0.07); }

/* Theme toggle button */
.theme-btn-nav {
  background: none;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 16px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.theme-btn-nav:hover {
  border-color: rgba(255,240,90,0.3);
  background: rgba(255,240,90,0.05);
}

/* Nav logo img */
.nav-logo-img {
  width: auto;
  height: 28px;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
  display: block;
}

/* ══════════════════════════════════════
   FOOTER CREDIT — v4 addition
   ══════════════════════════════════════ */
.footer-credit {
  color: var(--text2);
  font-size: 12px;
  margin-top: 2px;
}
.footer-credit strong { color: var(--accent); font-weight: 700; }

[data-theme="light"] .footer-credit strong { color: #92650a; }
