/* =========================================================
   plan b — Home page styles
   ========================================================= */

/* ---------------- Hero ---------------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(120px, 16vh, 200px); padding-bottom: clamp(70px, 10vw, 120px);
  background:
    radial-gradient(140% 90% at 85% -10%, #1d2a22 0%, transparent 55%),
    radial-gradient(120% 100% at 0% 110%, #20140f 0%, transparent 50%),
    var(--ink);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.hero__sun {
  position: absolute; top: -180px; right: -120px; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,178,62,.30), rgba(237,90,63,.10) 45%, transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__pill { background: rgba(255,255,255,.08); color: #E7EDE9; backdrop-filter: blur(6px); }
.hero__title { margin: 22px 0 18px; color: #fff; }
.hero__hl { position: relative; color: var(--amber); }
.hero__hl::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 8%; height: .42em; background: var(--ember); opacity: .28; border-radius: 4px; z-index: -1; transform: rotate(-1deg); }
.hero__lead { max-width: 500px; }
.hero__actions { display: flex; gap: 14px; margin: 30px 0 26px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 12px; color: var(--mist); font-size: 14.5px; font-weight: 600; }
.hero__stars { display: inline-flex; gap: 2px; color: var(--amber); font-size: 16px; }

/* live card */
.hero__panel { position: relative; }
.hero__card--live {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px); border-radius: var(--r-lg); padding: 26px; color: #fff;
  box-shadow: var(--sh-3);
}
.livehead { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--mist); }
.livedot { width: 9px; height: 9px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 0 rgba(21,160,106,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(21,160,106,.5)} 70%{box-shadow:0 0 0 10px rgba(21,160,106,0)} 100%{box-shadow:0 0 0 0 rgba(21,160,106,0)} }
.liveval { font-family: var(--display); font-size: 54px; font-weight: 800; line-height: 1; margin-top: 14px; }
.livesub { color: var(--mist); font-size: 14px; margin-bottom: 18px; }
.livebars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-bottom: 18px; }
.livebars span { flex: 1; background: linear-gradient(var(--amber), var(--ember)); border-radius: 4px; transform-origin: bottom; animation: grow 1.8s ease-in-out infinite alternate; }
@keyframes grow { from { transform: scaleY(.5); } to { transform: scaleY(1); } }
.liverow { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 14.5px; }
.liverow span { color: var(--mist); }
.liverow b { font-weight: 700; }
.hero__chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); font-weight: 700; font-size: 14px;
  padding: 11px 16px; border-radius: 100px; box-shadow: var(--sh-2);
}
.hero__chip svg { width: 18px; height: 18px; }
.hero__chip--1 { top: 6%; left: -34px; animation: float 5s ease-in-out infinite; }
.hero__chip--2 { bottom: 8%; right: -22px; animation: float 6s ease-in-out infinite .8s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.3); border-radius: 14px; z-index: 2; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 3px; background: var(--amber); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,14px)} }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { max-width: 420px; }
  .hero__chip--1 { left: auto; right: 6%; }
}

/* ---------------- Value strip ---------------- */
.strip { background: var(--ink); padding: 18px 0; }
.strip__row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.strip__item { display: inline-flex; align-items: center; gap: 11px; color: #C6D0CA; font-weight: 600; font-size: 15px; }
.strip__item svg { width: 22px; height: 22px; color: var(--amber); flex: none; }
@media (max-width: 760px) { .strip__row { gap: 14px; } .strip__item { font-size: 13.5px; } }

/* ---------------- Section heads ---------------- */
.sec-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 60px); display: flex; flex-direction: column; gap: 16px; }
.sec-head .eyebrow { align-self: flex-start; }

/* ---------------- Services grid ---------------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.svc-card { display: flex; flex-direction: column; height: 100%; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s; }
.svc-card-w { height: 100%; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.svc-card__top { position: relative; padding: 24px; display: flex; align-items: center; justify-content: space-between; }
.svc-card__ic { font-size: 34px; }
.svc-card__tag { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.svc-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card__body .muted { font-size: 15px; line-height: 1.5; flex: 1; }
.svc-card__go { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px; color: var(--ink); margin-top: 6px; }
.svc-card__go svg { width: 17px; height: 17px; transition: transform .3s; }
.svc-card:hover .svc-card__go { color: var(--ember); }
.svc-card:hover .svc-card__go svg { transform: translateX(5px); }
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------------- Stats ---------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(30px,4vw,48px) 0; }
.stat { text-align: center; }
.stat__n { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; color: var(--ink); letter-spacing: -.03em; }
.stat__l { color: var(--slate); font-weight: 600; margin-top: 8px; font-size: 15px; }
@media (max-width: 680px) { .stats { grid-template-columns: 1fr 1fr; gap: 30px 16px; } }

/* ---------------- Process ---------------- */
.proc { background: radial-gradient(120% 80% at 100% 0%, #1a2620, transparent 55%), var(--ink); }
.sec-head--light h2 { color: #fff; }
.proc__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.proc__step { padding: 28px; border-radius: var(--r-lg); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); position: relative; transition: background .3s, transform .3s; }
.proc__step:hover { background: rgba(255,255,255,.07); transform: translateY(-5px); }
.proc__n { font-family: var(--display); font-weight: 800; font-size: 40px; color: var(--amber); display: block; margin-bottom: 14px; }
.proc__step h3 { color: #fff; margin-bottom: 8px; }
.proc__step p { font-size: 15px; line-height: 1.55; }
@media (max-width: 980px) { .proc__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .proc__grid { grid-template-columns: 1fr; } }

/* ---------------- Savings teaser ---------------- */
.save-teaser { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px,5vw,70px); align-items: center; }
.save-teaser__txt { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.ticks li svg { width: 22px; height: 22px; color: #fff; background: var(--leaf); border-radius: 50%; padding: 4px; flex: none; }
.msav { padding: 30px; }
.msav__head { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--slate); margin-bottom: 24px; }
.msav__head svg { width: 20px; height: 20px; }
.msav__chart { display: flex; align-items: flex-end; gap: 20px; height: 230px; }
.msav__bar { flex: 1; border-radius: 14px 14px 0 0; position: relative; display: flex; flex-direction: column; justify-content: flex-start; padding: 16px; color: #fff; transition: height 1s cubic-bezier(.2,.8,.2,1); }
.msav__bar b { font-family: var(--display); font-size: 20px; font-weight: 800; }
.msav__cap { font-size: 13px; opacity: .85; margin-bottom: 4px; }
.msav__bar--old { height: 100%; background: linear-gradient(var(--slate), var(--ink-3)); }
.msav__bar--new { height: 38%; background: linear-gradient(var(--amber), var(--ember)); }
.msav__save { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.msav__save span { color: var(--slate); font-weight: 600; }
.msav__save strong { font-family: var(--display); font-size: 32px; font-weight: 800; color: var(--leaf); }
@media (max-width: 880px) { .save-teaser { grid-template-columns: 1fr; } }

/* ---------------- News ---------------- */
.news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.news-head h2 { margin-top: 12px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s, box-shadow .3s; cursor: pointer; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.news-card__img { height: 200px; border-radius: 0; }
.news-card__body { padding: 22px 24px 26px; }
.news-card__tag { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-card__body h3 { margin: 10px 0 16px; line-height: 1.15; }
.news-card__more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14.5px; color: var(--ember); }
.news-card__more svg { width: 16px; height: 16px; transition: transform .3s; }
.news-card:hover .news-card__more svg { transform: translate(3px,-3px); }
@media (max-width: 880px) { .news-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ---------------- CTA band ---------------- */
.cta-band { background: linear-gradient(120deg, var(--ember), var(--ember-deep) 60%, #9e2f1b); color: #fff; }
.cta-band__inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; padding-block: clamp(56px,7vw,96px); }
.cta-band .eyebrow.is-light { color: #fff; }
.cta-band .eyebrow.is-light::before { background: #fff; }
.cta-band__title { color: #fff; margin: 14px 0 16px; }
.cta-band .lead { color: rgba(255,255,255,.9); }
.cta-band__actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-phone { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: 16px 22px; border-radius: var(--r-md); font-family: var(--display); font-weight: 800; font-size: 24px; width: 100%; transition: background .2s; }
.cta-phone:hover { background: rgba(255,255,255,.22); }
.cta-phone svg { width: 26px; height: 26px; flex: none; }
.cta-phone small { display: block; font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; margin-bottom: 2px; }
.cta-band__actions .btn { width: 100%; justify-content: center; }
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }
