/* ============================================================
   Energy Help Support — Main Stylesheet
   energyhelpsupport.com
   ============================================================ */

:root{
  --ink:        #0b1424;
  --ink-2:      #101d33;
  --ink-3:      #182a47;
  --paper:      #f7f5f0;
  --card:       #ffffff;
  --amber:      #ffb224;
  --amber-2:    #f59e0b;
  --amber-soft: #fff4dd;
  --text:       #243040;
  --muted:      #5f6c7f;
  --line:       #e6e1d6;
  --line-dark:  rgba(255,255,255,.14);
  --white:      #ffffff;
  --green:      #1e7f4f;
  --red:        #b3372b;
  --shadow-sm:  0 1px 2px rgba(11,20,36,.05), 0 4px 14px rgba(11,20,36,.06);
  --shadow-md:  0 8px 28px rgba(11,20,36,.12);
  --shadow-lg:  0 20px 55px rgba(11,20,36,.20);
  --radius:     16px;
  --font-head:  'Sora', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body:  'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html{
  scroll-behavior:smooth;
  scroll-padding-top:96px;
  -webkit-text-size-adjust:100%;
}

body{
  font-family:var(--font-body);
  font-size:16.5px;
  line-height:1.65;
  color:var(--text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}

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

h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--ink);
  line-height:1.15;
  letter-spacing:-0.02em;
  font-weight:700;
}

::selection{ background:var(--amber); color:var(--ink); }

:focus-visible{
  outline:2px solid var(--amber-2);
  outline-offset:3px;
  border-radius:4px;
}

.skip-link{
  position:absolute; left:-999px; top:0; z-index:2000;
  background:var(--ink); color:#fff; padding:10px 18px; border-radius:0 0 10px 0;
}
.skip-link:focus{ left:0; }

.container{
  width:min(1160px, 92%);
  margin-inline:auto;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-head); font-weight:600; font-size:15.5px;
  padding:14px 26px; border-radius:12px;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; }

.btn-primary{
  background:var(--amber); color:var(--ink);
  box-shadow:0 10px 24px rgba(245,158,11,.32);
}
.btn-primary:hover{
  background:#ffc24a; transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(245,158,11,.42);
}

.btn-dark{
  background:var(--ink); color:#fff;
  box-shadow:var(--shadow-sm);
}
.btn-dark:hover{ background:var(--ink-3); transform:translateY(-2px); box-shadow:var(--shadow-md); }

.btn-ghost{
  background:transparent; color:var(--ink);
  border:1.5px solid #cfc8b8;
}
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }

.btn-light{
  background:transparent; color:#fff; border:1.5px solid var(--line-dark);
}
.btn-light:hover{ background:rgba(255,255,255,.08); transform:translateY(-2px); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head);
  font-size:12.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--amber-2);
}
.eyebrow::before{
  content:""; width:26px; height:2px; background:var(--amber); border-radius:2px;
}

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{
  font-size:clamp(1.85rem, 3.4vw, 2.5rem);
  margin:14px 0 14px;
}
.section-head p{ color:var(--muted); font-size:17px; }

section{ position:relative; }

/* ---------- Top bar ---------- */
.topbar{
  background:var(--ink);
  color:rgba(255,255,255,.72);
  font-size:13px;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:9px 0;
}
.topbar a{ color:rgba(255,255,255,.72); transition:color .2s; }
.topbar a:hover{ color:var(--amber); }
.topbar__item{ display:inline-flex; align-items:center; gap:7px; }
.topbar__item svg{ width:14px; height:14px; color:var(--amber); flex:none; }
.topbar__group{ display:flex; gap:22px; align-items:center; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:900;
  background:rgba(247,245,240,.86);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled{
  background:rgba(255,255,255,.92);
  border-color:var(--line);
  box-shadow:0 6px 24px rgba(11,20,36,.08);
}

.nav-wrap{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:16px 0;
}

.logo{ display:inline-flex; align-items:center; gap:11px; }
.logo__mark{
  width:42px; height:42px; border-radius:11px;
  background:var(--ink);
  display:grid; place-items:center;
  box-shadow:0 6px 16px rgba(11,20,36,.25);
  transition:transform .3s ease;
}
.logo:hover .logo__mark{ transform:rotate(-6deg) scale(1.04); }
.logo__mark svg{ width:22px; height:22px; color:var(--amber); }
.logo__text{
  font-family:var(--font-head);
  font-weight:800; font-size:19px; letter-spacing:-0.02em; color:var(--ink);
  line-height:1.05;
}
.logo__text em{ font-style:normal; color:var(--amber-2); }

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-size:15px; font-weight:500; color:#3d4a5c;
  position:relative; padding:6px 0;
  transition:color .2s;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0;
  width:100%; height:2px; background:var(--amber);
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s ease;
}
.main-nav a:hover{ color:var(--ink); }
.main-nav a:hover::after{ transform:scaleX(1); }

.header-cta{ padding:11px 20px; font-size:14.5px; }

/* hamburger */
.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:10px;
  border:1.5px solid var(--line);
  background:#fff;
  position:relative; z-index:960;
}
.nav-toggle span{
  display:block; width:20px; height:2px; background:var(--ink);
  margin:5px auto; border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* mobile nav panel */
.mobile-nav{
  position:fixed; top:0; right:0; bottom:0; z-index:950;
  width:min(320px, 85%);
  background:var(--ink);
  padding:96px 30px 40px;
  transform:translateX(102%);
  transition:transform .38s cubic-bezier(.22,1,.36,1);
  display:flex; flex-direction:column; gap:6px;
}
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav a{
  color:#dfe7f2; font-size:18px; font-weight:500;
  padding:12px 4px; border-bottom:1px solid rgba(255,255,255,.08);
  transition:color .2s, padding-left .2s;
}
.mobile-nav a:hover{ color:var(--amber); padding-left:10px; }
.mobile-nav .btn{ margin-top:22px; }
.mobile-nav__contact{ margin-top:auto; color:rgba(255,255,255,.55); font-size:14px; line-height:1.9; }
.mobile-nav__contact a{ display:block; border:0; font-size:15px; color:rgba(255,255,255,.75); }
.mobile-nav__contact a:hover{ color:var(--amber); padding-left:0; }

.nav-overlay{
  position:fixed; inset:0; z-index:940;
  background:rgba(11,20,36,.55);
  opacity:0; pointer-events:none;
  transition:opacity .35s ease;
}
.nav-overlay.show{ opacity:1; pointer-events:auto; }

/* ---------- Hero ---------- */
.hero{
  padding:76px 0 96px;
  background:
    radial-gradient(900px 480px at 88% -12%, rgba(255,178,36,.16), transparent 62%),
    radial-gradient(680px 460px at -8% 112%, rgba(16,29,51,.09), transparent 60%),
    var(--paper);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(11,20,36,.055) 1px, transparent 1.4px);
  background-size:26px 26px;
  -webkit-mask-image:radial-gradient(720px 520px at 78% 30%, #000 0%, transparent 72%);
  mask-image:radial-gradient(720px 520px at 78% 30%, #000 0%, transparent 72%);
  pointer-events:none;
}

.hero__grid{
  position:relative;
  display:grid; grid-template-columns:1.04fr .96fr;
  gap:56px; align-items:center;
}

.hero-badge{
  display:inline-flex; align-items:center; gap:9px;
  background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:8px 16px 8px 12px;
  font-size:13.5px; font-weight:600; color:var(--ink);
  box-shadow:var(--shadow-sm);
  margin-bottom:26px;
}
.hero-badge .dot{
  width:26px; height:26px; border-radius:50%;
  background:var(--amber-soft);
  display:grid; place-items:center;
}
.hero-badge .dot svg{ width:14px; height:14px; color:var(--amber-2); }

.hero h1{
  font-size:clamp(2.35rem, 4.9vw, 3.55rem);
  font-weight:800;
  margin-bottom:22px;
}
.hero h1 .hl{
  position:relative; white-space:nowrap;
}
.hero h1 .hl::after{
  content:"";
  position:absolute; left:-2px; right:-2px; bottom:6px;
  height:12px; background:var(--amber);
  border-radius:4px; z-index:-1;
  opacity:.55;
}

.hero__sub{
  color:var(--muted); font-size:17.5px; max-width:520px;
  margin-bottom:34px;
}
.hero__sub strong{ color:var(--ink); font-weight:600; }

.hero__ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:26px; }

.hero__micro{
  display:flex; gap:20px; flex-wrap:wrap;
  font-size:13.5px; color:var(--muted);
}
.hero__micro span{ display:inline-flex; align-items:center; gap:7px; }
.hero__micro svg{ width:15px; height:15px; color:var(--green); flex:none; }

/* hero animation */
@keyframes rise{
  from{ opacity:0; transform:translateY(28px); }
  to  { opacity:1; transform:none; }
}
.hero-copy > *{
  animation:rise .85s cubic-bezier(.22,1,.36,1) both;
}
.hero-copy > *:nth-child(1){ animation-delay:.05s; }
.hero-copy > *:nth-child(2){ animation-delay:.14s; }
.hero-copy > *:nth-child(3){ animation-delay:.23s; }
.hero-copy > *:nth-child(4){ animation-delay:.32s; }
.hero-copy > *:nth-child(5){ animation-delay:.41s; }
.hero-visual{ animation:rise 1s .3s cubic-bezier(.22,1,.36,1) both; }

/* hero visual card */
.hero-visual{ position:relative; }

.viz{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow-lg);
  padding:24px 24px 20px;
}
.viz__head{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:16px; border-bottom:1px solid var(--line);
  margin-bottom:16px;
}
.viz__title{ display:flex; align-items:center; gap:11px; }
.viz__title .ic{
  width:38px; height:38px; border-radius:10px;
  background:var(--ink); display:grid; place-items:center;
}
.viz__title .ic svg{ width:19px; height:19px; color:var(--amber); }
.viz__title h3{ font-size:15.5px; }
.viz__title small{ display:block; font-family:var(--font-body); font-weight:400; font-size:12.5px; color:var(--muted); }
.viz__tag{
  font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--amber-2); background:var(--amber-soft);
  padding:6px 11px; border-radius:999px;
}

.viz__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; font-size:14.5px;
}
.viz__row .lbl{ color:var(--muted); display:flex; align-items:center; gap:9px; }
.viz__row .lbl .swatch{ width:10px; height:10px; border-radius:3px; }
.viz__row strong{ font-family:var(--font-head); font-size:15px; color:var(--ink); }
.viz__row.dim strong{ text-decoration:line-through; text-decoration-color:#c2c9d4; text-decoration-thickness:1.5px; color:var(--muted); }

.viz__bars{
  display:flex; align-items:flex-end; gap:9px;
  height:86px; padding:16px 4px 6px;
  border-bottom:1px dashed var(--line);
  margin:10px 0 14px;
}
.viz__bars span{
  flex:1; border-radius:5px 5px 3px 3px;
  background:#dbe2ec;
  height:var(--h);
  animation:growbar 1.1s .55s cubic-bezier(.22,1,.36,1) both;
}
.viz__bars span:last-child{ background:var(--amber); }
.viz__bars span:nth-child(2){ animation-delay:.62s; }
.viz__bars span:nth-child(3){ animation-delay:.69s; }
.viz__bars span:nth-child(4){ animation-delay:.76s; }
.viz__bars span:nth-child(5){ animation-delay:.83s; }
.viz__bars span:nth-child(6){ animation-delay:.90s; }
.viz__bars span:nth-child(7){ animation-delay:.97s; }
@keyframes growbar{ from{ height:0; } }

.viz__savings{
  display:flex; align-items:center; gap:12px;
  background:linear-gradient(120deg, #fff8ea, #fff2d2);
  border:1px solid #f2ddb0;
  border-radius:12px; padding:12px 14px;
}
.viz__savings .amt{
  font-family:var(--font-head); font-weight:700; font-size:19px; color:var(--ink);
  white-space:nowrap;
}
.viz__savings small{ font-size:12.5px; color:var(--muted); line-height:1.45; }

.viz__foot{
  margin-top:12px; font-size:11.5px; color:#9aa4b2;
}

/* floating chips */
.chip{
  position:absolute; z-index:2;
  display:flex; align-items:center; gap:10px;
  background:#fff; border:1px solid var(--line);
  border-radius:13px; padding:11px 15px;
  box-shadow:var(--shadow-md);
  font-size:13px; font-weight:600; color:var(--ink);
  animation:float 6s ease-in-out infinite;
}
.chip .ic{
  width:30px; height:30px; border-radius:9px; flex:none;
  display:grid; place-items:center;
}
.chip .ic svg{ width:15px; height:15px; }
.chip small{ display:block; font-weight:400; font-size:11.5px; color:var(--muted); }
.chip--a{ top:-26px; left:-30px; }
.chip--a .ic{ background:var(--amber-soft); color:var(--amber-2); }
.chip--b{ bottom:-24px; right:-22px; animation-duration:7.2s; animation-delay:.9s; }
.chip--b .ic{ background:#e7f4ec; color:var(--green); }

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-11px); }
}

/* pulse rings */
.ring{
  position:absolute; z-index:0;
  border:1.5px solid rgba(245,158,11,.4);
  border-radius:50%;
  animation:ring 3.2s ease-out infinite;
  pointer-events:none;
}
.ring--1{ width:220px; height:220px; right:-70px; top:-60px; }
.ring--2{ width:300px; height:300px; right:-110px; top:-100px; animation-delay:1.1s; }
@keyframes ring{
  0%{ transform:scale(.82); opacity:.55; }
  75%{ transform:scale(1.12); opacity:0; }
  100%{ opacity:0; }
}

/* ---------- Trust band ---------- */
.trust-band{ background:var(--ink); color:#dfe7f2; }
.trust-band__inner{
  display:grid; grid-template-columns:repeat(3, 1fr);
}
.trust-item{
  display:flex; align-items:flex-start; gap:15px;
  padding:30px 26px;
}
.trust-item + .trust-item{ border-left:1px solid var(--line-dark); }
.trust-item .ic{
  width:44px; height:44px; border-radius:12px; flex:none;
  background:rgba(255,178,36,.12);
  display:grid; place-items:center;
}
.trust-item .ic svg{ width:21px; height:21px; color:var(--amber); }
.trust-item h3{
  color:#fff; font-size:15.5px; margin-bottom:5px; letter-spacing:-0.01em;
}
.trust-item p{ font-size:13.5px; color:#9fb0c7; line-height:1.55; }

/* ---------- Services ---------- */
.services{ background:#fff; padding:96px 0; }

.services-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:22px;
}
.svc-card{
  position:relative;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 28px 26px;
  transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
  overflow:hidden;
}
.svc-card::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--amber);
  transform:scaleX(0); transform-origin:left;
  transition:transform .45s ease;
}
.svc-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-md);
  border-color:#d8d1c0;
  background:#fff;
}
.svc-card:hover::before{ transform:scaleX(1); }

.svc-card__top{
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:20px;
}
.svc-icon{
  width:52px; height:52px; border-radius:13px;
  background:var(--amber-soft);
  display:grid; place-items:center;
  transition:transform .35s ease, background .35s ease;
}
.svc-icon svg{ width:25px; height:25px; color:var(--amber-2); }
.svc-card:hover .svc-icon{ transform:scale(1.08) rotate(-4deg); background:var(--ink); }
.svc-card:hover .svc-icon svg{ color:var(--amber); }
.svc-num{
  font-family:var(--font-head); font-weight:700; font-size:14px;
  color:#c3bcc9; letter-spacing:.05em;
}

.svc-card h3{ font-size:18.5px; margin-bottom:10px; }
.svc-card p{ font-size:14.8px; color:var(--muted); line-height:1.65; margin-bottom:18px; }
.svc-link{
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--font-head); font-size:14px; font-weight:600; color:var(--ink);
}
.svc-link svg{ width:15px; height:15px; transition:transform .3s ease; }
.svc-link:hover{ color:var(--amber-2); }
.svc-link:hover svg{ transform:translateX(4px); }

/* ---------- Process ---------- */
.process{ background:var(--paper); padding:96px 0; }

.steps{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:26px;
  counter-reset:step;
}
.step{
  position:relative;
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); padding:34px 28px 30px;
}
.step::before{
  content:"";
  position:absolute; top:52px; right:-26px;
  width:26px; border-top:2px dashed #cfc8b8;
}
.step:last-child::before{ display:none; }

.step__num{
  width:52px; height:52px; border-radius:50%;
  background:var(--ink); color:var(--amber);
  font-family:var(--font-head); font-weight:700; font-size:19px;
  display:grid; place-items:center;
  margin-bottom:20px;
  box-shadow:0 8px 18px rgba(11,20,36,.22);
}
.step h3{ font-size:18px; margin-bottom:9px; }
.step p{ font-size:14.8px; color:var(--muted); }

/* ---------- About ---------- */
.about{ background:#fff; padding:96px 0; }
.about__grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:start;
}
.about__copy p{ color:var(--muted); margin-bottom:18px; font-size:16.5px; }
.about__copy p strong{ color:var(--ink); }
.about__note{
  margin-top:26px;
  display:flex; gap:13px; align-items:flex-start;
  background:var(--amber-soft);
  border:1px solid #f0dcae;
  border-left:4px solid var(--amber);
  border-radius:12px;
  padding:16px 18px;
  font-size:14.5px; color:#6b5a2e;
}
.about__note svg{ width:20px; height:20px; color:var(--amber-2); flex:none; margin-top:2px; }

.who-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px 28px;
  box-shadow:var(--shadow-sm);
}
.who-card h3{
  font-size:16px; margin-bottom:20px;
  padding-bottom:14px; border-bottom:1px solid var(--line);
}
.who-list{ display:grid; grid-template-columns:1fr 1fr; gap:8px 22px; }
.who-list li{
  display:flex; gap:10px; align-items:flex-start;
  font-size:14px; line-height:1.5;
  padding:9px 0;
  color:var(--text);
}
.who-list li .ic{
  width:21px; height:21px; border-radius:50%; flex:none;
  display:grid; place-items:center; margin-top:2px;
}
.who-list li .ic svg{ width:11px; height:11px; }
.who-list .yes .ic{ background:var(--amber); color:var(--ink); }
.who-list .no .ic{ background:#e4e7ec; color:#8a95a5; }
.who-list .no{ color:var(--muted); }

/* ---------- FAQ ---------- */
.faq{ background:var(--paper); padding:96px 0; }
.faq__list{ max-width:780px; margin:0 auto; }
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
  transition:box-shadow .3s ease, border-color .3s ease;
}
.faq-item.open{ box-shadow:var(--shadow-sm); border-color:#d8d1c0; }
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  text-align:left;
  padding:20px 24px;
  font-family:var(--font-head); font-weight:600; font-size:16px; color:var(--ink);
}
.faq-q .plus{
  position:relative; width:30px; height:30px; border-radius:50%; flex:none;
  background:var(--amber-soft);
  transition:transform .35s ease, background .35s ease;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; top:50%; left:50%;
  background:var(--amber-2); border-radius:2px;
  transform:translate(-50%,-50%);
  transition:background .3s;
}
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; }
.faq-item.open .plus{ transform:rotate(135deg); background:var(--ink); }
.faq-item.open .plus::before, .faq-item.open .plus::after{ background:var(--amber); }
.faq-a{
  max-height:0; overflow:hidden;
  transition:max-height .45s cubic-bezier(.22,1,.36,1);
}
.faq-a p{
  padding:0 24px 22px;
  font-size:15px; color:var(--muted); line-height:1.7;
}

/* ---------- CTA band ---------- */
.cta-band{
  background:
    radial-gradient(720px 380px at 82% 18%, rgba(255,178,36,.18), transparent 60%),
    var(--ink);
  color:#fff;
  padding:84px 0;
}
.cta-band__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap;
}
.cta-band h2{ color:#fff; font-size:clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom:12px; }
.cta-band p{ color:#9fb0c7; max-width:480px; font-size:16.5px; }
.cta-band__actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Contact ---------- */
.contact{ background:#fff; padding:96px 0 110px; }
.contact__grid{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:56px;
  align-items:start;
}

.info-cards{ display:grid; gap:14px; }
.info-card{
  display:flex; gap:16px; align-items:flex-start;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px 22px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.info-card:hover{ transform:translateX(6px); box-shadow:var(--shadow-sm); }
.info-card .ic{
  width:46px; height:46px; border-radius:12px; flex:none;
  background:var(--ink);
  display:grid; place-items:center;
}
.info-card .ic svg{ width:20px; height:20px; color:var(--amber); }
.info-card h4{ font-size:14.5px; margin-bottom:4px; letter-spacing:0; }
.info-card a, .info-card span.val{
  font-size:15px; color:var(--muted); font-weight:500;
  display:inline-block;
}
.info-card a:hover{ color:var(--amber-2); }
.info-card small{ display:block; font-size:12.5px; color:#98a2b0; margin-top:3px; }

.form-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:20px;
  padding:36px 34px;
  box-shadow:var(--shadow-sm);
}
.form-card h3{ font-size:20px; margin-bottom:6px; }
.form-card > p{ font-size:14.5px; color:var(--muted); margin-bottom:26px; }

.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:16px; }
.field label{
  display:block; font-size:13px; font-weight:600; color:var(--ink);
  margin-bottom:7px;
}
.field input, .field select, .field textarea{
  width:100%;
  background:#fff;
  border:1.5px solid #ddd6c7;
  border-radius:10px;
  padding:12.5px 14px;
  font-size:15px;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--amber-2);
  box-shadow:0 0 0 4px rgba(245,158,11,.14);
}
.field select{
  appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235f6c7f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:40px;
}
.hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.form-status{
  display:none;
  margin-top:14px;
  padding:13px 16px;
  border-radius:10px;
  font-size:14px;
  line-height:1.5;
}
.form-status.ok{
  display:block;
  background:#e7f4ec; color:#14532d;
  border:1px solid #bfe3cd;
}
.form-status.err{
  display:block;
  background:#fbeae8; color:#7c2d24;
  border:1px solid #f0c4be;
}

.form-fine{
  margin-top:14px;
  font-size:12.5px; color:#98a2b0;
  display:flex; align-items:center; gap:8px;
}
.form-fine svg{ width:14px; height:14px; color:var(--green); flex:none; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:#9fb0c7; }
.footer__grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.3fr;
  gap:44px;
  padding:70px 0 50px;
}
.footer .logo__text{ color:#fff; }
.footer__about p{ font-size:14px; line-height:1.7; margin-top:18px; }
.footer h4{
  color:#fff; font-size:13px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:20px;
}
.footer__links li{ margin-bottom:11px; }
.footer__links a{
  font-size:14.5px; color:#9fb0c7;
  transition:color .2s, padding-left .25s;
}
.footer__links a:hover{ color:var(--amber); padding-left:5px; }
.footer__contact li{
  display:flex; gap:11px; font-size:14px; line-height:1.6;
  margin-bottom:13px;
}
.footer__contact svg{ width:16px; height:16px; color:var(--amber); flex:none; margin-top:4px; }
.footer__contact a:hover{ color:var(--amber); }

.footer__disclaimer{
  border-top:1px solid var(--line-dark);
  padding:22px 0;
  font-size:12.5px; line-height:1.7; color:#7d8ea6;
}
.footer__bottom{
  border-top:1px solid var(--line-dark);
  padding:20px 0;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  font-size:13px;
}
.footer__legal{ display:flex; gap:24px; }
.footer__legal a:hover{ color:var(--amber); }

/* ---------- Sticky call bar (mobile) ---------- */
.call-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:990;
  display:none;
  align-items:center; justify-content:center; gap:14px;
  padding:13px 20px calc(13px + env(safe-area-inset-bottom));
  background:linear-gradient(120deg, var(--amber), #ffc24a);
  box-shadow:0 -8px 28px rgba(11,20,36,.22);
}
.call-bar .ic{
  width:42px; height:42px; border-radius:50%; flex:none;
  background:var(--ink);
  display:grid; place-items:center;
  animation:callpulse 2s ease-in-out infinite;
}
.call-bar .ic svg{ width:20px; height:20px; color:var(--amber); }
@keyframes callpulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(11,20,36,.35); }
  50%{ box-shadow:0 0 0 9px rgba(11,20,36,0); }
}
.call-bar__text{ line-height:1.25; }
.call-bar__text small{
  display:block;
  font-size:10.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(11,20,36,.62);
}
.call-bar__text strong{
  font-family:var(--font-head);
  font-size:20px; font-weight:800; color:var(--ink);
  letter-spacing:.01em;
}
.call-bar:active{ transform:scale(.985); }

/* ---------- Legal pages ---------- */
.legal{
  background:var(--paper);
  padding:70px 0 100px;
}
.legal__wrap{ max-width:840px; }
.legal h1{ font-size:clamp(2rem, 4.5vw, 2.8rem); margin:16px 0 10px; }
.legal__meta{ font-size:13.5px; color:var(--muted); margin-bottom:34px; }
.legal__meta strong{ color:var(--ink); }

.toc{
  background:#fff; border:1px solid var(--line);
  border-radius:14px; padding:24px 26px;
  margin-bottom:48px;
}
.toc h2{ font-size:15px; margin-bottom:14px; letter-spacing:.02em; }
.toc ol{
  columns:2; column-gap:40px;
  list-style:decimal;
  padding-left:20px;
}
.toc li{ margin-bottom:8px; font-size:14.5px; break-inside:avoid; }
.toc a{ color:var(--muted); transition:color .2s; }
.toc a:hover{ color:var(--amber-2); }

.legal section{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:32px 34px;
  margin-bottom:18px;
}
.legal h2{
  font-size:19px; margin-bottom:14px;
  display:flex; align-items:baseline; gap:12px;
}
.legal h2 .n{
  font-size:13px; font-weight:700; color:var(--amber-2);
  font-family:var(--font-head);
}
.legal p{ font-size:15px; color:#415064; margin-bottom:12px; line-height:1.75; }
.legal p:last-child{ margin-bottom:0; }
.legal ul{ padding-left:22px; list-style:disc; margin-bottom:12px; }
.legal li{ font-size:15px; color:#415064; margin-bottom:7px; line-height:1.65; }

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.in{ opacity:1; transform:none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px){
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:38px; }
  .hero__grid{ gap:40px; }
}

@media (max-width: 899px){
  .topbar{ display:none; }
  .main-nav, .header-cta{ display:none; }
  .nav-toggle{ display:block; }

  body{ padding-bottom:74px; }
  .call-bar{ display:flex; }

  .hero{ padding:52px 0 84px; }
  .hero__grid{ grid-template-columns:1fr; gap:56px; }
  .hero-visual{ max-width:520px; }
  .chip--a{ left:-8px; top:-22px; }
  .chip--b{ right:-8px; }
  .ring--1{ right:-50px; }
  .ring--2{ right:-80px; }

  .trust-band__inner{ grid-template-columns:1fr; }
  .trust-item + .trust-item{ border-left:0; border-top:1px solid var(--line-dark); }
  .trust-item{ padding:24px 8px; }

  .services, .process, .about, .faq, .contact{ padding:72px 0; }
  .contact{ padding-bottom:80px; }

  .steps{ grid-template-columns:1fr; gap:18px; }
  .step::before{ display:none; }

  .about__grid{ grid-template-columns:1fr; gap:44px; }
  .contact__grid{ grid-template-columns:1fr; gap:44px; }

  .cta-band__inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 620px){
  body{ font-size:15.5px; }
  .services-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; gap:0; }
  .who-list{ grid-template-columns:1fr; }
  .toc ol{ columns:1; }
  .legal section{ padding:26px 22px; }
  .form-card{ padding:28px 22px; }
  .hero__ctas .btn{ width:100%; }
  .footer__grid{ grid-template-columns:1fr; gap:34px; padding:54px 0 40px; }
  .footer__bottom{ flex-direction:column; align-items:flex-start; }
  .chip{ font-size:12px; padding:9px 12px; }
  .viz{ padding:20px 18px 16px; }
}
