/* ============================================
   Localmee — Minimal Landing Page
   Ultra-clean monochrome design
   Inspired by Apple, Linear, Vercel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========== TOKENS ========== */
:root {
  --dark: #09090b;
  --dark-2: #0f0f12;
  --dark-3: #151519;
  --dark-4: #1a1a1f;
  --dark-5: #222228;

  --gray-900: #18181b;
  --gray-800: #27272a;
  --gray-700: #3f3f46;
  --gray-600: #52525b;
  --gray-500: #71717a;
  --gray-400: #a1a1aa;
  --gray-300: #d4d4d8;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --gray-50: #fafafa;
  --white: #ffffff;

  --max-width: 1120px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);

  --page-bg: #ffffff;
  --page-bg-alt: #fafafa;
  --page-bg-subtle: #f8f8fa;
  --surface: #ffffff;

  --text-primary: #09090b;
  --text-heading: #09090b;
  --text-body: #52525b;
  --text-muted: #71717a;
  --text-faint: #a1a1aa;

  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.04);
  --border-hover: rgba(0, 0, 0, 0.14);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* Keep brand tokens for legal pages that may reference them */
  --brand: #09090b;
  --brand-dark: #09090b;
  --brand-light: #27272a;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--dark); color: var(--white); }
button { font-family: inherit; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--t), border-bottom-color var(--t);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 18px; color: var(--text-primary);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.03em;
}
.logo-bold { font-weight: 700; }
.logo-text { font-weight: 400; }
.nav-logo img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--dark) !important; color: var(--white) !important;
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 13px !important; font-weight: 600 !important;
  transition: all var(--t-fast) !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text-primary); margin: 4px 0;
  transition: all var(--t-fast);
}

/* ========== HERO — Centered, Typography-focused ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 100px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--page-bg-subtle) 100%);
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Chips — Key differentiators (4+5 layout) */
.hero-chips {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-chips-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  padding: 7px 13px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.hero-chip:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.hero-chip svg {
  flex-shrink: 0;
  stroke: var(--gray-500);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

/* legacy hero-trust removed — replaced by hero-chips */

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  transition: all var(--t); border: none; cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-primary:hover {
  background: var(--gray-800);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--text-body);
  padding: 14px 28px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border); cursor: pointer;
  transition: all var(--t);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--gray-50);
}

/* ========== TRUST BAR ========== */
.trust-bar {
  position: relative;
  z-index: 2;
  padding: 48px 32px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--page-bg);
}
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.trust-item .trust-icon {
  width: 36px; height: 36px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.trust-item:hover .trust-icon {
  background: var(--gray-100);
  border-color: var(--border-hover);
}
.trust-item svg {
  width: 18px; height: 18px; stroke: var(--gray-600); fill: none; stroke-width: 1.5;
}

/* ========== SECTIONS ========== */
.section { padding: 120px 32px; position: relative; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: var(--text-heading);
  letter-spacing: -0.04em; line-height: 1.08;
  margin-bottom: 12px;
}
.section-desc {
  color: var(--text-muted); font-size: 17px; line-height: 1.7;
}
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { max-width: 480px; margin: 0 auto; }

/* ========== FEATURES SECTION ========== */
.features-section {
  background: var(--page-bg-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  transition: box-shadow var(--t), background var(--t);
}
.feature-card:hover {
  background: var(--gray-50);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.fc-icon {
  width: 44px; height: 44px; margin-bottom: 20px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.feature-card:hover .fc-icon {
  background: var(--gray-200);
  border-color: var(--border-hover);
}
.fc-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gray-700); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature-card h3 {
  font-size: 16px; font-weight: 700; color: var(--text-heading);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.feature-card p {
  color: var(--text-muted); font-size: 14px; line-height: 1.6;
}

/* ========== SHOWCASE CAROUSEL ========== */
.showcase-section {
  background: var(--page-bg);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 48px;
}

/* Liquid glass fade on edges */
.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 48px;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 30%,
    rgba(255, 255, 255, 0) 100%);
}
.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 30%,
    rgba(255, 255, 255, 0) 100%);
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 calc(50% - 440px);
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 400px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
}
.carousel-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.cc-text {
  padding: 32px 28px 24px;
  text-align: center;
}
.cc-icon {
  width: 44px; height: 44px; margin: 0 auto 16px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.cc-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gray-700); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.cc-text h3 {
  font-size: 18px; font-weight: 700; color: var(--text-heading);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.cc-text p {
  color: var(--text-muted); font-size: 14px; line-height: 1.6;
}

.cc-image {
  background: var(--page-bg-subtle);
  border-top: 1px solid var(--border-light);
  padding: 20px 20px 0;
}
.cc-image img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  display: block;
}

.placeholder-screen {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: -0.01em;
}

/* Carousel navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  color: var(--text-body);
}
.carousel-btn:hover {
  background: var(--gray-50);
  border-color: var(--border-hover);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.carousel-dots {
  display: flex; gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  padding: 0;
}
.carousel-dot.active {
  background: var(--dark);
  width: 24px;
  border-radius: 4px;
}

/* ========== PRIVACY SECTION ========== */
.privacy-section {
  background: var(--page-bg-subtle);
}

.privacy-layout {
  max-width: 600px;
}
.privacy-layout .section-desc { margin-bottom: 36px; }

.check-list { list-style: none; }
.check-list li {
  padding: 12px 0;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 500; color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.check-list li:last-child { border-bottom: none; }
.check-list li svg {
  width: 18px; height: 18px; stroke: var(--gray-600); flex-shrink: 0;
  fill: none; stroke-width: 2; stroke-linecap: round;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  background: var(--page-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--t);
}
.price-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* Popular card — slightly elevated, darker border */
.price-card.popular {
  border-color: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: scale(1.04);
}
.price-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: var(--white);
  font-size: 10px; font-weight: 800;
  padding: 4px 16px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}

.price-card h3 {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em;
}
.price-amount {
  font-size: 42px; font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.04em; line-height: 1;
}
.price-amount span {
  font-size: 16px; font-weight: 500; color: var(--text-muted);
}
.price-note {
  font-size: 13px; color: var(--text-muted); margin: 6px 0 24px;
}

.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li {
  padding: 7px 0; font-size: 14px; color: var(--text-body);
  display: flex; align-items: center; gap: 10px;
}
.price-features li svg {
  width: 15px; height: 15px; stroke: var(--gray-600); flex-shrink: 0;
  fill: none; stroke-width: 2.5; stroke-linecap: round;
}

.price-btn {
  display: block; width: 100%;
  padding: 12px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 700; text-align: center;
  background: var(--gray-100); color: var(--text-heading);
  border: 1px solid var(--border);
  transition: all var(--t); cursor: pointer;
}
.price-btn:hover {
  background: var(--gray-200);
  border-color: var(--border-hover);
}
.price-card.popular .price-btn {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}
.price-card.popular .price-btn:hover {
  background: var(--gray-800);
}

.pricing-note {
  text-align: center; margin-top: 36px;
  font-size: 14px; color: var(--text-muted);
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  background: var(--page-bg-subtle);
}
.cta-inner {
  max-width: 560px; margin: 0 auto;
}
.cta-inner .section-title { margin-bottom: 14px; }
.cta-inner .section-desc { margin-bottom: 40px; }
.cta-badges {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 36px; flex-wrap: wrap;
}
.cta-badges span {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-badges svg { width: 14px; height: 14px; stroke: var(--gray-500); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ========== FOOTER (Dark) ========== */
.footer {
  background: var(--dark); color: rgba(255, 255, 255, 0.4);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo {
  color: var(--white); font-size: 18px; font-weight: 400;
  margin-bottom: 12px; letter-spacing: -0.03em;
}
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; color: var(--gray-500); }
.footer-col h4 {
  color: var(--gray-600); font-size: 11px; font-weight: 700;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em;
}
.footer-col a {
  display: block; color: var(--gray-500);
  font-size: 13px; padding: 4px 0; transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width); margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; justify-content: space-between; font-size: 12px;
  color: var(--gray-600);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 120px 32px 80px;
  background: var(--white);
  color: var(--dark);
}
.legal-inner { max-width: 660px; margin: 0 auto; }
.legal-inner h1 {
  font-size: clamp(26px, 4vw, 36px); font-weight: 800;
  color: var(--dark); letter-spacing: -0.03em; margin-bottom: 6px;
}
.legal-date { color: var(--gray-400); font-size: 13px; margin-bottom: 36px; }
.legal-inner h2 {
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin-top: 36px; margin-bottom: 10px;
}
.legal-inner p { color: var(--gray-700); font-size: 14px; line-height: 1.75; margin-bottom: 10px; }
.legal-inner ul { margin: 6px 0 14px 18px; color: var(--gray-700); font-size: 14px; line-height: 1.8; }
.legal-inner a { color: var(--gray-900); text-decoration: underline; text-underline-offset: 3px; }

.highlight-box {
  background: var(--gray-50); border-left: 3px solid var(--dark);
  padding: 18px 22px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 20px 0;
}
.highlight-box p { color: var(--dark) !important; margin-bottom: 0 !important; }

/* Support page */
/* ========== CONTACT FORM ========== */
.contact-form-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-100);
}
.contact-form-section h2 {
  font-size: 20px; font-weight: 700; color: var(--dark);
  margin-bottom: 6px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gray-400);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.support-card { background: var(--gray-50); border-radius: 14px; padding: 28px; }
.support-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.support-card p { color: var(--gray-500); font-size: 13px; line-height: 1.6; }
.support-card a { color: var(--gray-900); font-weight: 600; }
.faq-section { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--gray-100); padding: 18px 0; }
.faq-item h3 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 5px; margin-top: 0; }
.faq-item p { color: var(--gray-500); font-size: 13px; margin-bottom: 0; }
.still-need-help {
  margin-top: 48px; text-align: center;
  padding: 40px; background: var(--gray-50); border-radius: 16px;
}
.still-need-help h3 { margin-bottom: 6px; font-size: 17px; font-weight: 700; color: var(--dark); }
.still-need-help p { color: var(--gray-500); font-size: 14px; margin-bottom: 16px; }

/* ========== ACCESSIBILITY: Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 32px;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding: 120px 20px 80px; min-height: auto; }
  .hero h1 { font-size: clamp(34px, 8vw, 52px); }
  .hero-desc { font-size: 16px; }

  /* Trust */
  .trust-bar-inner { gap: 24px; }

  /* Sections */
  .section { padding: 80px 20px; }
  .section-header { margin-bottom: 48px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 32px 24px; }

  /* Carousel */
  .carousel-track { padding: 0 20px; gap: 16px; }
  .carousel-card { flex: 0 0 320px; }
  .carousel-fade { width: 40px; }

  /* Privacy */
  .privacy-layout { max-width: 100%; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px; margin: 0 auto;
  }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Legal */
  .support-grid { grid-template-columns: 1fr; }
  .legal-page { padding: 110px 20px 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-chips { gap: 8px; }
  .hero-chip { font-size: 12px; padding: 6px 12px; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .carousel-card { flex: 0 0 280px; }
  .carousel-track { padding: 0 16px; gap: 12px; }
  .carousel-fade { width: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-badges { flex-direction: column; align-items: center; }
}
