/* ============================================
   HOME SERVICE SAVER – DESIGN SYSTEM
   Palette: Deep Navy · Warm Amber · Cyan Teal
   Type: Sora (display) + Inter (body)
   ============================================ */

:root {
  --navy-dark: #091630;
  --navy:      #0F2248;
  --amber:     #F59E0B;
  --amber-dk:  #D97706;
  --teal:      #06B6D4;
  --teal-dk:   #0891B2;
  --white:     #FFFFFF;
  --bg-light:  #F8FAFC;
  --text-dark: #0F172A;
  --text-body: #374151;
  --text-muted:#6B7280;
  --border:    #E2E8F0;
  --shadow-sm: 0 1px 4px rgba(9,22,48,.07);
  --shadow:    0 4px 18px rgba(9,22,48,.10);
  --shadow-lg: 0 12px 40px rgba(9,22,48,.16);
  --r-sm: 6px; --r: 10px; --r-lg: 16px; --r-xl: 22px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 1rem; line-height: 1.6; color: var(--text-body); background: var(--white); }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAVIGATION ── */
.site-nav { position: sticky; top: 0; z-index: 200; background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,.28); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }

.nav-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.25rem; color: #fff; text-decoration: none; letter-spacing: -.5px; flex-shrink: 0; }
.nav-logo .accent { color: var(--amber); }

.nav-links { display: flex; list-style: none; gap: 26px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .18s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

.nav-cta { display: flex; align-items: center; gap: 7px; background: var(--amber); color: var(--navy-dark); font-family: 'Sora', sans-serif; font-weight: 700; font-size: .875rem; padding: 9px 18px; border-radius: var(--r-sm); text-decoration: none; transition: background .18s, transform .18s; flex-shrink: 0; white-space: nowrap; }
.nav-cta:hover { background: var(--amber-dk); transform: translateY(-1px); }
.nav-cta svg { width: 15px; height: 15px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.06); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .95rem; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.04); transition: background .18s, color .18s; }
.mobile-menu a:last-child { color: var(--amber); font-weight: 700; border: none; }
.mobile-menu a:hover { background: rgba(255,255,255,.04); color: var(--amber); }

/* ── HERO ── */
.hero { background: linear-gradient(145deg, var(--navy-dark) 0%, #0d1e40 55%, var(--navy) 100%); padding: 72px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 14% 44%, rgba(6,182,212,.1) 0%, transparent 52%), radial-gradient(ellipse at 84% 18%, rgba(245,158,11,.08) 0%, transparent 44%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,.12); color: var(--amber); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(245,158,11,.25); margin-bottom: 22px; }

.hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 800; color: #fff; line-height: 1.13; letter-spacing: -.03em; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(130deg, var(--amber) 0%, #fbbf24 45%, var(--teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-desc { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.75; max-width: 460px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.4); }
.hero-trust svg { width: 15px; height: 15px; stroke: var(--teal); flex-shrink: 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: var(--r); font-weight: 600; font-size: .95rem; font-family: 'Inter', sans-serif; text-decoration: none; transition: all .2s ease; cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-amber { background: var(--amber); color: var(--navy-dark); border-color: var(--amber); font-weight: 700; }
.btn-amber:hover { background: var(--amber-dk); border-color: var(--amber-dk); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,158,11,.38); }

.btn-ghost { background: transparent; color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(9,22,48,.28); }

/* ── HERO VISUAL ── */
.hero-visual { display: flex; justify-content: center; }
.hero-house { width: 100%; max-width: 420px; animation: floatY 7s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ── PROVIDER STRIP ── */
.provider-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 18px 0; }
.strip-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.strip-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); flex-shrink: 0; white-space: nowrap; }
.strip-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.strip-logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: #94A3B8; letter-spacing: -.4px; transition: color .18s; cursor: default; }
.strip-logo:hover { color: var(--navy); }
.strip-sep { width: 1px; height: 14px; background: var(--border); }

/* ── SECTION SHARED ── */
.section      { padding: 80px 0; }
.section-alt  { background: var(--bg-light); }
.section-dark { background: var(--navy); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dk); margin-bottom: 10px; }
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(1.75rem, 2.8vw, 2.4rem); font-weight: 800; color: var(--text-dark); letter-spacing: -.025em; line-height: 1.18; margin-bottom: 12px; }
.section-sub   { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.section-title-light { color: #fff; }
.section-title-light .amber { color: var(--amber); }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 36px 28px; transition: box-shadow .25s, transform .25s, border-color .25s; }
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--teal); }
.step-num { font-family: 'Sora', sans-serif; font-size: 4.5rem; font-weight: 800; color: rgba(6,182,212,.1); line-height: 1; margin-bottom: 18px; letter-spacing: -4px; }
.step-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy), #1a3a70); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 4px 14px rgba(9,22,48,.2); }
.step-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step-title { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-desc  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px 22px; transition: all .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.svc-icon { width: 46px; height: 46px; background: var(--navy); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; }
.svc-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ── WHY US (dark) ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-lead { color: rgba(255,255,255,.62); font-size: 1rem; line-height: 1.78; margin-bottom: 30px; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.82); font-size: .9rem; line-height: 1.5; }
.check-circle { flex-shrink: 0; width: 22px; height: 22px; background: rgba(245,158,11,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-circle svg { width: 11px; height: 11px; stroke: var(--amber); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 28px 22px; transition: background .22s; }
.stat-card:hover { background: rgba(255,255,255,.08); }
.stat-num { font-family: 'Sora', sans-serif; font-size: 2.25rem; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 7px; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.45; }

/* ── CTA BAND ── */
.cta-band { background: var(--amber); padding: 64px 0; }
.cta-band-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-band h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--navy-dark); letter-spacing: -.02em; margin-bottom: 6px; }
.cta-band-sub { color: rgba(9,22,48,.6); margin-bottom: 26px; font-size: 1rem; }
.cta-phone { display: inline-flex; align-items: center; gap: 12px; font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--navy-dark); text-decoration: none; letter-spacing: -.03em; transition: color .18s; }
.cta-phone:hover { color: var(--navy); }
.cta-phone svg { width: 36px; height: 36px; stroke: var(--navy-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cta-hours { margin-top: 10px; font-size: .82rem; color: rgba(9,22,48,.52); }
.cta-or { margin: 18px 0 14px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(9,22,48,.4); }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; text-decoration: none; letter-spacing: -.5px; display: inline-block; margin-bottom: 12px; }
.footer-logo .accent { color: var(--amber); }
.footer-blurb { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.72; max-width: 250px; margin-bottom: 18px; }
.footer-tel { display: inline-flex; align-items: center; gap: 7px; color: var(--amber); text-decoration: none; font-weight: 700; font-size: .9rem; transition: color .18s; }
.footer-tel:hover { color: var(--amber-dk); }
.footer-tel svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-head { font-family: 'Sora', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { color: rgba(255,255,255,.58); text-decoration: none; font-size: .875rem; transition: color .18s; }
.footer-nav a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 20px 0; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 14px; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.32); text-decoration: none; transition: color .18s; }
.footer-legal a:hover { color: rgba(255,255,255,.58); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 110%, rgba(6,182,212,.1) 0%, transparent 55%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .75rem; color: rgba(255,255,255,.38); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.46); text-decoration: none; transition: color .18s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { color: rgba(255,255,255,.18); }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: #fff; letter-spacing: -.025em; margin-bottom: 13px; }
.page-hero p  { color: rgba(255,255,255,.62); font-size: 1.05rem; max-width: 520px; margin: 0 auto; line-height: 1.72; }

/* ── ABOUT PAGE ── */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.about-grid:last-of-type { margin-bottom: 0; }
.about-text .section-title { text-align: left; }
.about-text p { color: var(--text-body); line-height: 1.8; margin-bottom: 14px; font-size: .975rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-visual { background: linear-gradient(145deg, var(--navy), #1b3564); border-radius: var(--r-xl); padding: 38px; }
.about-stat-row { display: flex; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.about-stat-row:first-child { padding-top: 0; }
.about-stat-row:last-child  { border-bottom: none; padding-bottom: 0; }
.astat-icon { width: 42px; height: 42px; background: rgba(245,158,11,.14); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.astat-icon svg { width: 20px; height: 20px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.astat-num   { font-family: 'Sora', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--amber); line-height: 1; }
.astat-label { font-size: .82rem; color: rgba(255,255,255,.52); margin-top: 4px; }

.values-section { padding: 0 0 80px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 0; }
.value-card { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px; }
.value-icon  { font-size: 1.7rem; margin-bottom: 13px; }
.value-title { font-family: 'Sora', sans-serif; font-size: .975rem; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; }
.value-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ── AFFILIATE PAGE ── */
.affiliate-section { padding: 80px 0; }
.aff-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.aff-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 30px; transition: all .25s; }
.aff-card:hover { border-color: var(--amber); box-shadow: 0 8px 28px rgba(245,158,11,.1); transform: translateY(-3px); }
.aff-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy), #1a3a70); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.aff-icon svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.aff-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 9px; }
.aff-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }
.aff-cta-box { background: var(--navy); border-radius: var(--r-xl); padding: 52px 44px; }
.aff-cta-box h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 10px; text-align: center; }
.aff-cta-box > p { color: rgba(255,255,255,.6); font-size: .975rem; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; text-align: center; line-height: 1.72; }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FORM PAGE ── */
.form-page { padding: 72px 0; background: var(--bg-light); min-height: calc(100vh - 120px); }
.form-wrap  { max-width: 660px; margin: 0 auto; }
.form-card  { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 48px; box-shadow: var(--shadow); }
.form-card-title { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text-dark); letter-spacing: -.02em; margin-bottom: 5px; }
.form-card-sub  { font-size: .875rem; color: var(--text-muted); margin-bottom: 34px; line-height: 1.6; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .825rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.form-label .req { color: var(--teal-dk); }

.form-control { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--text-dark); background: var(--white); outline: none; appearance: none; transition: border-color .18s, box-shadow .18s; }
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(6,182,212,.12); }
.form-control::placeholder { color: #9CA3AF; }
textarea.form-control { resize: vertical; min-height: 108px; line-height: 1.6; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 11px center; background-size: 17px; padding-right: 34px; cursor: pointer; }

.cb-group { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.cb-label { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--text-body); cursor: pointer; line-height: 1.3; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: var(--r-sm); transition: border-color .18s, background .18s; }
.cb-label:hover { border-color: var(--teal); background: rgba(6,182,212,.04); }
.cb-label input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--teal-dk); flex-shrink: 0; cursor: pointer; }
.cb-label input:checked + span { font-weight: 600; color: var(--text-dark); }

.form-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.form-submit { width: 100%; padding: 14px 24px; background: var(--navy); color: #fff; font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; border: none; border-radius: var(--r-lg); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(9,22,48,.22); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; box-shadow: none; }
.form-submit svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 13px; line-height: 1.5; }
.form-note a { color: var(--teal-dk); }

/* Success State */
.success-msg { display: none; text-align: center; padding: 36px 16px; }
.success-msg.show { display: block; }
.success-icon { width: 62px; height: 62px; background: rgba(6,182,212,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.success-icon svg { width: 30px; height: 30px; stroke: var(--teal-dk); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.success-msg h3 { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 9px; }
.success-msg p  { color: var(--text-muted); font-size: .925rem; margin-bottom: 24px; line-height: 1.6; }

/* ── ANIMATIONS ── */
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.spin { animation: spin .8s linear infinite; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1/-1; }
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .aff-cards   { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .aff-cta-box { padding: 36px 24px; }
}
@media (max-width: 640px) {
  .hero  { padding: 52px 0 60px; }
  .section { padding: 60px 0; }
  .services-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .form-card      { padding: 28px 18px; }
  .cb-group       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .cta-phone      { font-size: 1.9rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
