/* ==========================================================================
   SodiSchool — inner page components.

   Loaded after styles.css and additive only: it reuses that file's :root
   tokens, buttons, wrap, nav, footer and reveal behaviour rather than
   restating them, so there is one design system, not two.
   ========================================================================== */

/* ============================ PAGE HERO ============================ */
.phero{
  position:relative;isolation:isolate;overflow:hidden;
  padding:142px 0 74px;
  background:
    radial-gradient(105% 80% at 80% 26%, #0b1fa8 0%, rgba(11,31,168,0) 60%),
    linear-gradient(180deg,#01004f 0%,var(--navy) 46%,#01003f 100%);
}
.phero__glow{
  position:absolute;z-index:-1;top:-18%;right:-6%;
  width:640px;height:640px;border-radius:50%;
  background:radial-gradient(circle,rgba(37,84,255,.4) 0%,rgba(37,84,255,0) 66%);
}
.phero__grid{
  display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  gap:40px;align-items:center;
}
.phero__title{
  font-size:clamp(30px,4vw,48px);font-weight:800;line-height:1.1;
  margin:18px 0 18px;
}
.phero__lead{
  font-size:15px;line-height:1.8;color:rgba(255,255,255,.74);max-width:470px;
}
.phero__cta{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
/* Same treatment as the homepage hero: the product renders carry their own
   dark ground, so feather the edges and let them dissolve into the navy. */
.phero__art img{
  width:100%;
  -webkit-mask-image:
    linear-gradient(to right, rgba(0,0,0,0) 0%, #000 13%, #000 87%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 12%, #000 86%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite:source-in;
  mask-image:
    linear-gradient(to right, rgba(0,0,0,0) 0%, #000 13%, #000 87%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 12%, #000 86%, rgba(0,0,0,0) 100%);
  mask-composite:intersect;
}
/* The light hero shows photography in a framed card, so no feathering there. */
.phero--light .phero__art img{
  -webkit-mask-image:none;mask-image:none;border-radius:18px;
}

/* Larger hero type, for pages whose headline is the main message. */
.phero--lg{padding-top:154px;padding-bottom:92px}
.phero--lg .phero__title{font-size:clamp(34px,4.9vw,58px);line-height:1.07}
.phero--lg .phero__lead{font-size:17px;line-height:1.8;max-width:520px}
.phero--lg .badge{font-size:11.5px;padding:9px 18px}
@media (max-width:920px){
  .phero--lg{padding-top:120px;padding-bottom:62px}
  .phero--lg .phero__lead{font-size:15.5px;max-width:580px}
}
@media (max-width:600px){
  .phero--lg .phero__title{font-size:clamp(29px,8.4vw,38px)}
  .phero--lg .phero__lead{font-size:14.5px}
}

/* Light hero variant (kept for any page that needs a light opener) */
.phero--light{
  background:
    radial-gradient(80% 70% at 78% 30%, rgba(2,0,102,.07) 0%, rgba(2,0,102,0) 62%),
    linear-gradient(180deg,#fbfbfe 0%,var(--surface) 100%);
  color:var(--ink);
}
.phero--light .phero__title{color:var(--navy)}
.phero--light .phero__lead{color:var(--muted)}
.phero--light .btn--ghost{
  background:#fff;color:var(--navy);border-color:#dcdce9;backdrop-filter:none;
}
.phero--light .btn--ghost:hover{background:#fff;border-color:var(--navy)}
.phero--light .badge{
  background:#fff;border-color:#e2e2ef;color:var(--navy);
  box-shadow:0 2px 10px -4px rgba(11,11,69,.18);
}

/* Agent portrait: a tall figure on its own navy ground, seated on a rounded
   brand-blue panel so it reads as a portrait card rather than a floating cutout. */
/* The portrait is a tall 1:3 crop. Left unconstrained it stretches the hero
   row and strands the headline halfway down the page, so cap the frame and
   let the figure fill it from the top. */
.partner-hero{display:flex;justify-content:center;align-items:center}
.partner-hero picture{
  display:block;border-radius:22px;overflow:hidden;
  width:100%;max-width:330px;max-height:520px;
  background:linear-gradient(165deg,#0a1170 0%,#020066 55%,#01003f 100%);
  box-shadow:0 26px 60px -30px rgba(2,0,90,.6);
}
.partner-hero img{
  width:100%;height:520px;display:block;
  object-fit:cover;object-position:50% 12%;
}
@media (max-width:920px){
  .partner-hero picture{max-width:290px;max-height:420px}
  .partner-hero img{height:420px}
}
@media (max-width:600px){
  .partner-hero picture{max-width:240px;max-height:340px}
  .partner-hero img{height:340px}
}

/* Small trust badges under a hero */
.pbadges{display:flex;flex-wrap:wrap;gap:16px;margin-top:34px}
.pbadge{display:flex;align-items:flex-start;gap:10px;max-width:166px}
.pbadge__icon{
  width:38px;height:38px;border-radius:11px;flex:none;
  background:rgba(150,245,7,.12);border:1px solid rgba(150,245,7,.26);
  color:var(--lime);display:inline-flex;align-items:center;justify-content:center;
}
.pbadge__t{font-size:13px;font-weight:700;color:#fff;margin-bottom:3px}
.pbadge__d{font-size:11.5px;line-height:1.55;color:rgba(255,255,255,.6)}
.phero--light .pbadge__icon{background:rgba(2,0,102,.06);border-color:rgba(2,0,102,.12);color:var(--navy)}
.phero--light .pbadge__t{color:var(--navy)}
.phero--light .pbadge__d{color:var(--muted)}

/* ============================ SECTIONS ============================ */
.sect{padding:84px 0}
.sect--light{background:var(--surface);color:var(--ink)}
.sect--white{background:#fff;color:var(--ink)}
.sect--dark{
  position:relative;isolation:isolate;overflow:hidden;color:#fff;
  background:
    radial-gradient(78% 72% at 84% 26%, rgba(24,58,214,.46) 0%, rgba(24,58,214,0) 62%),
    linear-gradient(180deg,#01003f 0%,#020069 55%,#01003c 100%);
}

/* Centred section heading */
.chead{max-width:660px;margin:0 auto 46px;text-align:center}
.chead__title{
  margin:15px 0 14px;font-size:clamp(24px,2.9vw,35px);
  font-weight:800;color:var(--navy);
}
.sect--dark .chead__title,.strip .chead__title{color:#fff}
.chead__lead{font-size:14px;line-height:1.8;color:var(--muted)}
.sect--dark .chead__lead{color:rgba(255,255,255,.7)}
.chead .eyebrow{justify-content:center}

/* ============================ FEATURE GRID ============================ */
/*
 * The house card: deep blue ground, lemon icon, lemon-tinted hover and a
 * pressed state. This is the dominant card across the site — the light card
 * is now the exception, kept for pricing, testimonials, team and the role
 * chooser where a white surface carries the content better.
 */
.fgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.fitem{
  position:relative;overflow:hidden;
  background:linear-gradient(165deg,#0b1170 0%,#020066 58%,#01003f 100%);
  border:1px solid rgba(150,245,7,.18);
  border-radius:16px;padding:24px 22px 22px;
  box-shadow:0 14px 34px -20px rgba(2,0,90,.55);
  transition:transform .28s var(--ease),box-shadow .28s var(--ease),
             border-color .28s var(--ease);
}
.fitem::after{  /* soft lemon bloom that grows on hover */
  content:"";position:absolute;inset:auto -30% -50% auto;
  width:210px;height:210px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(150,245,7,.16),transparent 70%);
  opacity:0;transition:opacity .3s var(--ease);
}
.fitem:hover,.fitem:focus-within{
  transform:translateY(-6px);
  border-color:rgba(150,245,7,.5);
  box-shadow:0 26px 52px -24px rgba(2,0,90,.72);
}
.fitem:hover::after,.fitem:focus-within::after{opacity:1}
.fitem:active{transform:translateY(-2px)}

.fitem__icon{
  width:46px;height:46px;border-radius:13px;margin-bottom:18px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(150,245,7,.12);
  border:1px solid rgba(150,245,7,.28);
  color:var(--lime);
  transition:background .28s var(--ease),transform .28s var(--ease);
}
.fitem:hover .fitem__icon{background:rgba(150,245,7,.2);transform:translateY(-1px)}
.fitem__title{font-size:14.5px;font-weight:700;color:#fff;margin-bottom:9px}
.fitem__body{font-size:12.5px;line-height:1.75;color:rgba(255,255,255,.66)}

/*
 * The pastel tones stay defined because the light cards still use them —
 * plan icons, the role chooser and the statistics tiles. Inside a brand card
 * the lemon treatment above wins, since it is set on .fitem__icon directly.
 */
.i-blue{background:#e8efff;color:#2f5bd8}
.i-green{background:#e6f8ec;color:#1f9d4d}
.i-violet{background:#efe9ff;color:#6d3ce7}
.i-amber{background:#fff1e0;color:#e08a2b}
.i-rose{background:#ffe9ef;color:#d8436b}
.i-teal{background:#e0f6f5;color:#199a92}
/* ...but a brand card overrides whichever tone the markup asked for. */
.fitem .fitem__icon.i-blue,.fitem .fitem__icon.i-green,.fitem .fitem__icon.i-violet,
.fitem .fitem__icon.i-amber,.fitem .fitem__icon.i-rose,.fitem .fitem__icon.i-teal{
  background:rgba(150,245,7,.12);color:var(--lime);
}
.fitem:hover .fitem__icon.i-blue,.fitem:hover .fitem__icon.i-green,
.fitem:hover .fitem__icon.i-violet,.fitem:hover .fitem__icon.i-amber,
.fitem:hover .fitem__icon.i-rose,.fitem:hover .fitem__icon.i-teal{
  background:rgba(150,245,7,.2);
}

/* ==================== DARK STRIP WITH MINI FEATURES ==================== */
.strip{
  position:relative;overflow:hidden;border-radius:20px;color:#fff;
  background:linear-gradient(120deg,#01003f 0%,#050a7a 58%,#01003c 100%);
  padding:36px 38px;margin-top:54px;
  display:grid;grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  gap:34px;align-items:center;
}
.strip__title{font-size:clamp(20px,2.2vw,26px);font-weight:800;line-height:1.2;margin-bottom:12px}
.strip__lead{font-size:12.5px;line-height:1.8;color:rgba(255,255,255,.68)}
.strip__items{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.sitem{text-align:center}
.sitem__icon{color:var(--lime);display:inline-flex;margin-bottom:10px}
.sitem__t{font-size:12.5px;font-weight:700;margin-bottom:5px}
.sitem__d{font-size:11px;line-height:1.6;color:rgba(255,255,255,.6)}

/* ============================ STATS BAND ============================ */
.statband{
  border-radius:20px;padding:30px 18px;
  background:linear-gradient(120deg,#01003f 0%,#050a7a 58%,#01003c 100%);
  display:grid;grid-template-columns:repeat(4,1fr);
}
.statband__i{text-align:center;padding:6px 18px;border-right:1px solid rgba(255,255,255,.1)}
.statband__i:last-child{border-right:0}
.statband__icon{color:var(--lime);display:inline-flex;margin-bottom:10px}
.statband__n{font-size:26px;font-weight:800;color:#fff;line-height:1.15}
.statband__l{font-size:11.5px;color:rgba(255,255,255,.66);margin-top:4px}

/* ============================ TESTIMONIALS ============================ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.tcard{
  background:#fff;border-radius:16px;padding:26px 24px;
  box-shadow:0 2px 4px rgba(11,11,69,.04),0 12px 30px -18px rgba(11,11,69,.2);
}
.tcard__mark{font-size:32px;line-height:1;color:var(--lime);font-weight:800}
.tcard__quote{font-size:12.5px;line-height:1.85;color:var(--muted);margin:8px 0 20px}
.tcard__who{display:flex;align-items:center;gap:12px}
.tavatar{
  width:38px;height:38px;border-radius:50%;flex:none;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:700;color:#fff;
  background:linear-gradient(145deg,#2a2ab8,#020066);
}
.tcard__name{font-size:12.5px;font-weight:700;color:var(--navy)}
.tcard__role{font-size:11px;color:var(--muted)}

/* ======================= TESTIMONIAL CAROUSEL ======================= */
.tslider{position:relative;overflow:hidden}
.tslider__track{
  display:flex;
  transition:transform .62s cubic-bezier(.6,.03,.2,1);
  will-change:transform;
}
/*
 * Four across on desktop, two on a phone. The track advances by ONE card at a
 * time, so a single testimonial leaves and a single new one arrives rather
 * than the whole row swapping. These widths must stay in step with perView()
 * in main.js — the JS reads the same breakpoints.
 */
.tslide{flex:0 0 25%;padding:6px 10px;box-sizing:border-box;display:flex}
.tslide .tcard{width:100%}
@media (max-width:1080px){ .tslide{flex-basis:33.3333%} }
@media (max-width:760px){ .tslide{flex-basis:50%;padding:6px 6px} }
.tslider__dots{display:flex;justify-content:center;gap:9px;margin-top:26px}
.tdot{
  width:9px;height:9px;border-radius:999px;border:0;padding:0;cursor:pointer;
  background:#cfcfe0;transition:width .25s var(--ease),background .25s var(--ease);
}
.tdot.is-on{width:26px;background:var(--lime)}
.tdot[hidden]{display:none}
.sect--dark .tdot{background:rgba(255,255,255,.28)}
.sect--dark .tdot.is-on{background:var(--lime)}
@media (max-width:600px){ .tslide{padding:6px 2px} }
@media (prefers-reduced-motion:reduce){ .tslider__track{transition:none} }

/* ==================== EMPHASISED STATISTICS ==================== */
.statband--hero{padding:44px 20px;position:relative;overflow:hidden}
.statband--hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(70% 120% at 50% 0%, rgba(150,245,7,.12), transparent 62%);
}
.statband--hero .statband__i{position:relative;padding:10px 20px}
.statband--hero .statband__icon{
  width:52px;height:52px;border-radius:15px;margin:0 auto 14px;
  background:rgba(150,245,7,.13);border:1px solid rgba(150,245,7,.28);
  display:inline-flex;align-items:center;justify-content:center;
}
.statband--hero .statband__n{
  font-size:clamp(30px,3.4vw,42px);letter-spacing:-.02em;
  font-variant-numeric:tabular-nums;
}
.statband--hero .statband__l{font-size:12.5px;margin-top:7px;color:rgba(255,255,255,.72)}
.statband__rule{
  width:30px;height:3px;border-radius:3px;background:var(--lime);
  margin:12px auto 0;opacity:.85;
}

/* ============================ CTA STRIPS ============================ */
.ctastrip{
  margin-top:54px;border-radius:18px;background:#fff;
  box-shadow:0 2px 6px rgba(11,11,69,.05),0 20px 46px -24px rgba(11,11,69,.3);
  padding:26px 30px;display:flex;align-items:center;gap:22px;flex-wrap:wrap;
}
.ctastrip__icon{
  width:56px;height:56px;border-radius:16px;flex:none;color:#fff;
  background:linear-gradient(150deg,#2a2ab8,#020066);
  display:inline-flex;align-items:center;justify-content:center;
}
.ctastrip__copy{flex:1 1 300px}
.ctastrip__t{font-size:17px;font-weight:800;color:var(--navy);margin-bottom:6px}
.ctastrip__d{font-size:12.5px;line-height:1.7;color:var(--muted)}
.ctastrip__btns{display:flex;gap:12px;flex-wrap:wrap}
.ctastrip .btn--ghost{background:#fff;color:var(--navy);border-color:#dcdce9;backdrop-filter:none}
.ctastrip .btn--ghost:hover{border-color:var(--navy);background:#fff}

.ctastrip--dark{
  background:linear-gradient(120deg,#01003f 0%,#050a7a 58%,#01003c 100%);
  box-shadow:0 24px 54px -28px rgba(2,0,80,.7);
}
.ctastrip--dark .ctastrip__t{color:#fff}
.ctastrip--dark .ctastrip__d{color:rgba(255,255,255,.7)}
.ctastrip--dark .ctastrip__icon{background:rgba(150,245,7,.16);color:var(--lime)}
.ctastrip--dark .btn--ghost{
  background:rgba(255,255,255,.06);color:#fff;border-color:rgba(255,255,255,.3);
}
.ctastrip--dark .btn--ghost:hover{background:rgba(255,255,255,.14)}

/* ============================ PRICING ============================ */
.ptoggle{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin:0 auto 40px;font-size:13px;color:var(--muted);flex-wrap:wrap;
}
.ptoggle__btn{
  width:52px;height:28px;border-radius:999px;border:0;cursor:pointer;padding:0;
  background:var(--lime);position:relative;transition:background .25s var(--ease);
}
.ptoggle__btn::after{
  content:"";position:absolute;top:3px;left:3px;width:22px;height:22px;
  border-radius:50%;background:#fff;transition:transform .25s var(--ease);
}
.ptoggle__btn[aria-checked="true"]::after{transform:translateX(24px)}
.ptoggle__lab{font-weight:600;color:var(--navy)}
.ptoggle__save{
  font-size:11px;font-weight:700;color:#1f9d4d;
  background:#e6f8ec;border-radius:999px;padding:5px 12px;
}

/*
 * Premium plan cards: the house navy ground, lemon icons, white copy — the
 * same language as the feature cards, scaled up for the page's main decision.
 */
.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
.plan{
  position:relative;overflow:hidden;
  background:linear-gradient(165deg,#0b1170 0%,#020066 58%,#01003f 100%);
  border-radius:20px;padding:36px 26px 28px;
  border:1px solid rgba(150,245,7,.18);text-align:center;
  box-shadow:0 18px 40px -22px rgba(2,0,90,.6);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s var(--ease);
}
.plan::after{
  content:"";position:absolute;inset:auto -25% -45% auto;
  width:230px;height:230px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(150,245,7,.16),transparent 70%);
  opacity:0;transition:opacity .32s var(--ease);
}
.plan:hover{
  transform:translateY(-8px);
  border-color:rgba(150,245,7,.5);
  box-shadow:0 34px 66px -26px rgba(2,0,90,.8);
}
.plan:hover::after{opacity:1}
.plan:active{transform:translateY(-3px)}

/* The popular plan is lifted and outlined so the eye lands on it first. */
.plan--pop{
  border-color:rgba(150,245,7,.55);
  box-shadow:0 26px 58px -22px rgba(2,0,90,.78),0 0 0 1px rgba(150,245,7,.16) inset;
}
@media (min-width:921px){ .plan--pop{transform:scale(1.035)} .plan--pop:hover{transform:translateY(-8px) scale(1.035)} }

.plan__tag{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  background:var(--lime);color:#04033a;font-size:10px;font-weight:800;
  letter-spacing:.08em;padding:6px 16px;border-radius:0 0 10px 10px;white-space:nowrap;
}
.plan__icon{
  width:58px;height:58px;border-radius:17px;margin:0 auto 16px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(150,245,7,.12)!important;
  border:1px solid rgba(150,245,7,.3);
  color:var(--lime)!important;
  transition:background .3s var(--ease),transform .3s var(--ease);
}
.plan:hover .plan__icon{background:rgba(150,245,7,.22)!important;transform:translateY(-2px)}
.plan__name{font-size:21px;font-weight:800;color:#fff}
.plan__for{font-size:12px;line-height:1.65;color:rgba(255,255,255,.6);margin:8px auto 18px;max-width:215px}
.plan__price{
  font-size:33px;font-weight:800;color:var(--lime);letter-spacing:-.02em;
  font-variant-numeric:tabular-nums;
}
.plan__per{font-size:12px;font-weight:500;color:rgba(255,255,255,.55)}
/* Brief lift as the figure swaps, so the change is noticed rather than jarring. */
.plan__price [data-annual]{display:inline-block;transition:opacity .3s var(--ease),transform .3s var(--ease)}
.plan__price .is-swapping{opacity:0;transform:translateY(-8px)}
.plan__list{text-align:left;margin:22px 0 24px;display:grid;gap:11px}
.plan__list li{display:flex;align-items:flex-start;gap:9px;font-size:12.5px;color:rgba(255,255,255,.78)}
.plan__list svg{flex:none;margin-top:1px;color:var(--lime)}
.plan .btn{width:100%}
/* The plan card is navy now, so its outline button goes back to the light-on-
   dark treatment; the light-surface override stays for genuinely white areas. */
.plan .btn--ghost{
  background:rgba(255,255,255,.06);color:#fff;
  border-color:rgba(255,255,255,.3);backdrop-filter:none;
}
.plan .btn--ghost:hover{background:rgba(150,245,7,.14);border-color:var(--lime);color:#fff}
.sect--light .split .btn--ghost,
.sect--white .btn--ghost{
  background:#fff;color:var(--navy);border-color:#dcdce9;backdrop-filter:none;
}
.sect--light .split .btn--ghost:hover,
.sect--white .btn--ghost:hover{background:#fff;border-color:var(--navy)}
.plan__note{text-align:center;font-size:12px;color:var(--muted);margin-top:22px}

/* Comparison table */
.cmpwrap{margin-top:52px;background:#fff;border-radius:16px;padding:26px 24px;
  box-shadow:0 2px 4px rgba(11,11,69,.04),0 14px 34px -20px rgba(11,11,69,.18);
  overflow-x:auto;}
.cmp{width:100%;border-collapse:collapse;min-width:560px}
.cmp caption{text-align:left;font-size:16px;font-weight:800;color:var(--navy);padding-bottom:16px}
.cmp th,.cmp td{padding:11px 14px;font-size:12.5px;text-align:center}
.cmp th:first-child,.cmp td:first-child{text-align:left;color:var(--muted)}
.cmp thead th{font-size:12px;font-weight:700;color:var(--navy)}
.cmp tbody tr:nth-child(odd){background:#fafafd}
.cmp .yes{color:#1f9d4d;font-weight:700}
.cmp .no{color:#c2c2d4}
.cmp__dot{display:inline-block;width:8px;height:8px;border-radius:50%;margin-right:7px;vertical-align:middle}

/* Trust row */
.trustrow{
  margin-top:34px;background:#fff;border-radius:16px;padding:22px 14px;
  box-shadow:0 2px 4px rgba(11,11,69,.04),0 12px 30px -20px rgba(11,11,69,.18);
  display:grid;grid-template-columns:repeat(4,1fr);
}
.trustrow__i{display:flex;align-items:flex-start;gap:12px;padding:6px 18px;border-right:1px solid #eeeef5}
.trustrow__i:last-child{border-right:0}
.trustrow__t{font-size:12.5px;font-weight:700;color:var(--navy);margin-bottom:4px}
.trustrow__d{font-size:11px;line-height:1.6;color:var(--muted)}

/* FAQ */
.faq{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.faq__item{background:#fff;border:1px solid #e9e9f2;border-radius:12px;overflow:hidden}
.faq__q{
  width:100%;background:none;border:0;cursor:pointer;text-align:left;
  padding:16px 18px;font:inherit;font-size:13px;font-weight:600;color:var(--navy);
  display:flex;align-items:center;justify-content:space-between;gap:14px;
}
.faq__q::after{content:"+";font-size:19px;font-weight:600;color:var(--lime);line-height:1;flex:none}
.faq__q[aria-expanded="true"]::after{content:"\2212"}
.faq__a{padding:0 18px 17px;font-size:12.5px;line-height:1.85;color:var(--muted)}
.faq__a[hidden]{display:none}

/* ============================ TEAM ============================ */
.team{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.tmcard{
  background:#fff;border-radius:16px;overflow:hidden;text-align:center;
  box-shadow:0 2px 4px rgba(11,11,69,.04),0 12px 30px -18px rgba(11,11,69,.2);
  transition:transform .28s var(--ease);
}
.tmcard:hover{transform:translateY(-5px)}
.tmcard__ph{
  height:132px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(150deg,#ececf7,#dfe3fa);
}
.tmcard__initials{
  width:66px;height:66px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:21px;font-weight:800;color:#fff;
  background:linear-gradient(145deg,#2a2ab8,#020066);
  box-shadow:0 8px 20px -10px rgba(2,0,102,.7);
}
.tmcard__b{padding:18px 16px 22px}
.tmcard__name{font-size:13.5px;font-weight:700;color:var(--navy)}
.tmcard__role{font-size:11.5px;font-weight:600;color:#3f9c12;margin:3px 0 9px}
.tmcard__bio{font-size:11.5px;line-height:1.7;color:var(--muted)}

/* ============================ NUMBERED CARDS ============================ */
.ncards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ncard{
  position:relative;overflow:hidden;
  background:linear-gradient(165deg,#0b1170 0%,#020066 58%,#01003f 100%);
  border:1px solid rgba(150,245,7,.18);
  border-radius:16px;padding:30px 26px 26px;
  box-shadow:0 14px 34px -20px rgba(2,0,90,.55);
  transition:transform .28s var(--ease),box-shadow .28s var(--ease),
             border-color .28s var(--ease);
}
.ncard::after{
  content:"";position:absolute;inset:auto -30% -50% auto;
  width:220px;height:220px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(150,245,7,.16),transparent 70%);
  opacity:0;transition:opacity .3s var(--ease);
}
.ncard:hover{
  transform:translateY(-6px);
  border-color:rgba(150,245,7,.5);
  box-shadow:0 26px 52px -24px rgba(2,0,90,.72);
}
.ncard:hover::after{opacity:1}
.ncard:active{transform:translateY(-2px)}

.ncard__num{
  width:34px;height:34px;border-radius:50%;background:var(--lime);color:#04033a;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;margin-bottom:18px;
}
.ncard__icon{color:var(--lime);display:block;margin-bottom:16px}
.ncard__t{font-size:16px;font-weight:800;color:#fff;margin-bottom:10px}
.ncard__rule{width:34px;height:3px;border-radius:3px;background:var(--lime);margin-bottom:13px}
.ncard__d{font-size:12.5px;line-height:1.8;color:rgba(255,255,255,.66)}
/* icon tiles inside a numbered card follow the same lemon rule */
.ncard .fitem__icon{
  background:rgba(150,245,7,.12)!important;
  border:1px solid rgba(150,245,7,.28);
  color:var(--lime)!important;margin-bottom:16px;
}

/* ============================ AGENT ZONES ============================ */
.zones{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.zone{
  background:linear-gradient(170deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border:1px solid rgba(150,245,7,.16);border-radius:16px;padding:24px 22px;
  transition:transform .28s var(--ease),border-color .28s var(--ease),background .28s var(--ease);
}
.zone:hover{
  transform:translateY(-5px);border-color:rgba(150,245,7,.45);
  background:linear-gradient(170deg,rgba(255,255,255,.11),rgba(255,255,255,.04));
}
.zone__icon{
  width:42px;height:42px;border-radius:12px;margin-bottom:15px;
  background:rgba(150,245,7,.13);border:1px solid rgba(150,245,7,.26);color:var(--lime);
  display:inline-flex;align-items:center;justify-content:center;
}
.zone__t{font-size:16px;font-weight:800;color:#fff;margin-bottom:8px}
.zone__d{font-size:12px;line-height:1.7;color:rgba(255,255,255,.62);margin-bottom:14px}
.zone__tag{
  display:inline-block;font-size:10.5px;font-weight:700;letter-spacing:.06em;
  color:#04033a;background:var(--lime);border-radius:999px;padding:5px 12px;
}
.zone__note{text-align:center;font-size:13px;color:rgba(255,255,255,.66);margin-top:30px}
.zone__note a{color:var(--lime);text-decoration:underline}
@media (max-width:920px){ .zones{grid-template-columns:repeat(2,1fr)} }
@media (max-width:600px){ .zones{grid-template-columns:1fr} }

/* ============================ STEPS ============================ */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;align-items:start}
.step{text-align:center;position:relative;padding:0 8px}
.step__icon{
  width:66px;height:66px;border-radius:50%;margin:0 auto 15px;
  background:rgba(2,0,102,.06);color:var(--navy);
  display:inline-flex;align-items:center;justify-content:center;
}
.sect--dark .step__icon{background:rgba(150,245,7,.13);color:var(--lime)}
.step__t{font-size:13px;font-weight:700;color:var(--navy);margin-bottom:7px}
.sect--dark .step__t{color:#fff}
.step__d{font-size:11.5px;line-height:1.7;color:var(--muted)}
.sect--dark .step__d{color:rgba(255,255,255,.62)}
.step:not(:last-child)::after{
  content:"";position:absolute;top:31px;right:-6px;width:12px;height:12px;
  border-top:2px solid rgba(2,0,102,.22);border-right:2px solid rgba(2,0,102,.22);
  transform:rotate(45deg);
}
.sect--dark .step:not(:last-child)::after{border-color:rgba(150,245,7,.4)}

/* ============================ SPLIT ROWS ============================ */
.split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:44px;align-items:center}
.split__title{font-size:clamp(23px,2.7vw,33px);font-weight:800;color:var(--navy);margin-bottom:16px}
.sect--dark .split__title{color:#fff}
.split__lead{font-size:14px;line-height:1.85;color:var(--muted);margin-bottom:22px}
.sect--dark .split__lead{color:rgba(255,255,255,.7)}
.split__art img{width:100%;border-radius:18px;display:block}
.ticks{display:grid;gap:13px;margin-bottom:26px}
.ticks li{display:flex;align-items:flex-start;gap:11px;font-size:13px;color:var(--muted)}
.sect--dark .ticks li{color:rgba(255,255,255,.72)}
.ticks svg{flex:none;margin-top:2px;color:#1f9d4d}
.sect--dark .ticks svg{color:var(--lime)}

/* ============================ CONTACT ============================ */
.cgrid{display:grid;grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);gap:26px;align-items:start}
.panel{
  background:#fff;border-radius:18px;padding:30px 28px;
  box-shadow:0 2px 4px rgba(11,11,69,.04),0 14px 36px -22px rgba(11,11,69,.22);
}
.panel__title{font-size:19px;font-weight:800;color:var(--navy)}
.panel__rule{width:44px;height:3px;border-radius:3px;background:var(--lime);margin:11px 0 24px}
.cinfo{display:grid;gap:22px}
.cinfo__row{display:flex;gap:14px;align-items:flex-start}
.cinfo__icon{
  width:42px;height:42px;border-radius:12px;flex:none;
  background:#e6f8ec;color:#1f9d4d;
  display:inline-flex;align-items:center;justify-content:center;
}
.cinfo__t{font-size:12.5px;font-weight:700;color:var(--navy);margin-bottom:5px}
.cinfo__d{font-size:12.5px;line-height:1.7;color:var(--muted)}
.cinfo__d a{color:var(--muted)}
.cinfo__d a:hover{color:var(--navy)}
.cinfo__social{display:flex;gap:9px;margin-top:9px}
.cinfo__social a{
  width:32px;height:32px;border-radius:50%;background:var(--navy);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .2s var(--ease),background .2s var(--ease);
}
.cinfo__social a:hover{background:#1f9d4d;transform:translateY(-2px)}

.fgroup{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.field{position:relative}
.field label{display:block;font-size:12px;font-weight:600;color:var(--navy);margin-bottom:7px}
.field input,.field textarea,.field select{
  width:100%;padding:12px 14px;font:inherit;font-size:13px;color:var(--ink);
  background:#fbfbfe;border:1px solid #e2e2ef;border-radius:10px;
  transition:border-color .2s var(--ease),background .2s var(--ease);
}
.field textarea{resize:vertical;min-height:132px}
.field input::placeholder,.field textarea::placeholder{color:#a6a6bd}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;border-color:var(--navy);background:#fff;
}
.field input[aria-invalid="true"],.field textarea[aria-invalid="true"]{border-color:#d8436b;background:#fff6f8}
.field__err{font-size:11.5px;color:#d8436b;margin-top:6px;min-height:1px}
.consent{display:flex;align-items:flex-start;gap:10px;font-size:12px;color:var(--muted);margin:4px 0 18px}
.consent input{margin-top:2px;accent-color:#1f9d4d;width:15px;height:15px;flex:none}
.consent a{color:#2b2bd4;text-decoration:underline}
.formnote{
  margin-top:16px;font-size:12px;line-height:1.7;padding:13px 15px;border-radius:10px;
  background:#fff8e6;border:1px solid #f2e2b6;color:#7a5c14;
}
.formnote[hidden]{display:none}
#contactForm .btn{width:100%}

/* ============================ ROLE CHOOSER ============================ */
.chooser{
  display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:52px;align-items:start;padding-bottom:88px;
}
.chooser__points{display:grid;gap:20px;margin-top:34px}
.chooser__points li{display:flex;gap:14px;align-items:flex-start}
.chooser__pi{
  width:44px;height:44px;border-radius:13px;flex:none;
  background:rgba(150,245,7,.12);border:1px solid rgba(150,245,7,.26);color:var(--lime);
  display:inline-flex;align-items:center;justify-content:center;
}
.chooser__pt{font-size:14px;font-weight:700;color:var(--lime);margin-bottom:4px}
.chooser__pd{font-size:12.5px;line-height:1.7;color:rgba(255,255,255,.68)}

.chooser__panel{
  background:#fff;border-radius:22px;padding:28px 28px 24px;
  box-shadow:0 30px 70px -34px rgba(2,0,80,.6),0 2px 6px rgba(2,0,80,.08);
}
.chooser__tabs{
  display:grid;grid-template-columns:1fr 1fr;gap:6px;
  background:#f2f2f9;border-radius:12px;padding:5px;margin-bottom:22px;
}
.chtab{
  border:0;background:none;cursor:pointer;font:inherit;font-size:13.5px;font-weight:600;
  color:var(--muted);padding:11px 10px;border-radius:9px;
  transition:background .22s var(--ease),color .22s var(--ease),box-shadow .22s var(--ease);
}
.chtab.is-on{background:#fff;color:var(--navy);box-shadow:0 2px 8px -3px rgba(11,11,69,.25)}
.chpanel[hidden]{display:none}
.chooser__lead{font-size:12.5px;color:var(--muted);margin-bottom:16px}

.rolecard{
  display:flex;gap:15px;align-items:flex-start;
  border:1px solid #e9e9f2;border-radius:14px;padding:17px 18px;margin-bottom:11px;
  transition:border-color .22s var(--ease),transform .22s var(--ease),box-shadow .22s var(--ease);
}
a.rolecard:hover{
  border-color:var(--navy);transform:translateY(-2px);
  box-shadow:0 12px 28px -16px rgba(11,11,69,.4);
}
.rolecard--static{background:#fafafd}
.rolecard .fitem__icon{margin:0;flex:none;width:42px;height:42px;border-radius:12px}
.rolecard__b{display:block}
.rolecard__t{display:block;font-size:14.5px;font-weight:700;color:var(--navy);margin-bottom:5px}
.rolecard__d{display:block;font-size:12px;line-height:1.7;color:var(--muted)}
.rolecard__cta{
  display:inline-flex;align-items:center;gap:6px;margin-top:9px;
  font-size:12px;font-weight:700;color:#2b2bd4;
}
a.rolecard:hover .rolecard__cta span{transform:translateX(3px);display:inline-block}
.rolecard__note{
  display:inline-flex;align-items:center;gap:7px;margin-top:9px;
  font-size:11.5px;font-weight:600;color:#7a5c14;
  background:#fff8e6;border:1px solid #f2e2b6;border-radius:999px;padding:5px 12px;
}
.chooser__help{
  text-align:center;font-size:12px;color:var(--muted);
  margin-top:18px;padding-top:16px;border-top:1px solid #eeeef5;
}
.chooser__help a{color:#2b2bd4;text-decoration:underline}

@media (max-width:920px){
  .chooser{grid-template-columns:1fr;gap:34px;padding-bottom:64px;text-align:center}
  .chooser__intro{display:flex;flex-direction:column;align-items:center}
  .chooser__points{text-align:left;max-width:430px}
  .chooser__panel{text-align:left}
}
@media (max-width:600px){
  .chooser__panel{padding:22px 18px 20px}
  .rolecard{padding:15px 14px;gap:12px}
}

/* ==================== SCHOOL REGISTRATION PANEL ==================== */
.chooser__aside{
  margin-top:26px;font-size:12.5px;color:rgba(255,255,255,.62);
}
.chooser__aside a{color:var(--lime);text-decoration:underline}

.regpanel{padding:26px 28px 24px}
.regpanel__head{
  display:flex;align-items:center;gap:14px;
  padding-bottom:18px;margin-bottom:20px;border-bottom:1px solid #eeeef5;
}
.regpanel__icon{
  width:50px;height:50px;border-radius:15px;flex:none;color:var(--lime);
  background:linear-gradient(165deg,#0b1170,#020066);
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 10px 22px -12px rgba(2,0,102,.8);
}
.req{color:#d8436b;font-weight:700}
.opt{
  float:right;font-size:10px;font-weight:600;letter-spacing:.05em;
  color:#7a7a95;background:#f2f2f9;border-radius:999px;padding:3px 9px;
}
/* An optional field should look calmer than a required one. */
.field--opt input,.field--opt textarea{background:#fff;border-style:dashed}
.field--opt input:focus,.field--opt textarea:focus{border-style:solid}
.field__hint{
  display:flex;align-items:center;gap:6px;
  font-size:11px;line-height:1.5;color:#8a8aa5;margin-top:7px;
}
.field__hint svg{flex:none;color:#3f9c12}
.regpanel__submit{width:100%;margin-top:18px}
.regpanel__legal{
  font-size:11px;line-height:1.6;color:#8a8aa5;text-align:center;margin-top:14px;
}
.regpanel__legal a{color:#2b2bd4;text-decoration:underline}
.formnote--ok{background:#eefaf1;border-color:#c6e9d2;color:#1c6b39}
.formnote--ok a{color:#155c30}

@media (max-width:600px){
  .regpanel{padding:22px 18px 20px}
  .regpanel__head{gap:12px}
  .regpanel__icon{width:44px;height:44px;border-radius:13px}
}

/* ======================= SUCCESS CELEBRATION ======================= */
.cel{position:fixed;inset:0;z-index:300;display:grid;place-items:center;padding:20px}
.cel[hidden]{display:none}
.cel__scrim{
  position:absolute;inset:0;background:rgba(2,0,50,.72);
  backdrop-filter:blur(5px);animation:celFade .3s var(--ease);
}
/* Sits above the scrim but below the card, so confetti falls behind the text. */
.cel__canvas{position:absolute;inset:0;width:100%;height:100%;pointer-events:none}

.cel__box{
  position:relative;width:100%;max-width:440px;text-align:center;
  background:#fff;border-radius:22px;padding:38px 32px 30px;
  box-shadow:0 40px 90px -30px rgba(2,0,80,.7);
  animation:celPop .45s cubic-bezier(.18,.9,.3,1.3);
}
@keyframes celFade{from{opacity:0}to{opacity:1}}
@keyframes celPop{
  0%{opacity:0;transform:translateY(26px) scale(.9)}
  100%{opacity:1;transform:none}
}

.cel__x{
  position:absolute;top:14px;right:14px;width:32px;height:32px;
  border:0;border-radius:50%;background:#f2f2f9;color:#6b6b85;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .2s var(--ease),color .2s var(--ease);
}
.cel__x:hover{background:#e6e6f2;color:var(--navy)}

.cel__tick{
  width:78px;height:78px;border-radius:50%;margin:0 auto 20px;
  display:inline-flex;align-items:center;justify-content:center;
  color:#04033a;background:var(--lime);
  box-shadow:0 0 0 0 rgba(150,245,7,.55);
  animation:celRing 1.5s ease-out .15s 2;
}
@keyframes celRing{
  0%{box-shadow:0 0 0 0 rgba(150,245,7,.55)}
  70%{box-shadow:0 0 0 22px rgba(150,245,7,0)}
  100%{box-shadow:0 0 0 0 rgba(150,245,7,0)}
}
/* The tick draws itself in, which reads as confirmation rather than decoration. */
.cel__tickpath{
  stroke-dasharray:30;stroke-dashoffset:30;
  animation:celDraw .5s var(--ease) .2s forwards;
}
@keyframes celDraw{to{stroke-dashoffset:0}}

.cel__t{font-size:24px;font-weight:800;color:var(--navy);margin-bottom:11px}
.cel__m{font-size:13.5px;line-height:1.8;color:var(--muted)}
.cel__actions{display:flex;gap:11px;justify-content:center;margin-top:24px;flex-wrap:wrap}
.cel__actions .btn--ghost{background:#fff;color:var(--navy);border-color:#dcdce9;backdrop-filter:none}
.cel__actions .btn--ghost:hover{background:#fff;border-color:var(--navy)}
.cel__note{font-size:11.5px;line-height:1.6;color:#8a8aa5;margin-top:16px}
.cel__note a{color:#2b2bd4;text-decoration:underline}

@media (max-width:600px){
  .cel__box{padding:32px 22px 26px}
  .cel__t{font-size:21px}
  .cel__actions{flex-direction:column}
  .cel__actions .btn{width:100%}
}
@media (prefers-reduced-motion:reduce){
  .cel__scrim,.cel__box,.cel__tick,.cel__tickpath{animation:none}
  .cel__tickpath{stroke-dashoffset:0}
}

/* ============================ LEGAL PAGES ============================ */
.legal{display:grid;grid-template-columns:230px minmax(0,1fr);gap:46px;align-items:start}
.legal__toc{position:sticky;top:100px}
.legal__toc h2{font-size:12px;font-weight:700;letter-spacing:.1em;color:var(--navy);margin-bottom:15px}
.legal__toc ol{list-style:none;margin:0;padding:0;counter-reset:toc}
.legal__toc li{counter-increment:toc;margin-bottom:2px}
.legal__toc a{
  display:block;padding:7px 12px;border-left:2px solid #e4e4ef;border-radius:0 6px 6px 0;
  font-size:12.5px;color:var(--muted);transition:all .2s var(--ease);
}
.legal__toc a::before{content:counter(toc) ". ";color:#b9b9cd}
.legal__toc a:hover,.legal__toc a.is-current{
  color:var(--navy);border-left-color:var(--lime);background:#fff;font-weight:600;
}
.legal__body{
  background:#fff;border-radius:18px;padding:44px 46px;
  box-shadow:0 2px 4px rgba(11,11,69,.04),0 14px 36px -24px rgba(11,11,69,.2);
}
.legal__body section{scroll-margin-top:100px}
.legal__body section + section{margin-top:38px;padding-top:34px;border-top:1px solid #eeeef5}
.legal__body h2{
  font-size:19px;font-weight:800;color:var(--navy);margin-bottom:14px;
  display:flex;align-items:center;gap:11px;
}
.legal__body h2::before{content:"";width:5px;height:19px;border-radius:3px;background:var(--lime);flex:none}
.legal__body h3{font-size:14px;font-weight:700;color:var(--navy);margin:22px 0 9px}
.legal__body p{font-size:13.5px;line-height:1.9;color:#4a4a68;margin-bottom:13px}
.legal__body ul{margin:0 0 14px;padding-left:0;display:grid;gap:9px}
.legal__body ul li{
  position:relative;padding-left:23px;font-size:13.5px;line-height:1.85;color:#4a4a68;
}
.legal__body ul li::before{
  content:"";position:absolute;left:5px;top:10px;width:7px;height:7px;
  border-radius:50%;background:var(--lime);
}
.legal__body a{color:#2b2bd4;text-decoration:underline}
.legal__updated{
  display:inline-flex;align-items:center;gap:9px;font-size:12px;color:var(--muted);
  background:#f2f2f9;border-radius:999px;padding:8px 16px;margin-bottom:30px;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width:1080px){
  .fgrid{grid-template-columns:repeat(3,1fr)}
  .legal{grid-template-columns:200px minmax(0,1fr);gap:32px}
  .legal__body{padding:36px 32px}
}

@media (max-width:920px){
  .sect{padding:64px 0}
  .phero{padding:112px 0 58px}
  .phero__grid{grid-template-columns:1fr;gap:30px;text-align:center}
  .phero__copy{display:flex;flex-direction:column;align-items:center}
  .phero__lead{max-width:560px}
  .phero__cta{justify-content:center}
  .pbadges{justify-content:center}
  .phero__art{max-width:520px;margin:0 auto}

  .fgrid{grid-template-columns:repeat(2,1fr)}
  .strip{grid-template-columns:1fr;text-align:center;padding:30px 26px}
  .strip__items{grid-template-columns:repeat(2,1fr);gap:22px}
  .statband{grid-template-columns:repeat(2,1fr);gap:8px}
  .statband__i{border-right:0;padding:14px 10px}
  .statband__i:nth-child(odd){border-right:1px solid rgba(255,255,255,.1)}
  .statband__i:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.1)}

  .tgrid{grid-template-columns:1fr}
  .plans{grid-template-columns:1fr;max-width:430px;margin:0 auto}
  .plan--pop{order:-1}
  .trustrow{grid-template-columns:repeat(2,1fr);gap:6px}
  .trustrow__i{border-right:0;padding:14px 16px}
  .trustrow__i:nth-child(odd){border-right:1px solid #eeeef5}
  .faq{grid-template-columns:1fr}
  .team{grid-template-columns:repeat(2,1fr)}
  .ncards{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,1fr);gap:30px 12px}
  .step:not(:last-child)::after{display:none}
  .split{grid-template-columns:1fr;gap:30px}
  .split--flip .split__art{order:-1}
  .cgrid{grid-template-columns:1fr}
  .legal{grid-template-columns:1fr;gap:24px}
  .legal__toc{position:static}
  .legal__toc ol{display:flex;flex-wrap:wrap;gap:7px}
  .legal__toc li{margin:0}
  .legal__toc a{border-left:0;border:1px solid #e4e4ef;border-radius:999px;padding:7px 14px}
  .legal__toc a.is-current,.legal__toc a:hover{border-color:var(--lime)}
  .ctastrip{flex-direction:column;text-align:center;align-items:center}
  .ctastrip__btns{justify-content:center;width:100%}
}

@media (max-width:600px){
  .sect{padding:52px 0}
  .phero{padding:100px 0 46px}
  .phero__title{font-size:clamp(26px,7.6vw,34px)}
  .pbadges{gap:16px;flex-direction:column;align-items:center}
  .pbadge{max-width:none;text-align:left}
  .phero__cta{width:100%;flex-direction:column}
  .phero__cta .btn{width:100%}

  .fgrid{grid-template-columns:1fr;gap:14px}
  .strip__items{grid-template-columns:1fr;gap:20px}
  .statband{grid-template-columns:1fr}
  .statband__i{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.1)}
  .statband__i:last-child{border-bottom:0}
  .team{grid-template-columns:1fr;max-width:340px;margin:0 auto}
  .steps{grid-template-columns:1fr;gap:26px}
  .trustrow{grid-template-columns:1fr}
  .trustrow__i{border-right:0!important;border-bottom:1px solid #eeeef5}
  .trustrow__i:last-child{border-bottom:0}
  .fgroup{grid-template-columns:1fr}
  .panel{padding:24px 20px}
  .legal__body{padding:26px 20px}
  .legal__body h2{font-size:17px}
  .ctastrip{padding:22px 20px}
  .ctastrip__btns{flex-direction:column}
  .ctastrip__btns .btn{width:100%}
  .cmpwrap{padding:20px 14px}
}
