/* ============================================================
   SMOOTH FLOW CONSULTANCY — styles.css
   ============================================================ */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --teal:         #0d9488;
  --teal-dark:    #0f766e;
  --teal-pale:    #f0fdfa;
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --navy:         #07111f;
  --navy-mid:     #0f1f35;
  --dark:         #0f172a;
  --body:         #475569;
  --muted:        #94a3b8;
  --border:       #e2e8f0;
  --white:        #ffffff;
  --bg:           #f8fafc;
  --green:        #10b981;
  --wa:           #25d366;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --sh-sm: 0 1px 4px rgba(0,0,0,0.06);
  --sh-md: 0 4px 16px rgba(0,0,0,0.08);
  --sh-lg: 0 16px 40px rgba(0,0,0,0.10);

  --ease: all 0.22s ease;

  --max-w: 1140px;
  --hh:    68px;
  --pad:   5rem 0;
}


/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 72px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
svg { display: block; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--teal); color: var(--white);
  padding: .75rem 1.5rem; border-radius: var(--r-md);
  font-weight: 600; z-index: 9999; transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }


/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 1.5rem; } }

section { padding: var(--pad); }
.bg-light { background: var(--bg); }
.bg-navy  { background: var(--navy); }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.025em;
}
p { line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}

.section-head {
  margin-bottom: 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 520px;
}
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-full);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1rem; }

.btn-dark {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-dark:hover { background: var(--teal-pale); border-color: var(--teal-pale); transform: translateY(-2px); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,148,136,.3); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,.3); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

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


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hh);
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sh-sm);
}
.site-header.scrolled .nav-name    { color: var(--dark); }
.site-header.scrolled .nav-sub     { color: var(--muted); }
.site-header.scrolled .nav-links a { color: var(--body); }
.site-header.scrolled .nav-links a:hover { color: var(--teal); }
.site-header.scrolled .nav-toggle span { background: var(--dark); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hh);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-mark { flex-shrink: 0; color: var(--teal); }

.nav-text { display: flex; flex-direction: column; line-height: 1; }
.nav-name {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1.1;
  transition: color .3s ease;
}
.nav-sub {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
  transition: color .3s ease;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: none;
  align-items: center;
  gap: .75rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: .5rem 1rem;
  transition: color .2s ease;
}
.nav-mobile-link:hover { color: var(--white); }
.nav-mobile-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links   { display: flex; }
  .nav-cta     { display: flex; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--hh) 0 5rem;
}

.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,148,136,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  padding: 3rem 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero h1 span {
  color: var(--teal);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-proof-item {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-proof-item svg { width: 14px; height: 14px; color: var(--teal); }


/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  background: var(--white);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.service-card:hover {
  border-color: rgba(13,148,136,.3);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.service-card.service-dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,.08);
}
.service-card.service-dark:hover { border-color: var(--teal); }

.service-num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .08em;
}
.service-dark .service-num { color: rgba(13,148,136,.8); }

.service-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 20px; height: 20px; color: var(--teal); }
.service-dark .service-icon { background: rgba(13,148,136,.15); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.service-dark h3 { color: var(--white); }

.service-card > p {
  font-size: .9rem;
  color: var(--body);
  flex: 1;
  line-height: 1.7;
}
.service-dark > p { color: rgba(255,255,255,.5); }

.service-items {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-item {
  font-size: .85rem;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
}
.service-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.service-dark .service-item { color: rgba(255,255,255,.65); }
.service-dark .service-item svg { color: rgba(13,148,136,.9); }

.service-price {
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  margin-top: .25rem;
}
.service-price strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}
.service-price span {
  font-size: .8rem;
  color: var(--muted);
}
.service-dark .service-price { border-color: rgba(255,255,255,.08); }
.service-dark .service-price strong { color: var(--white); }
.service-dark .service-price span { color: rgba(255,255,255,.35); }

.service-popular {
  position: absolute;
  top: -11px; left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .75rem;
  border-radius: var(--r-full);
}


/* ============================================================
   WHO WE HELP
   ============================================================ */
.who-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }

.who-item {
  background: var(--white);
  padding: 2rem;
  transition: background .2s ease;
}
.who-item:hover { background: var(--teal-pale); }

.who-emoji { font-size: 1.5rem; margin-bottom: .75rem; display: block; }
.who-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.who-item p  { font-size: .85rem; color: var(--body); line-height: 1.65; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step-n {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h3 { font-size: 1.05rem; }
.step p  { font-size: .9rem; color: var(--body); }


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

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--ease);
  position: relative;
}
.price-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.price-card.featured {
  background: var(--teal);
  border-color: var(--teal);
}

.price-tag {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}
.price-card.featured .price-tag { color: rgba(255,255,255,.7); }

.price-amt {
  display: flex;
  align-items: flex-start;
  gap: .1rem;
  line-height: 1;
}
.price-sym {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 6px;
}
.price-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
}
.price-per {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.price-line {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
}
.price-card.featured .price-line { border-color: rgba(255,255,255,.25); }

.price-items {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.price-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.price-item svg { width: 14px; height: 14px; color: rgba(255,255,255,.4); flex-shrink: 0; }
.price-card.featured .price-item     { color: rgba(255,255,255,.9); }
.price-card.featured .price-item svg { color: rgba(255,255,255,.7); }

.price-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .75rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.2);
  margin-top: 2rem;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .15s ease;
}
.faq-q:hover .faq-qtext { color: var(--teal); }

.faq-qtext {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  transition: color .15s ease;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.faq-icon svg { width: 14px; height: 14px; color: var(--teal); }
.faq-item.open .faq-icon { background: var(--teal); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  font-size: .9rem;
  color: var(--body);
  padding-bottom: 1.25rem;
  line-height: 1.75;
}


/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--teal);
  padding: 4.5rem 0;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  max-width: 500px;
}
.cta-strip p { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: .5rem; }
.cta-strip-btns { display: flex; gap: .75rem; flex-wrap: wrap; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 1fr 1.4fr; } }

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--body); margin-bottom: 2rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--ease);
}
.c-method:hover { border-color: rgba(13,148,136,.4); background: var(--teal-pale); }
.c-method-icon {
  width: 38px; height: 38px;
  background: var(--teal-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-method-icon svg { width: 18px; height: 18px; color: var(--teal); }
.c-method-label { font-size: .75rem; color: var(--muted); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.c-method-val   { font-size: .88rem; font-weight: 600; color: var(--dark); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-lg);
}
.form-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.form-card > p { font-size: .88rem; color: var(--muted); margin-bottom: 1.75rem; }

.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.fg label { font-size: .82rem; font-weight: 700; color: var(--dark); }
.fg .req   { color: var(--teal); }

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
  outline: none;
}
.fg textarea { resize: vertical; min-height: 100px; }

.sel-wrap { position: relative; }
.sel-wrap::after {
  content: '';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
  pointer-events: none;
}
.sel-wrap select { padding-right: 2.5rem; }

.form-honeypot { display: none; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  margin-top: .5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--green);
}
.form-success svg { width: 48px; height: 48px; margin: 0 auto 1rem; }
.form-success h3 { color: var(--dark); margin-bottom: .5rem; }
.form-success p  { color: var(--body); font-size: .9rem; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-about { max-width: 300px; }
.footer-about p {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: var(--ease);
}
.social-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.f-contact-item { display: flex; align-items: center; gap: .75rem; }
.f-contact-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.f-contact-item a,
.f-contact-item span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s ease;
}
.f-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.25); transition: color .2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }


/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--wa);
  color: var(--white);
  border-radius: var(--r-full);
  padding: .75rem 1.25rem .75rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37,211,102,.38);
  transition: var(--ease);
  text-decoration: none;
  max-width: 50px;
  overflow: hidden;
}
.wa-float:hover { max-width: 200px; transform: scale(1.04); }
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-label { white-space: nowrap; overflow: hidden; opacity: 0; transition: opacity .18s ease .04s; }
.wa-float:hover .wa-label { opacity: 1; }

.btt {
  position: fixed;
  bottom: calc(1.5rem + 62px);
  right: 1.5rem;
  z-index: 900;
  width: 42px; height: 42px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.btt.on { opacity: 1; pointer-events: auto; transform: translateY(0); }
.btt:hover { background: var(--teal); border-color: var(--teal); }
.btt svg { width: 18px; height: 18px; }


/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mob-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 890;
  display: flex;
  padding: .75rem 1rem;
  gap: .5rem;
  background: rgba(7,17,31,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.07);
}
.mob-bar .btn { flex: 1; justify-content: center; }
@media (min-width: 768px) { .mob-bar { display: none; } }


/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal       { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on    { opacity: 1; transform: translateY(0); }
.reveal-l     { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-l.on  { opacity: 1; transform: translateX(0); }
.reveal-r     { opacity: 0; transform: translateX(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-r.on  { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; transition: none; }
}

@keyframes spin { to { transform: rotate(360deg); } }


/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }

.pain-item {
  background: var(--white);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}
.pain-item p {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.65;
}
.pain-item p strong { color: var(--dark); font-weight: 700; display: block; margin-bottom: .25rem; }


/* ============================================================
   WEBSITE SECTION (Stage 1)
   ============================================================ */
.website-wrap {
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .website-wrap { grid-template-columns: 1fr 1fr; } }

.website-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.75rem 0 2rem;
}
.wf-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: var(--body);
  font-weight: 500;
}
.wf-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

.website-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.website-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(13,148,136,.2) 0%, transparent 70%);
  pointer-events: none;
}
.website-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: 1rem;
}
.wpt-sym { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.wpt-num { font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.04em; }
.wpt-label { font-size: .8rem; color: rgba(255,255,255,.4); margin-left: .25rem; }
.website-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.website-card-items {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.wci {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.wci svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }


/* ============================================================
   CARE PLAN (Stage 2)
   ============================================================ */
.care-plan {
  background: var(--teal);
  padding: 4.5rem 0;
}
.care-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .care-inner { grid-template-columns: 1fr 1fr; } }

.care-text h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.care-text p  { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.8; }

.care-features {
  background: rgba(0,0,0,.15);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.care-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.care-feature svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); flex-shrink: 0; }
.care-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.care-price .sym { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.care-price .num { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.04em; }
.care-price .per { font-size: .85rem; color: rgba(255,255,255,.5); }


/* ============================================================
   JOURNEY (Stages 3-5)
   ============================================================ */
.journey-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .journey-grid { grid-template-columns: repeat(3, 1fr); } }

.journey-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  background: var(--white);
  transition: var(--ease);
}
.journey-card:hover { border-color: rgba(13,148,136,.35); box-shadow: var(--sh-md); transform: translateY(-3px); }

.journey-stage {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}
.journey-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.journey-icon svg { width: 20px; height: 20px; color: var(--teal); }
.journey-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.journey-card p  { font-size: .875rem; color: var(--body); line-height: 1.7; margin-bottom: 1rem; }
.journey-items {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.ji {
  font-size: .82rem;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ji svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; }


/* ============================================================
   TRADES LIST
   ============================================================ */
.trades-wrap {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.trades-intro { margin-bottom: 2rem; }
.trades-intro h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.trades-intro p  { font-size: .9rem; color: var(--body); }
.trades-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.trade-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--ease);
}
.trade-tag:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }


/* ============================================================
   SIMPLE PRICING BLOCK
   ============================================================ */
.simple-pricing {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 640px) { .simple-pricing { grid-template-columns: 1fr 1fr; } }

.sp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-align: center;
  transition: var(--ease);
}
.sp-card:hover { background: rgba(255,255,255,.07); }
.sp-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.sp-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .1rem;
  line-height: 1;
}
.sp-sym { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-top: 6px; }
.sp-num { font-size: 4rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; }
.sp-per { font-size: .82rem; color: rgba(255,255,255,.35); }
.sp-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  :root { --pad: 3.5rem 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .form-card { padding: 1.5rem; }
  .website-card { padding: 1.75rem; }
  .care-features { padding: 1.5rem; }
}
