
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --coral: #ED7254;
  --coral-50: rgba(237,114,84,0.50);
  --coral-25: rgba(237,114,84,0.25);
  --coral-10: rgba(237,114,84,0.10);
  --cyan: #6EBCBF;
  --cyan-25: rgba(110,188,191,0.25);
  --teal: #0D9095;
  --white: #FFFFFF;
  --off-white: #FAF8F6;
  --graphite: #242424;
  --text-dark: #2C2C2C;
  --text-mid: #555555;
  --text-light: #888888;
  --border: rgba(0,0,0,0.10);
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 56px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--coral); }
.nav-cta { background: var(--coral); color: white; border: none; padding: 10px 24px; font-family: var(--fb); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border-radius: 2px; }
.nav-cta:hover { background: #d4603e; }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 52% 48%; padding-top: 68px; }
.hero-left { padding: 72px 56px 72px 72px; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.7s ease 0.1s forwards; }
.hero-eyebrow-line { width: 24px; height: 1px; background: var(--coral); }
.hero-hook { font-family: var(--fd); font-size: clamp(36px, 3.8vw, 56px); font-weight: 400; line-height: 1.15; color: var(--text-dark); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards; }
.hero-hook em { font-style: italic; color: var(--coral); }
.hero-sub { font-size: 17px; line-height: 1.8; color: var(--text-mid); font-weight: 400; margin-bottom: 40px; max-width: 440px; opacity: 0; animation: fadeUp 0.7s ease 0.3s forwards; }
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards; }
.btn-primary { background: var(--coral); color: white; border: none; padding: 17px 40px; font-family: var(--fb); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border-radius: 2px; }
.btn-primary:hover { background: #d4603e; transform: translateY(-2px); box-shadow: 0 8px 24px var(--coral-50); }
.btn-text { background: transparent; color: var(--text-mid); border: none; font-family: var(--fb); font-size: 14px; cursor: pointer; transition: color 0.2s; text-decoration: underline; text-underline-offset: 3px; padding: 0; font-weight: 400; }
.btn-text:hover { color: var(--coral); }
.hero-proof { padding-top: 32px; border-top: 1px solid var(--border); display: flex; gap: 28px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards; }
.proof-num { font-family: var(--fd); font-size: 26px; color: var(--coral); line-height: 1; }
.proof-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.hero-right { position: relative; overflow: hidden; background: var(--off-white); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-cyan { position: absolute; top: 0; right: 0; width: 56px; height: 56px; background: var(--cyan); }
.hero-card { position: absolute; bottom: 40px; left: -16px; z-index: 10; background: white; padding: 20px 26px; border-left: 3px solid var(--coral); box-shadow: 0 16px 48px rgba(0,0,0,0.12); animation: floatCard 6s ease-in-out infinite; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.card-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; font-weight: 500; }
.card-value { font-family: var(--fd); font-size: 20px; color: var(--text-dark); }
.card-sub { font-size: 13px; color: var(--text-mid); margin-top: 4px; }

/* MARQUEE */
.marquee-wrap { overflow: hidden; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.marquee-track { display: inline-flex; white-space: nowrap; animation: marquee 28s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mi { display: inline-flex; align-items: center; gap: 20px; padding: 0 28px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-light); font-weight: 500; }
.md { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.mi.ac { color: var(--coral); }

/* SHARED */
.stag { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 16px; }
.stag::before { content: ''; width: 16px; height: 1px; background: var(--coral); }
.stag-inv { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 16px; }
.stag-inv::before { content: ''; width: 16px; height: 1px; background: var(--coral); }
.sw { padding: 96px 72px; }
.sw-alt { padding: 96px 72px; background: var(--off-white); }

/* PROBLEM */
.problem-inner { max-width: 820px; margin: 0 auto; }
.story-h { font-family: var(--fd); font-size: clamp(32px, 3.2vw, 48px); font-weight: 400; line-height: 1.2; margin-bottom: 28px; }
.story-h em { font-style: italic; color: var(--coral); }
.story-body { font-size: 17px; line-height: 1.85; color: var(--text-mid); margin-bottom: 24px; }
.story-body strong { color: var(--text-dark); font-weight: 600; }
.story-callout { border-left: 3px solid var(--coral); padding: 24px 32px; margin: 32px 0; background: var(--off-white); font-size: 19px; line-height: 1.6; color: var(--text-dark); }
.story-callout em { color: var(--coral); font-style: italic; }
.villain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 36px; }
.vi { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--text-mid); line-height: 1.6; }
.vi:nth-child(odd) { padding-right: 48px; }
.vi:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--border); }
.vx { width: 24px; height: 24px; border-radius: 50%; background: rgba(220,80,60,0.1); color: #C9503F; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }

/* SOLUTION */
.sol-section { background: var(--graphite); color: white; padding: 96px 72px; position: relative; overflow: hidden; }
.sol-coral { position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(237,114,84,0.15) 0%, transparent 70%); pointer-events: none; }
.sol-cyan { position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(110,188,191,0.1) 0%, transparent 70%); pointer-events: none; }
.sol-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.sol-h { font-family: var(--fd); font-size: clamp(32px, 3.5vw, 52px); font-weight: 400; line-height: 1.15; margin-bottom: 24px; }
.sol-h em { font-style: italic; color: var(--coral); }
.sol-body { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 56px; max-width: 640px; }
.sol-body strong { color: white; font-weight: 600; }
.sol-stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,0.1); }
.ss { padding: 32px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.ss:last-child { border-right: none; }
.ss-num { font-family: var(--fd); font-size: 40px; color: var(--coral); line-height: 1; }
.ss-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; margin-top: 8px; }

/* HOW */
.how-header { text-align: center; margin-bottom: 64px; }
.how-h { font-family: var(--fd); font-size: clamp(30px, 3vw, 44px); font-weight: 400; line-height: 1.2; }
.how-h em { font-style: italic; color: var(--coral); }
.how-sub { font-size: 17px; color: var(--text-mid); margin-top: 16px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.days-d { display: grid; grid-template-columns: repeat(5,1fr); position: relative; }
.days-d::before { content: ''; position: absolute; top: 39px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, var(--coral-25), var(--coral), var(--coral-25)); }
.ds { padding: 0 16px 40px; text-align: center; position: relative; z-index: 1; transition: transform 0.3s; }
.ds:hover { transform: translateY(-8px); }
.dc { width: 78px; height: 78px; border-radius: 50%; background: white; border: 1.5px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.ds:hover .dc { border-color: var(--coral); background: var(--coral); box-shadow: 0 8px 32px var(--coral-50); }
.dn-sm { font-size: 8px; letter-spacing: 0.15em; color: var(--text-light); transition: color 0.3s; font-weight: 500; }
.ds:hover .dn-sm { color: rgba(255,255,255,0.7); }
.dn-big { font-family: var(--fd); font-size: 24px; color: var(--text-dark); line-height: 1; transition: color 0.3s; }
.ds:hover .dn-big { color: white; }
.dt { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.dd { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.days-m { display: none; }
.dm { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.dm:last-child { border-bottom: none; }
.dm-c { width: 56px; height: 56px; border-radius: 50%; background: var(--off-white); border: 1.5px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.dm-nsm { font-size: 7px; letter-spacing: 0.15em; color: var(--text-light); font-weight: 500; }
.dm-nbig { font-family: var(--fd); font-size: 20px; color: var(--text-dark); line-height: 1; }
.dm-title { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.dm-desc { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* PROGRAMS */
.prog-header { text-align: center; margin-bottom: 56px; }
.prog-h { font-family: var(--fd); font-size: clamp(28px, 2.8vw, 40px); font-weight: 400; line-height: 1.25; margin-bottom: 16px; }
.prog-h em { font-style: italic; color: var(--coral); }
.prog-sub { font-size: 17px; color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.9; }
.prog-sub span { display: block; }
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc { background: white; padding: 52px 48px; border: 1px solid var(--border); position: relative; transition: all 0.3s; }
.pc:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pc-dark { background: var(--graphite); border-color: var(--graphite); }
.pc-dark:hover { box-shadow: 0 16px 48px rgba(36,36,36,0.25); }
.pc-badge { position: absolute; top: -1px; left: 48px; background: var(--coral); color: white; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; padding: 5px 14px; }
.pt { display: inline-block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 24px; }
.pt-exp { background: var(--cyan-25); color: var(--teal); }
.pt-full { background: rgba(237,114,84,0.15); color: var(--coral); }
.pc-title { font-family: var(--fd); font-size: 38px; font-weight: 400; line-height: 1.15; margin-bottom: 18px; color: var(--text-dark); }
.pc-dark .pc-title { color: white; }
.pc-title em { font-style: italic; }
.pc-desc { font-size: 16px; line-height: 1.8; color: var(--text-mid); margin-bottom: 28px; }
.pc-dark .pc-desc { color: rgba(255,255,255,0.65); }
.pc-hl { border-radius: 3px; padding: 18px 20px; font-size: 15px; line-height: 1.7; margin-bottom: 32px; color: var(--text-mid); background: var(--off-white); }
.pc-dark .pc-hl { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); border-left: 2px solid var(--coral); }
.pc-list { list-style: none; margin-bottom: 40px; }
.pc-list li { font-size: 15px; padding: 13px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; color: var(--text-mid); }
.pc-dark .pc-list li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.pc-list li::before { content: '✓'; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.cc::before { color: var(--cyan); }
.co::before { color: var(--coral); }
.pc-btn { display: block; width: 100%; padding: 17px; text-align: center; font-family: var(--fb); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border-radius: 2px; text-decoration: none; }
.pb-out { background: transparent; color: var(--coral); border: 1.5px solid var(--coral); }
.pb-out:hover { background: var(--coral); color: white; }
.pb-fill { background: var(--coral); color: white; border: none; }
.pb-fill:hover { background: #d4603e; transform: translateY(-2px); box-shadow: 0 8px 24px var(--coral-50); }

/* TESTIMONIALS */
.spb { background: var(--coral); color: white; padding: 20px 32px; margin-bottom: 40px; border-radius: 3px; font-size: 16px; line-height: 1.7; }
.spb strong { font-weight: 700; }
.testi-featured { display: grid; grid-template-columns: 3fr 2fr; border: 1px solid var(--border); margin-bottom: 20px; background: white; transition: all 0.3s; }
.testi-featured:hover { border-color: var(--coral-25); box-shadow: 0 8px 40px rgba(237,114,84,0.08); }
.tf-left { padding: 52px 48px; border-right: 1px solid var(--border); }
.tf-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--coral); margin-bottom: 20px; display: block; }
.tf-quote { font-family: var(--fb); font-style: italic; font-size: 17px; line-height: 1.85; color: var(--text-mid); margin-bottom: 32px; }
.tf-name { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.tf-detail { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.tf-right { padding: 52px 36px; display: flex; flex-direction: column; justify-content: center; gap: 32px; background: var(--off-white); }
.tf-stat { text-align: center; }
.tf-stat-num { font-family: var(--fd); font-size: 36px; color: var(--coral); line-height: 1; }
.tf-stat-label { font-size: 13px; color: var(--text-light); margin-top: 6px; }
.tf-div { height: 1px; background: var(--border); }
.tg { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tc { border: 1px solid var(--border); padding: 40px 36px; background: white; transition: all 0.3s; }
.tc:hover { border-color: var(--coral-25); box-shadow: 0 8px 32px rgba(237,114,84,0.07); transform: translateY(-3px); }
.tqm { font-family: var(--fd); font-size: 48px; color: var(--coral); opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.tt { font-family: var(--fb); font-style: italic; font-size: 15px; line-height: 1.9; color: var(--text-mid); margin-bottom: 28px; }
.ta { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); gap: 12px; }
.an { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.ad { font-size: 12px; color: var(--text-light); margin-top: 3px; }
.rp { background: var(--coral); color: white; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.rp.grn { background: #4A7C59; }

/* INSIDE + PRICING */
.inside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.inside-h { font-family: var(--fd); font-size: clamp(28px, 2.8vw, 42px); font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
.inside-h em { font-style: italic; color: var(--coral); }
.inside-sub { font-size: 17px; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.ilist { list-style: none; }
.ii { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); transition: padding-left 0.3s; }
.ii:first-child { border-top: 1px solid var(--border); }
.ii:hover { padding-left: 6px; }
.iico { width: 44px; height: 44px; border-radius: 10px; background: var(--coral-10); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: background 0.3s; }
.ii:hover .iico { background: var(--coral); }
.ii h4 { font-size: 15px; font-weight: 600; margin-bottom: 5px; color: var(--text-dark); }
.ii p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.pbox { background: var(--graphite); color: white; padding: 52px 44px; position: relative; overflow: hidden; }
.pbox::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--coral); }
.pbox::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(237,114,84,0.15), transparent 70%); }
.tier { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.tier:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.tlabel { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; font-weight: 500; }
.tname { font-family: var(--fd); font-size: 22px; margin-bottom: 8px; }
.tprice { font-family: var(--fd); font-size: 42px; color: var(--coral); line-height: 1; }
.tnote { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.tbadge { display: inline-block; background: var(--coral); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; padding: 4px 10px; border-radius: 2px; margin-top: 10px; }
.pcta { display: block; width: 100%; background: var(--coral); color: white; border: none; padding: 18px; font-family: var(--fb); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 32px; border-radius: 2px; text-decoration: none; text-align: center; }
.pcta:hover { background: #d4603e; transform: translateY(-2px); }
.pnote { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 14px; }

/* CLOSING + FORM */
.closing { background: var(--graphite); padding: 80px 72px; text-align: center; }
.closing-tag { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 20px; }
.closing-h { font-family: var(--fd); font-size: clamp(32px, 3.2vw, 48px); font-weight: 400; line-height: 1.2; color: white; margin-bottom: 16px; }
.closing-h em { font-style: italic; color: var(--coral); }
.closing-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 500px; margin: 0 auto; }

.form-section { background: white; padding: 72px 72px 96px; }
.form-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.form-reassure { font-size: 15px; color: var(--text-mid); padding: 18px 24px; background: var(--off-white); border-radius: 3px; margin-bottom: 28px; line-height: 1.65; }
.fi {
  width: 100%; background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text-dark); padding: 17px 18px;
  font-family: var(--fb); font-size: 16px; font-weight: 500;
  outline: none; transition: all 0.3s; border-radius: 2px;
  -webkit-appearance: none;
}
.fi:focus { border-color: var(--coral); background: white; box-shadow: 0 0 0 3px var(--coral-10); }
.fi::placeholder { color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-fields { display: flex; flex-direction: column; gap: 14px; }
.prog-opts-row { display: flex; gap: 8px; flex-wrap: wrap; }
.prog-opt {
  padding: 10px 18px; border: 1.5px solid var(--border);
  background: white; color: var(--text-mid);
  font-family: var(--fb); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; border-radius: 20px;
}
.prog-opt:hover { border-color: var(--coral-25); color: var(--coral); }
.prog-opt.active { border-color: var(--coral); background: var(--coral); color: white; }
.form-submit-btn {
  width: 100%; background: var(--coral); color: white; border: none;
  padding: 21px; font-family: var(--fb); font-size: 14px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: all 0.3s; margin-top: 6px;
}
.form-submit-btn:hover { background: #d4603e; transform: translateY(-2px); box-shadow: 0 10px 30px var(--coral-50); }
.form-open-btn:hover { background: #d4603e; transform: translateY(-2px); box-shadow: 0 10px 32px var(--coral-50); }
.form-note { font-size: 13px; color: var(--text-light); }

/* DISCLAIMER */
.disclaimer { background: var(--off-white); border-top: 1px solid var(--border); padding: 28px 72px; }
.disclaimer p { font-size: 13px; color: var(--text-light); line-height: 1.8; max-width: 820px; margin: 0 auto; text-align: center; font-style: italic; }

/* FAQ */
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-h { font-family: var(--fd); font-size: clamp(28px, 2.5vw, 40px); font-weight: 400; margin-bottom: 40px; }
.faq-h em { font-style: italic; color: var(--coral); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; font-size: 16px; font-weight: 500; gap: 16px; transition: color 0.2s; color: var(--text-dark); }
.faq-q:hover { color: var(--coral); }
.ftog { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-mid); transition: all 0.3s; flex-shrink: 0; }
.faq-item.open .ftog { background: var(--coral); border-color: var(--coral); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 24px; font-size: 16px; color: var(--text-mid); line-height: 1.85; }
.faq-item.open .faq-a { max-height: 320px; }

/* FOOTER */
footer { background: var(--graphite); color: rgba(255,255,255,0.5); padding: 56px 72px 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 32px; }
.flogo img { height: 36px; width: auto; filter: brightness(10); opacity: 0.75; margin-bottom: 12px; display: block; }
.ftagline { font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }
.flinks { display: flex; flex-direction: column; gap: 12px; }
.flinks a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.flinks a:hover { color: var(--coral); }
.fbottom { font-size: 12px; text-align: center; }

/* STICKY */
.sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--graphite); border-top: 2px solid var(--coral); padding: 14px 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.sticky.show { transform: translateY(0); }
.stitle { font-size: 14px; color: white; font-weight: 500; }
.ssub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.sacts { display: flex; gap: 10px; flex-shrink: 0; }
.so { padding: 10px 20px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.7); font-family: var(--fb); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border-radius: 2px; text-decoration: none; display: inline-flex; align-items: center; }
.so:hover { border-color: var(--coral-25); color: var(--coral); }
.sf { padding: 10px 22px; background: var(--coral); border: none; color: white; font-family: var(--fb); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border-radius: 2px; text-decoration: none; display: inline-flex; align-items: center; }
.sf:hover { background: #d4603e; }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:0.1s} .d2{transition-delay:0.2s} .d3{transition-delay:0.3s} .d4{transition-delay:0.4s}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 320px; }
  .hero-left { padding: 44px 24px 56px; }
  .hero-card { left: 12px; bottom: 20px; }
  .sw, .sw-alt { padding: 68px 24px; }
  .sol-section { padding: 68px 24px; }
  .villain-grid { grid-template-columns: 1fr; }
  .vi:nth-child(even), .vi:nth-child(odd) { padding-left: 0; padding-right: 0; border-left: none; }
  .prog-grid { grid-template-columns: 1fr; }
  .testi-featured { grid-template-columns: 1fr; }
  .tf-left { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
  .tf-right { flex-direction: row; justify-content: space-around; padding: 28px; }
  .tg { grid-template-columns: 1fr; }
  .tc { padding: 32px 24px; }
  .days-d { display: none; }
  .days-m { display: block; }
  .inside-grid { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 64px 24px; }
  .form-section { padding: 64px 24px 80px; }
  .faq-section { padding: 68px 24px 80px; }
  .sol-stats { grid-template-columns: 1fr 1fr; }
  .ss { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ss:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .ss:nth-child(3), .ss:nth-child(4) { border-bottom: none; }
  .disclaimer { padding: 24px 20px; }
  footer { padding: 44px 24px 32px; }
  .footer-top { flex-direction: column; }
  .sticky { padding: 12px 20px; }
  .hero-proof { gap: 20px; }
}
