/* ================================================
   MEETFLOWS — STYLESHEET
   Light theme · Dark text · #51becc accent
   Headings: ClashGrotesk · Body: Inter Variable
   ================================================

   1.  Reset & Base
   2.  Typography
   3.  Layout Utilities
   4.  Header & Navigation
   5.  Hero (dark gradient mesh)
   6.  Trust Bar
   7.  Problem Section
   8.  Services Section
   9.  How It Works
   10. Pricing Section
   11. Testimonials
   12. FAQ
   13. Final CTA
   14. Footer
   15. Responsive
   ================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-grotesk@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ------------------------------------------------
   1. Reset & Base
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Dark surfaces */
  --dark:          #E8E8E5;   /* deepest — footer, final-cta */
  --dark-mid:      #F0F0ED;   /* slightly lighter dark */
  --surface:       #FAFAF8;   /* main body background */
  --surface-alt:   #F2F2EF;   /* alternate section background */
  --light:         #FFFFFF;   /* card / component surfaces */

  /* Text */
  --text:          #1A1A18;   /* headings, primary labels */
  --text-muted:    #4F4F4C;   /* body paragraphs */
  --text-faint:    #8A8A86;   /* timestamps, captions */

  /* Legacy aliases — kept for compatibility */
  --white:         #FFFFFF;
  --off-white:     #F2F2EF;   /* same as surface-alt */

  /* Borders */
  --border:        rgba(0,0,0,0.1);
  --border-light:  rgba(0,0,0,0.05);

  /* Accent — lime */
  --accent:        #51becc;
  --accent-hover:  #3daabb;
  --accent-light:  rgba(81,190,204,0.12);
  --accent-mid:    rgba(81,190,204,0.22);

  /* Semantic */
  --green:         #10B981;
  --green-light:   rgba(16,185,129,0.15);

  /* Eyebrow badge tint */
  --clay:          #1b7a8a;
  --clay-light:    rgba(81,190,204,0.1);

  /* Fonts */
  --font-heading:  'ClashGrotesk', 'Clash Grotesk', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Radius */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  /* Shadows — dark-theme */
  --shadow-xs:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.11), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.14);

  --max-width:   1140px;
  --header-h:    80px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Lucide icons */
[data-lucide], [data-lucide] svg { display: block; }

/* ------------------------------------------------
   2. Typography
   ------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem);   font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem);   font-weight: 500; letter-spacing: -0.02em; }
h4 { font-size: 1rem;                          font-weight: 500; letter-spacing: -0.01em; }

p { color: var(--text-muted); line-height: 1.75; }

/* Eyebrow — clay pill badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clay-light);
  color: var(--clay);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ------------------------------------------------
   3. Layout Utilities
   ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 96px 0; }
.section--sm   { padding: 64px 0; }
.section--off  { background: var(--surface-alt); }
.section--dark { background: var(--dark); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.section-header      { margin-bottom: 56px; }
.section-header h2   { margin-bottom: 0.65rem; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* Buttons — pill shaped */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s,
              box-shadow 0.18s, transform 0.13s;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #1A1A1A;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 18px rgba(81,190,204,0.35);
}

.btn--dark {
  background: var(--light);
  color: var(--text);
  border-color: var(--border);
}
.btn--dark:hover {
  background: rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,0.2);
}
.btn--outline:hover {
  border-color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.04);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--white {
  background: var(--white);
  color: #1A1A1A;
  border-color: var(--white);
}
.btn--white:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}

/* ------------------------------------------------
   4. Header & Navigation — Floating pill
   ------------------------------------------------ */
.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: calc(100% - 48px);
  height: auto;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
}

/* Transparent header sits over dark hero — force white text */
.header:not(.scrolled) .logo__wordmark       { color: var(--white); }
.header:not(.scrolled) .logo__tagline        { color: rgba(255,255,255,0.55); }
.header:not(.scrolled) .header__nav a        { color: rgba(255,255,255,0.8); }
.header:not(.scrolled) .header__nav a:hover  { color: var(--white); }
.header:not(.scrolled) .hamburger__line      { background: var(--white); }
.header:not(.scrolled) .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.header:not(.scrolled) .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.header__logo { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; }
.header__logo-text { display: flex; flex-direction: column; }

.logo__wordmark {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
}
.logo__wordmark span { color: var(--accent); }

.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 1px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.header__nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.header__nav a:hover { color: var(--text); }

.header__actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
  transform-origin: center;
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 88px 24px 28px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mobile-nav.is-open { display: block; opacity: 1; transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 13px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
}
.mobile-nav a:last-child  { border-bottom: none; }
.mobile-nav a:hover       { color: var(--accent); }
.mobile-nav .btn          { width: 100%; margin-top: 16px; }

/* ------------------------------------------------
   5. Hero — dark gradient mesh
   ------------------------------------------------ */
.hero {
  position: relative;
  background: var(--surface);
  background-image: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  padding: 120px 0 88px;
  overflow: hidden;
  isolation: isolate;
}

/* Dark overlay over background image + subtle accent tint */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.72) 0%, rgba(13,13,13,0.82) 100%),
    radial-gradient(ellipse 60% 70% at 85% 5%,
      rgba(81,190,204,0.1) 0%,
      transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Radial vignette to blend edges into the dark surface */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 80% at 50% 50%,
    transparent 40%,
    rgba(26,26,26,0.55) 100%
  );
  pointer-events: none;
  z-index: -1;
}

/* Warm accent blob */
.hero__blob {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(81,190,204,0.08) 0%,
    rgba(81,190,204,0.03) 50%,
    transparent 70%);
  bottom: -120px;
  right: 10%;
  pointer-events: none;
  z-index: -1;
  filter: blur(4px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 8px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clay);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Hero badge — white on dark background */
.hero .hero__badge {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

/* Outline button inside dark hero */
.hero .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

/* Eyebrow inside hero needs to be legible on dark background */
.hero .eyebrow {
  color: var(--accent);
  background: var(--accent-light);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stars     { display: flex; gap: 3px; color: #F59E0B; font-size: 0.9rem; }
.hero__proof-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.hero__proof-text strong { color: var(--white); }

/* Notification cards */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.notif-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 360px;
  opacity: 0;
  transform: translateX(20px);
  animation: card-in 0.5s ease forwards;
}
.notif-card:nth-child(1) { animation-delay: 0.1s; }
.notif-card:nth-child(2) { animation-delay: 0.3s; margin-left: 24px; }
.notif-card:nth-child(3) { animation-delay: 0.5s; margin-left: 48px; }

@keyframes card-in {
  to { opacity: 1; transform: translateX(0); }
}

.notif-card__icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-card__icon--blue  { background: rgba(168,204,0,0.15); color: #7aad00; }
.notif-card__icon--gold  { background: rgba(168,204,0,0.15); color: #7aad00; }
.notif-card__icon--green { background: var(--green-light); color: var(--green); }

.notif-card__body { flex: 1; min-width: 0; }
.notif-card__title {
  font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.notif-card__sub {
  font-family: var(--font-body);
  font-size: 0.76rem; color: var(--text-faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.notif-card__time {
  font-family: var(--font-body);
  font-size: 0.72rem; color: var(--text-faint); font-weight: 600; flex-shrink: 0;
}

/* ------------------------------------------------
   6. Trades Ticker
   ------------------------------------------------ */
.trades-section {
  background: var(--surface-alt);
  padding: 72px 0 64px;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trades-section__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.trades-section__header .eyebrow { margin-bottom: 0.75rem; }
.trades-section__header h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.trades-section__header h2 em { font-style: normal; color: var(--accent); }

.trades-ticker {
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trades-ticker__track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trade-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.trade-pill svg { color: var(--clay); flex-shrink: 0; }
.trade-pill:hover { border-color: var(--accent); color: var(--text); }

/* ------------------------------------------------
   7. Trust Bar (kept for layout reference)
   ------------------------------------------------ */
.trust-bar {
  background: var(--surface-alt);
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.84rem; font-weight: 600; color: var(--text-muted);
}
.trust-bar__item svg { color: var(--clay); flex-shrink: 0; }
.trust-bar__divider { width: 1px; height: 18px; background: var(--border); }

/* ------------------------------------------------
   7. Problem Section
   ------------------------------------------------ */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 1.5rem;
}

.problem-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.problem-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.problem-card__icon {
  width: 40px; height: 40px;
  background: rgba(220,60,60,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: #e05555;
}

.problem-card__title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 500;
  color: var(--text); margin-bottom: 8px;
}
.problem-card__body {
  font-family: var(--font-body);
  font-size: 0.88rem; line-height: 1.65; color: var(--text-muted);
}

/* ------------------------------------------------
   8. Services Section
   ------------------------------------------------ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon-wrap {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 500;
  color: var(--text); margin-bottom: 0.5rem;
}
.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1rem;
}
.service-card__benefit {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  color: var(--accent); background: var(--accent-light);
  padding: 5px 12px; border-radius: var(--radius-pill);
}

.service-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  color: var(--clay);
  transition: gap 0.15s;
}
.service-card__link:hover { gap: 8px; }

/* ------------------------------------------------
   9. How It Works
   ------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 2rem;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: repeating-linear-gradient(
    to right, rgba(0,0,0,0.15) 0, rgba(0,0,0,0.15) 6px,
    transparent 6px, transparent 12px
  );
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 32px; }
.step__number {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; color: var(--clay);
  position: relative; z-index: 2;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.step:hover .step__number {
  background: var(--accent); border-color: var(--accent); color: #1A1A1A;
}
.step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 500;
  color: var(--text); margin-bottom: 8px;
}
.step__body {
  font-family: var(--font-body);
  font-size: 0.88rem; line-height: 1.65; color: var(--text-muted);
}

/* ------------------------------------------------
   10. Pricing Section
   ------------------------------------------------ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn { margin-top: auto; }
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card--featured {
  position: relative;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light), var(--shadow-md);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 4px var(--accent-light), var(--shadow-lg);
}

.pricing-badge {
  position: absolute; top: 20px; right: 24px;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent);
  color: #1A1A1A;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}
.pricing-card__desc {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; min-height: 38px;
}
.pricing-card__price {
  display: flex; align-items: flex-end; gap: 4px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-dollar {
  font-family: var(--font-body);
  font-size: 1.5rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px;
}
.price-amount {
  font-family: var(--font-body);
  font-size: 3.25rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.04em; line-height: 1;
}
.price-period {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; color: var(--text-faint); margin-bottom: 6px;
}
.pricing-card__features {
  display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px;
}
.pricing-card__feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.4;
}
.feat-check {
  flex-shrink: 0; width: 18px; height: 18px;
  background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; color: var(--green);
}
.feat-check svg { width: 10px; height: 10px; stroke-width: 3; }

.pricing-note {
  font-family: var(--font-body);
  text-align: center; margin-top: 20px;
  font-size: 0.82rem; color: var(--text-faint); line-height: 1.6;
}

.pricing-upsell {
  margin-top: 32px;
  max-width: 820px; margin-left: auto; margin-right: auto;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.pricing-upsell__left { display: flex; align-items: flex-start; gap: 14px; }
.pricing-upsell__icon {
  width: 40px; height: 40px;
  background: var(--accent-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.pricing-upsell__title {
  font-family: var(--font-heading);
  font-size: 0.92rem; font-weight: 500; color: var(--text); margin-bottom: 2px;
}
.pricing-upsell__desc {
  font-family: var(--font-body);
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}

/* ------------------------------------------------
   11. Testimonials
   ------------------------------------------------ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.2s;
}
.testi-card:hover { box-shadow: var(--shadow-sm); }
.testi-card__stars { display: flex; gap: 2px; color: #F59E0B; font-size: 0.9rem; }
.testi-card__quote {
  font-family: var(--font-body);
  font-size: 0.92rem; line-height: 1.75;
  color: var(--text-muted); flex: 1; font-style: italic;
}
.testi-card__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--border-light);
}
.author-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 700;
  color: #1A1A1A; flex-shrink: 0; letter-spacing: -0.02em;
}
.author-name {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em;
}
.author-trade {
  font-family: var(--font-body);
  font-size: 0.76rem; color: var(--text-faint);
}

/* ------------------------------------------------
   12. FAQ
   ------------------------------------------------ */
.faq-list { max-width: 720px; margin: 0 auto; }

details { border-bottom: 1px solid var(--border); }
details:first-child { border-top: 1px solid var(--border); }

summary {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 0.97rem; font-weight: 500;
  color: var(--text); cursor: pointer;
  list-style: none;
  user-select: none; gap: 16px;
}
summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--light); border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.25s;
  color: var(--text-muted);
}
details[open] .faq-icon {
  background: var(--accent-light);
  border-color: var(--accent-mid);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-answer {
  font-family: var(--font-body);
  padding-bottom: 20px;
  font-size: 0.9rem; line-height: 1.75;
  color: var(--text-muted); max-width: 640px;
}

/* ------------------------------------------------
   13. Final CTA
   ------------------------------------------------ */
.final-cta {
  background: var(--dark-mid);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(81,190,204,0.1) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(81,190,204,0.07) 0%, transparent 55%);
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2     { color: var(--text); margin-bottom: 0.75rem; }
.final-cta p      {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.05rem; max-width: 520px;
  margin: 0 auto 2.25rem;
}
.final-cta__actions {
  display: flex; align-items: center;
  justify-content: center; gap: 12px; flex-wrap: wrap;
}
.final-cta__sub {
  font-family: var(--font-body);
  margin-top: 1.5rem;
  font-size: 0.8rem; color: var(--text-faint);
}

/* ------------------------------------------------
   14. Footer
   ------------------------------------------------ */
.footer {
  background: var(--dark);
  padding: 48px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--accent); letter-spacing: -0.04em;
  display: block; margin-bottom: 3px;
}
.footer__brand-name span { color: var(--accent); }
.footer__brand-tag {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(0,0,0,0.4); display: block; margin-bottom: 12px;
}
.footer__about {
  font-family: var(--font-body);
  font-size: 0.85rem; line-height: 1.7; color: rgba(0,0,0,0.45);
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.45); margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-family: var(--font-body);
  font-size: 0.85rem; color: rgba(0,0,0,0.5); transition: color 0.15s;
}
.footer__links a:hover { color: rgba(0,0,0,0.8); }
.footer__bottom {
  padding: 18px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 0.78rem; color: rgba(0,0,0,0.4);
}
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a {
  font-family: var(--font-body);
  font-size: 0.78rem; color: rgba(0,0,0,0.4); transition: color 0.15s;
}
.footer__bottom-links a:hover { color: rgba(0,0,0,0.65); }

/* ------------------------------------------------
   15. Privacy Policy Page
   ------------------------------------------------ */
.privacy-body h2 {
  font-size: 1.15rem;
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.privacy-body h3 {
  font-size: 0.95rem;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.privacy-body p {
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.8;
}
.privacy-body ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
}
.privacy-body ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.3rem;
}

/* ------------------------------------------------
   16. Responsive
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .header__nav      { display: none; }
  .header__actions  { display: none; }
  .hamburger        { display: flex; }

  .hero__inner    { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual   { align-items: flex-start; }
  .notif-card     { max-width: 100%; }
  .notif-card:nth-child(2), .notif-card:nth-child(3) { margin-left: 0; }

  .problem__grid  { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .steps          { grid-template-columns: 1fr; gap: 32px; }
  .steps::before  { display: none; }
  .step           {
    text-align: left; padding: 0;
    display: flex; gap: 20px; align-items: flex-start;
  }
  .step__number   { margin: 0; flex-shrink: 0; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section        { padding: 64px 0; }
  .container      { padding: 0 20px; }

  .header         { top: 16px; max-width: calc(100% - 32px); }

  .hero           { padding: 100px 0 56px; }
  .hero h1        { font-size: clamp(1.8rem, 8vw, 2.4rem) !important; }
  .hero__copy     { text-align: center; }
  .hero__badge    { margin-left: auto; margin-right: auto; }
  .hero__sub      { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__ctas     { flex-direction: column; justify-content: center; }
  .hero__ctas .btn { width: 100%; }
  .hero__visual   { display: none; }

  .problem__grid      { grid-template-columns: 1fr; }
  .services__grid     { grid-template-columns: 1fr; }
  .pricing__grid      { grid-template-columns: 1fr; max-width: 100%; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner      { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom     { flex-direction: column; align-items: flex-start; gap: 6px; }

  .trust-bar__divider { display: none; }
  .trust-bar__inner   { gap: 10px 24px; justify-content: center; }
  .trust-bar__item    { justify-content: center; white-space: nowrap; }

  .pricing-upsell     { flex-direction: column; align-items: flex-start; }
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2,
  .trades-section__header h2 { font-size: 1.8rem; }
}
