/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  background: #faf9f6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-wrap { overflow-x: hidden; position: relative; width: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── AI Animations ────────────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(45,74,62,0.06); }
  50% { box-shadow: 0 4px 30px rgba(45,74,62,0.15), 0 0 40px rgba(45,74,62,0.05); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes grid-fade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
@keyframes typing-dots {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}
@keyframes slide-up-fade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes border-glow {
  0%, 100% { border-color: rgba(45,74,62,0.08); }
  50% { border-color: rgba(196,151,59,0.2); }
}

/* ── Icons ────────────────────────────────────────────────────── */
.inline-icon { width: 16px; height: 16px; display: inline-block; vertical-align: -2px; }
.who-icon i, .extra-icon i, .value-icon i, .info-icon i { width: 24px; height: 24px; color: #2D4A3E; }
.who-icon { display: block; margin-bottom: 16px; }
.who-icon i { width: 36px; height: 36px; }
.extra-icon { display: block; margin-bottom: 12px; }
.extra-icon i { width: 28px; height: 28px; }
.info-highlight .info-icon i { color: #fff; }

/* ── Colors ──────────────────────────────────────────────────── */
.gold {
  color: #C4973B;
  background: linear-gradient(135deg, #C4973B, #e0b85c, #C4973B);
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@supports not (-webkit-background-clip: text) {
  .gold { color: #C4973B; background: none; }
}

/* ── Typewriter ──────────────────────────────────────────────── */
.typewriter-cursor {
  display: inline-block;
  color: #C4973B;
  font-weight: 300;
  animation: blink 0.7s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 100px; font-size: 0.95rem;
  font-weight: 600; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, #2D4A3E, #3a6152); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, #1E3329, #2D4A3E); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(45,74,62,0.2); }
.btn-outline { border: 2px solid #2D4A3E; color: #2D4A3E; background: transparent; }
.btn-outline:hover { background: #2D4A3E; color: #fff; }
.btn-full { width: 100%; }

/* ── Nav ─────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,249,246,0.8); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo-img { width: 34px; height: 34px; object-fit: contain; margin-right: -5px; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #666; transition: color 0.2s; }
.nav-links a:hover { color: #2D4A3E; }
.nav-cta { font-size: 0.85rem; font-weight: 600; background: #2D4A3E; color: #fff; padding: 10px 24px; border-radius: 100px; transition: all 0.2s; }
.nav-cta:hover { background: #1E3329; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger svg { width: 24px; height: 24px; color: #2D4A3E; }
.nav-links.open { display: flex; }
.nav-cta-mobile { display: none; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px; background: none; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px; padding: 10px 16px; font-size: 0.8rem; font-weight: 600; color: #2D4A3E;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.lang-btn:hover { background: rgba(45,74,62,0.05); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0; background: #fff;
  border-radius: 12px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden; z-index: 200; min-width: 130px;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: block; width: 100%; padding: 10px 16px; border: none; background: none;
  text-align: left; font-size: 0.85rem; color: #555; cursor: pointer; font-family: inherit;
  transition: background 0.15s;
}
.lang-option:hover { background: rgba(45,74,62,0.05); }
.lang-option.active { color: #2D4A3E; font-weight: 600; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  max-width: 1200px; margin: 0 auto; padding: 140px 32px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
/* Gradient mesh background behind hero */
#hero::before {
  content: ''; position: absolute; top: -100px; right: 0; bottom: -100px; left: 0; 
  background:
    radial-gradient(ellipse 600px 400px at 15% 30%, rgba(45,74,62,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 60%, rgba(196,151,59,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 50% 80%, rgba(45,74,62,0.04) 0%, transparent 70%);
  z-index: -1; pointer-events: none;
  animation: gradient-shift 12s ease infinite;
  background-size: 200% 200%;
}
/* Dot grid overlay */
#hero::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(45,74,62,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: grid-fade 8s ease infinite;
}
/* Mouse-following orb */
.mouse-orb {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,151,59,0.07) 0%, rgba(45,74,62,0.04) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
  left: 0; top: 0; opacity: 0;
  will-change: transform;
}
.mouse-orb.visible { opacity: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(45,74,62,0.1), rgba(196,151,59,0.08));
  color: #2D4A3E; padding: 8px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(45,74,62,0.1);
}
.hero-sub { font-size: 1.15rem; color: #666; line-height: 1.7; margin: 20px 0 32px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: #2D4A3E;
  transition: all 0.3s;
}
.stat-label { font-size: 0.8rem; color: #999; }
.stat { display: flex; flex-direction: column; }
.stat:hover .stat-num { transform: scale(1.1); color: #C4973B; }
.hero-visual { display: flex; justify-content: center; }

/* Hero AI dashboard cards */
.hero-dashboard { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 400px; }
.dash-card {
  background: #fff; border-radius: 20px; padding: 20px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  animation: glow-pulse 4s ease infinite, border-glow 6s ease infinite;
  opacity: 0;
}
.dash-card.visible { animation: scale-in 0.5s ease forwards, glow-pulse 4s ease 0.5s infinite, border-glow 6s ease infinite; }
.dash-card:nth-child(1) { animation-delay: 0s; }
.dash-card:nth-child(2) { animation-delay: 0.15s; }
.dash-card:nth-child(3) { animation-delay: 0.3s; }
.hero-dashboard { animation: float 6s ease-in-out infinite; }
/* AI thinking dots */
.dash-ai-thinking {
  display: inline-flex; gap: 3px; margin-left: 6px; vertical-align: middle;
}
.dash-ai-thinking span {
  width: 4px; height: 4px; border-radius: 50%; background: #2D4A3E;
  animation: typing-dots 1.4s ease infinite;
}
.dash-ai-thinking span:nth-child(2) { animation-delay: 0.2s; }
.dash-ai-thinking span:nth-child(3) { animation-delay: 0.4s; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-ai-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.dash-ai-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-ai-label { font-size: 0.75rem; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.03em; }
.dash-ai-insight { font-size: 0.88rem; color: #444; line-height: 1.55; margin-bottom: 12px; }
.dash-highlight-red { color: #ef4444; font-weight: 700; }
.dash-ai-actions { display: flex; gap: 8px; }
.dash-action-btn {
  padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  border: 1px solid rgba(0,0,0,0.1); background: #fff; color: #555; cursor: pointer;
  font-family: inherit; transition: all 0.15s;
}
.dash-action-btn:hover { background: #f5f5f5; }
.dash-action-primary { background: #2D4A3E; color: #fff; border-color: #2D4A3E; }
.dash-action-primary:hover { background: #1E3329; }
.dash-ai-compact { padding: 16px 18px; }
.dash-ai-compact .dash-ai-header { margin-bottom: 8px; }
.dash-ai-stat { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: #1a1a1a; line-height: 1.1; margin-bottom: 6px; }
.dash-muted { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 400; color: #999; }
.dash-ai-bar { width: 100%; height: 4px; background: #f0f0f0; border-radius: 2px; margin-bottom: 6px; overflow: hidden; }
.dash-ai-bar-fill { height: 100%; border-radius: 2px; }
.dash-ai-micro { font-size: 0.7rem; color: #999; line-height: 1.3; }
.dash-vendor-row { margin-bottom: 8px; }
.dash-vendor { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.dash-vendor-name { font-size: 0.88rem; font-weight: 600; color: #1a1a1a; }
.dash-vendor-score { font-size: 0.75rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.dash-score-bad { background: rgba(239,68,68,0.1); color: #ef4444; }
.dash-ai-suggestion {
  font-size: 0.8rem; color: #2D4A3E; font-weight: 500; line-height: 1.4;
  background: linear-gradient(135deg, rgba(45,74,62,0.06), rgba(196,151,59,0.04));
  padding: 8px 12px; border-radius: 10px;
  border: 1px solid rgba(45,74,62,0.08);
}
.phone-mockup {
  width: 300px; background: #1a1a1a; border-radius: 44px;
  padding: 6px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.1), 0 0 60px rgba(45,74,62,0.1);
  position: relative; overflow: hidden;
}
.phone-screen { width: 100%; display: block; border-radius: 38px; }

/* ── Sections ────────────────────────────────────────────────── */
section { padding: 100px 32px; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(45,74,62,0.08), rgba(196,151,59,0.12), rgba(45,74,62,0.08));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  color: #2D4A3E;
  padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid rgba(45,74,62,0.08);
}
.section-header p { color: #888; font-size: 1.05rem; margin-top: 12px; line-height: 1.6; }

/* ── Who It's For ─────────────────────────────────────────────── */
#who { max-width: 1200px; margin: 0 auto; }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.who-card {
  background: #fff; border-radius: 24px; padding: 36px;
  border: 1px solid rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
}
.who-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(45,74,62,0.08); }
.who-icon { display: block; margin-bottom: 16px; }
.who-card h3 { margin-bottom: 8px; }
.who-card > p { color: #666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.who-features { list-style: none; }
.who-features li {
  padding: 6px 0; font-size: 0.85rem; color: #555;
}
.who-features li::before { content: '→ '; color: #C4973B; font-weight: 700; }

/* ── Features ────────────────────────────────────────────────── */
#features { max-width: 1200px; margin: 0 auto; }

/* Showcase: tabs left, phone right */
.features-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.features-tabs { display: flex; flex-direction: column; gap: 4px; }
.feature-tab {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; border-radius: 20px; border: 1px solid transparent;
  background: transparent; cursor: pointer; text-align: left;
  transition: all 0.25s; width: 100%; font-family: inherit;
}
.feature-tab:hover { background: rgba(45,74,62,0.03); }
.feature-tab.active {
  background: #fff; border-color: rgba(45,74,62,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05), 0 0 0 1px rgba(45,74,62,0.08);
}
.feature-tab-icon {
  width: 40px; height: 40px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(45,74,62,0.06); transition: all 0.25s;
}
.feature-tab.active .feature-tab-icon { background: #2D4A3E; }
.feature-tab-icon i, .feature-tab-icon svg { width: 20px; height: 20px; color: #2D4A3E; transition: color 0.25s; }
.feature-tab.active .feature-tab-icon i,
.feature-tab.active .feature-tab-icon svg { color: #fff; }
.feature-tab-content { flex: 1; min-width: 0; }
.feature-tab-badge {
  display: inline-block;
  background: linear-gradient(90deg, #2D4A3E, #C4973B, #2D4A3E);
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  color: #fff;
  padding: 2px 10px; border-radius: 100px; font-size: 0.65rem;
  font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em;
}
.feature-tab-content h3 { font-size: 1.15rem; margin-bottom: 4px; color: #1a1a1a; }
.feature-tab-content p {
  font-size: 0.82rem; color: #999; line-height: 1.5;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
  margin-top: 0;
}
.feature-tab.active .feature-tab-content p {
  max-height: 120px; opacity: 1; margin-top: 6px;
}

/* Phone sticky on the right */
.features-phone-wrap { position: relative; }
.features-phone-sticky {
  position: sticky; top: 160px;
  display: flex; justify-content: center; align-items: flex-start;
}
.features-phone-sticky .phone-mockup { width: 300px; }
.features-phone-sticky .phone-screen {
  transition: opacity 0.3s ease;
}
.feature-mobile-desc { display: none; text-align: center; padding: 0 16px; }
.feature-mobile-desc h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature-mobile-desc p { color: #888; font-size: 0.9rem; line-height: 1.6; }

/* Extra features row (unchanged layout) */
.features-extra {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px;
}
.extra-item {
  background: #fff; border-radius: 20px; padding: 28px;
  border: 1px solid rgba(0,0,0,0.06); text-align: center;
}
.extra-icon { display: block; margin-bottom: 12px; }
.extra-item h4 { margin-bottom: 6px; }
.extra-item p { color: #888; font-size: 0.85rem; line-height: 1.5; }

/* ── Testimonials ─────────────────────────────────────────────── */
#testimonials { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 24px; padding: 36px;
  border: 1px solid rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.testimonial-stars { color: #C4973B; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 1rem; color: #444; line-height: 1.7; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar-img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: #1a1a1a; }
.testimonial-role { font-size: 0.8rem; color: #999; }
.testimonial-link {
  display: inline-block; font-size: 0.8rem; color: #2D4A3E; font-weight: 600;
  border-bottom: 1px solid rgba(45,74,62,0.2); transition: border-color 0.2s;
}
.testimonial-link:hover { border-color: #2D4A3E; }

/* ── Pricing ─────────────────────────────────────────────────── */
#pricing { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: #fff; border-radius: 24px; padding: 36px;
  border: 1px solid rgba(0,0,0,0.06); position: relative;
}
.pricing-featured {
  border: 2px solid transparent; transform: scale(1.03);
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #2D4A3E, #C4973B) border-box;
  box-shadow: 0 20px 60px rgba(45,74,62,0.12);
}
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #C4973B; color: #fff; padding: 6px 20px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { margin-bottom: 4px; }
.pricing-desc { color: #888; font-size: 0.85rem; }
.pricing-price { margin-bottom: 28px; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: #2D4A3E; }
.price-period { color: #999; font-size: 0.9rem; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0; font-size: 0.9rem; color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-features li::before { content: '✓ '; color: #2D4A3E; font-weight: 700; }

/* ── About ───────────────────────────────────────────────────── */
#about { max-width: 1200px; margin: 0 auto; }
.about-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: #666; font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value h4 { margin-bottom: 2px; }
.value p { color: #888; font-size: 0.85rem; }
.about-visual { display: flex; justify-content: center; align-items: center; }
.about-logo { width: 200px; opacity: 0.2; }

/* ── Contact ─────────────────────────────────────────────────── */
#contact { max-width: 1200px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
.contact-form {
  background: #fff; border-radius: 24px; padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #555; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #e0e0e0; border-radius: 12px;
  font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; background: #faf9f6;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #2D4A3E;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; padding-top: 20px; }
.info-card {
  background: #fff; border-radius: 20px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}
.info-icon { display: block; margin-bottom: 8px; }
.info-card h4 { margin-bottom: 4px; }
.info-card p { color: #888; font-size: 0.9rem; }
.info-highlight { background: #2D4A3E; color: #fff; }
.info-highlight h4 { color: #fff; }
.info-highlight p { color: rgba(255,255,255,0.7); }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: #2D4A3E; color: #fff; padding: 60px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 0; margin-bottom: 8px; }
.footer-logo { width: 32px; height: 32px; object-fit: contain; margin-right: -5px; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 6px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: color 0.2s; white-space: nowrap; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-dashboard { max-width: 100%; }
  .features-showcase { grid-template-columns: 1fr; gap: 20px; }
  .features-phone-wrap { order: 1; }
  .feature-mobile-desc { display: block; order: 2; }
  .features-tabs {
    order: 3;
    flex-direction: row; overflow-x: auto; overflow-y: hidden; gap: 8px;
    padding-bottom: 8px; -webkit-overflow-scrolling: touch;
  }
  .features-phone-sticky { position: static; justify-content: center; }
  .features-phone-sticky .phone-mockup { width: 220px; }
  .feature-tab {
    flex-direction: column; min-width: 140px; max-width: 160px;
    padding: 12px 16px; flex-shrink: 0; text-align: center; align-items: center;
  }
  .feature-tab-icon { margin-bottom: 6px; }
  .feature-tab-content h3 { font-size: 0.95rem; }
  /* Hide description inside pills — show it above in a separate area */
  .feature-tab-content p { display: none; }
  .feature-tab-badge { display: none; }
  /* Mobile description area */
  .feature-mobile-desc { display: block; }
  .who-grid { grid-template-columns: 1fr; }
  .features-extra { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .about-content { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-inner { padding: 12px 16px; justify-content: flex-start; }
  .nav-logo { flex: 1; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(250,249,246,0.95); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); flex-direction: column; padding: 16px 32px 24px; gap: 0; border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 1rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-right { gap: 8px; }
  .lang-btn { padding: 6px 12px; }
  .nav-hamburger { display: flex; }
  .nav-cta-desktop { display: none !important; }
}
@media (max-width: 600px) {
  .features-extra { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; justify-content: center; padding: 0 16px; }
  section { padding: 60px 20px; }
  .footer-links { gap: 16px; }
  .footer-top { flex-direction: column; gap: 24px; }
}
