/* ========================================
   OFFDAY — Lead Generation Website
   Cloud-White / Black + Sky Blue Palette
   ======================================== */

:root {
  /* === Base whites === */
  --white:  #ffffff;
  --light:  #f5f7fa;   /* alternating light section bg */

  /* === Cloud-white (replaces all former dark navy) === */
  --cloud:        #edf2f9;   /* main "cloud" section bg — soft, cool off-white */
  --cloud-deep:   #e4ecf6;   /* slightly deeper cloud for hover/variation */
  --cloud-border: #d4deee;   /* border on cloud bg */

  /* === Cards on cloud bg === */
  --surface-cloud:   #ffffff;
  --surface-cloud-2: #f5f8fc;

  /* === Borders === */
  --border:  #e2e8f0;   /* light section borders */

  /* === Accents === */
  --sky:         #5a9fd4;
  --sky-dark:    #3d88c0;
  --sky-glow:    rgba(90, 159, 212, 0.14);
  --sky-glow-lg: rgba(90, 159, 212, 0.22);

  --black-accent: #0d0d0d;
  --black-hover:  #2a2a2a;
  --black-glow:   rgba(13, 13, 13, 0.12);

  --lavender: #9b8fd4;
  --green:    #10b981;

  /* === Text (all sections are now light) === */
  --text:   #0f172a;
  --slate:  #475569;
  --muted:  #8a9bb0;

  /* Legacy aliases */
  --dark:         var(--cloud);
  --dark-2:       var(--cloud-deep);
  --surface-dark: var(--surface-cloud);
  --surface-dark-2: var(--surface-cloud-2);
  --border-dark:  var(--cloud-border);
  --text-d:       var(--text);
  --slate-d:      var(--slate);
  --muted-d:      var(--muted);
  --orange:       var(--black-accent);
  --orange-dark:  var(--black-hover);
  --star:         var(--black-accent);
  --star-dark:    var(--black-hover);
  --star-glow:    var(--black-glow);
  --blue:         var(--sky);
  --blue-dark:    var(--sky-dark);
  --blue-light:   var(--sky-glow);
  --void:         var(--cloud);
  --surface:      var(--white);
  --surface-2:    var(--light);
  --border-2:     var(--cloud-border);

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; }
p  { line-height: 1.75; }

.text-muted    { color: var(--muted); }
.text-center   { text-align: center; }
.highlight     { color: var(--black-accent); }
.highlight-blue { color: var(--sky); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--black-accent);
  color: var(--white);
  box-shadow: 0 4px 14px var(--black-glow);
}
.btn-primary:hover {
  background: var(--black-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,13,13,0.2);
}

.btn-primary-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: 10px; }

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  border: 1.5px solid var(--cloud-border);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--cloud-deep);
  border-color: var(--slate);
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(15,23,42,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--black-accent); }

.nav__links { display: flex; align-items: center; gap: 32px; }

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--black-accent); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === HERO === */
.hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 75% 55% at 65% 25%, rgba(90,159,212,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 15% 75%, rgba(155,143,212,0.07) 0%, transparent 60%),
    linear-gradient(170deg, #edf2f9 0%, #e8eef8 45%, #eef3fa 80%, #f0f4fb 100%);
  position: relative;
  overflow: hidden;
}

/* very subtle cloud texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.5;
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(90,159,212,0.1) 0%, rgba(155,143,212,0.06) 40%, transparent 70%);
  top: -140px; right: -140px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90,159,212,0.08);
  border: 1px solid rgba(90,159,212,0.2);
  color: var(--sky-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.hero h1    { color: var(--text); margin-bottom: 20px; }
.hero__sub  { font-size: 1.15rem; color: var(--slate); margin-bottom: 36px; max-width: 520px; }

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cloud-border);
}

.hero__stat-num   { font-size: 1.75rem; font-weight: 800; color: var(--text); line-height: 1; }
.hero__stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* === HERO FORM === */
.hero__form-card {
  background: var(--white);
  border: 1px solid var(--cloud-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(90,120,160,0.14);
}

.hero__form-card h3 { font-size: 1.25rem; color: var(--text); margin-bottom: 6px; }
.hero__form-card p  { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }

/* === FORMS === */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black-accent);
  box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--black-accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 14px var(--black-glow);
}
.form-submit-btn:hover {
  background: var(--black-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,13,13,0.18);
}

.form-privacy { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* === LOGOS BAR === */
.logos-bar {
  background: var(--light);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.logos-bar__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}

.logos-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.logo-pill:hover { color: var(--slate); }

.logo-pill .icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* === SECTION LAYOUT === */
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark  { background: var(--cloud); }
.section-light { background: var(--light); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black-accent);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; color: var(--text); }
.section-sub   { font-size: 1.1rem; color: var(--muted); max-width: 560px; }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* === PAIN POINTS === */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pain-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--black-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.pain-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pain-card:hover::before { transform: scaleX(1); }

.pain-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.pain-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.pain-card p  { font-size: 0.9rem; color: var(--muted); }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--cloud-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(90,159,212,0.07) 0%, transparent 70%);
}

.service-card:hover {
  border-color: var(--cloud-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon  { font-size: 2rem; margin-bottom: 20px; }
.service-card h3 { color: var(--text); margin-bottom: 12px; }
.service-card p  { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(90,159,212,0.08);
  border: 1px solid rgba(90,159,212,0.2);
  color: var(--sky-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--lavender) 50%, var(--black-accent) 100%);
  opacity: 0.2;
}

.step-card { text-align: center; padding: 32px 24px; position: relative; }

.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px var(--sky-glow-lg);
}

.step-card:nth-child(2) .step-number { background: var(--lavender); box-shadow: 0 8px 24px rgba(155,143,212,0.28); }
.step-card:nth-child(3) .step-number { background: var(--black-accent); box-shadow: 0 8px 24px rgba(13,13,13,0.18); }

.step-card h3 { margin-bottom: 12px; font-size: 1.15rem; color: var(--text); }
.step-card p  { font-size: 0.9rem; color: var(--muted); }

/* === RESULTS === */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cloud-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.result-item {
  padding: 40px 32px;
  text-align: center;
  background: var(--white);
  transition: background 0.25s;
}
.result-item:hover { background: var(--surface-cloud-2); }

.result-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.result-num span { color: var(--black-accent); }

.result-label { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
  transform: translateY(-3px);
}

.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.author-biz  { font-size: 0.8rem; color: var(--muted); }

.result-tag {
  margin-top: 6px;
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--black-accent);
  box-shadow: 0 0 0 1px rgba(13,13,13,0.08), var(--shadow-lg);
  transform: scale(1.04);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.pricing-card.featured .pricing-tier { color: var(--black-accent); }

.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-price .currency { font-size: 1.25rem; font-weight: 700; color: var(--slate); }
.pricing-price .amount   { font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -0.04em; }
.pricing-price .period   { font-size: 0.85rem; color: var(--muted); }

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features { margin-bottom: 28px; }

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 10px;
}

.pricing-feature .check { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.pricing-feature .cross { color: #cbd5e1;    font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
}

.pricing-cta.primary-cta {
  background: var(--black-accent);
  color: var(--white);
  box-shadow: 0 4px 14px var(--black-glow);
}
.pricing-cta.primary-cta:hover {
  background: var(--black-hover);
  transform: translateY(-2px);
}

.pricing-cta.outline-cta {
  border: 2px solid var(--border);
  color: var(--text);
}
.pricing-cta.outline-cta:hover {
  border-color: var(--black-accent);
  color: var(--black-accent);
}

/* === FAQ === */
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
  gap: 16px;
}
.faq-question:hover { color: var(--black-accent); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s;
  font-weight: 400;
}

.faq-item.open .faq-icon {
  background: var(--black-accent);
  border-color: var(--black-accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 0.9rem; color: var(--muted); padding-bottom: 20px; line-height: 1.8; }

/* === FINAL CTA === */
.final-cta {
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(155,143,212,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 50%, rgba(90,159,212,0.08) 0%, transparent 55%),
    linear-gradient(135deg, #edf2f9 0%, #e8eef8 50%, #eef3fa 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.5;
}

.final-cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,159,212,0.06) 0%, transparent 70%);
  bottom: -150px; right: -100px;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.final-cta h2           { color: var(--text); }
.final-cta .section-sub { color: var(--muted); }

.final-cta__points { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

.final-cta__point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate);
}

.final-cta__point .dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--green);
  flex-shrink: 0;
}

.final-form-card {
  background: var(--white);
  border: 1px solid var(--cloud-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(90,120,160,0.14);
}

.final-form-card h3   { font-size: 1.2rem; color: var(--text); margin-bottom: 4px; }
.final-form-card > p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }

/* === FOOTER === */
.footer {
  background: var(--cloud);
  padding: 64px 0 32px;
  border-top: 1px solid var(--cloud-border);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--cloud-border);
  margin-bottom: 32px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.footer__logo      { font-size: 1.4rem; font-weight: 900; color: var(--text); letter-spacing: -0.04em; }
.footer__logo span { color: var(--black-accent); }

.footer__col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 16px; }

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--muted); }
.footer__legal a { color: var(--muted); transition: color 0.2s; }
.footer__legal a:hover { color: var(--text); }

/* === SCROLL HINT === */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  opacity: 0;
  animation: scrollHintAppear 0.6s ease 2s forwards;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.scroll-hint.hidden { opacity: 0 !important; }

.scroll-hint__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent 0%, var(--cloud-border) 45%, var(--cloud-border) 55%, transparent 100%);
  animation: scrollLinePulse 2s ease-in-out infinite;
}

.scroll-hint__arrow {
  animation: scrollArrowBounce 2s ease-in-out infinite;
}

@keyframes scrollHintAppear {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.88); }
  50%       { opacity: 1;    transform: scaleY(1.12); }
}

@keyframes scrollArrowBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.35; }
  50%       { transform: translateY(5px); opacity: 1; }
}

/* === ANIMATIONS === */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === MOBILE MENU === */
.nav__mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-weight: 500;
  color: var(--slate);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border: none; }

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--text);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
  max-width: 320px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* === LIFECYCLE (How It Works) === */
.lifecycle {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.lifecycle__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lifecycle__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 1;
}

.lifecycle__center-ring {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1.5px dashed var(--cloud-border);
  animation: lcSpin 14s linear infinite;
}

.lifecycle__center-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

@keyframes lcSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.lifecycle__node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  cursor: default;
}

.lifecycle__node--top { left: 50%;   top: 10%; }
.lifecycle__node--br  { left: 84.6%; top: 70%; }
.lifecycle__node--bl  { left: 15.4%; top: 70%; }

.lifecycle__dot {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.lc-sky { background: var(--sky);          box-shadow: 0 6px 20px var(--sky-glow-lg); }
.lc-lav { background: var(--lavender);     box-shadow: 0 6px 20px rgba(155,143,212,0.28); }
.lc-blk { background: var(--black-accent); box-shadow: 0 6px 20px var(--black-glow); }

.lifecycle__node:hover .lifecycle__dot   { transform: scale(1.14); }
.lifecycle__node--top:hover .lc-sky  { box-shadow: 0 10px 32px rgba(90,159,212,0.42); }
.lifecycle__node--br:hover  .lc-lav  { box-shadow: 0 10px 32px rgba(155,143,212,0.46); }
.lifecycle__node--bl:hover  .lc-blk  { box-shadow: 0 10px 32px rgba(13,13,13,0.28); }

.lifecycle__step-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate);
  text-align: center;
  white-space: nowrap;
}

/* Preview tooltip */
.lifecycle__preview {
  position: absolute;
  width: 224px;
  background: var(--white);
  border: 1.5px solid var(--cloud-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lifecycle__preview h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.lifecycle__preview p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Top node: preview appears below */
.lifecycle__node--top .lifecycle__preview {
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
}
.lifecycle__node--top:hover .lifecycle__preview {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* BR node: preview appears to the left */
.lifecycle__node--br .lifecycle__preview {
  top: 50%;
  right: calc(100% + 12px);
  left: auto;
  transform: translateY(-50%) translateX(6px);
}
.lifecycle__node--br:hover .lifecycle__preview {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* BL node: preview appears to the right */
.lifecycle__node--bl .lifecycle__preview {
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%) translateX(-6px);
}
.lifecycle__node--bl:hover .lifecycle__preview {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .hero__glow  { display: none; }
  .hero        { text-align: center; }
  .hero__sub   { margin: 0 auto 36px; }
  .hero__stats { justify-content: center; }
  .final-cta__inner  { grid-template-columns: 1fr; }
  .final-cta         { text-align: center; }
  .final-cta__points { align-items: center; }
  .results-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer__top       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger     { display: flex; }
  .pain-grid          { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .hero__stats        { flex-wrap: wrap; gap: 20px; }
  .footer__top        { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom     { flex-direction: column; gap: 12px; text-align: center; }
  .section            { padding: 64px 0; }

  /* Lifecycle: stack vertically on mobile */
  .lifecycle { width: 100%; aspect-ratio: unset; height: auto; display: flex; flex-direction: column; gap: 0; }
  .lifecycle__svg, .lifecycle__center { display: none; }
  .lifecycle__node { position: static; transform: none; flex-direction: row; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
  .lifecycle__node:last-child { border-bottom: none; }
  .lifecycle__dot { flex-shrink: 0; width: 48px; height: 48px; font-size: 1.1rem; }
  .lifecycle__step-label { display: none; }
  .lifecycle__preview { position: static; opacity: 1; pointer-events: auto; transform: none !important; box-shadow: none; border: none; padding: 0; width: auto; border-radius: 0; }
  .lifecycle__preview h4 { font-size: 0.875rem; margin-bottom: 6px; }
}

@media (max-width: 480px) {
  .hero            { padding: 100px 0 60px; }
  .hero__form-card { padding: 24px 20px; }
  .final-form-card { padding: 24px 20px; }
  .result-num      { font-size: 2.25rem; }
}
