:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-muted:#f4f7fa;
  --text:#0f1b2d;
  --muted:#586477;
  --line:#d8dee7;
  --blue:#1f4f8f;
  --blue-deep:#163c6b;
  --accent:#F9D551;
  --radius-xl:24px;
  --radius-lg:20px;
  --radius-md:16px;
  --radius-sm:12px;
  --container:1180px;
  --header-h:82px;
  --ease:cubic-bezier(.22,1,.36,1);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
}

body.menu-open{
  overflow:hidden;
}

body.consult-modal-open{
  overflow:hidden;
}

img{
  display:block;
  width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input{
  font:inherit;
}

button{
  cursor:pointer;
}

.container{
  width:min(calc(100% - 48px), var(--container));
  margin:0 auto;
}

/* Header */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  transition:background-color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
  border-bottom:1px solid transparent;
}

.site-header.is-scrolled{
  background:rgba(255,255,255,.97);
  border-color:rgba(15,27,45,.08);
}

.header-inner{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  flex:0 0 auto;
  width:198px;
  max-width:54vw;
}

.brand img{
  width:100%;
  object-fit:contain;
}

.menu-toggle,
.menu-close{
  appearance:none;
  border:0;
  background:transparent;
  color:inherit;
  padding:0;
}

.menu-toggle{
  width:18px;
  height:12px;
  display:inline-flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:stretch;
  color:#ffffff;
  position:relative;
  z-index:2;
}

.menu-toggle span{
  display:block;
  height:2px;
  background:currentColor;
  border-radius:999px;
  transition:transform .22s var(--ease), opacity .22s var(--ease), color .22s var(--ease);
}

.site-header.is-scrolled .menu-toggle{
  color:var(--text);
}

body.menu-open .menu-toggle{
  color:var(--text);
}

body.menu-open .menu-toggle span:nth-child(1){
  transform:translateY(5px) rotate(45deg);
}
body.menu-open .menu-toggle span:nth-child(2){
  opacity:0;
}
body.menu-open .menu-toggle span:nth-child(3){
  transform:translateY(-5px) rotate(-45deg);
}

.menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(9,16,27,.32);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s var(--ease);
  z-index:55;
}

body.menu-open .menu-backdrop{
  opacity:1;
  pointer-events:auto;
}

.menu-panel{
  position:fixed;
  top:0;
  right:0;
  width:min(380px, 100vw);
  height:100svh;
  background:#ffffff;
  color:var(--text);
  transform:translateX(100%);
  transition:transform .28s var(--ease);
  z-index:60;
  border-left:1px solid var(--line);
}

body.menu-open .menu-panel{
  transform:translateX(0);
}

.menu-panel__inner{
  height:100%;
  display:flex;
  flex-direction:column;
  padding:22px 22px 18px;
}

.menu-panel__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-bottom:16px;
  border-bottom:1px solid var(--line);
}

.menu-panel__brand{
  width:164px;
  max-width:70%;
}

.menu-close{
  font-size:34px;
  line-height:1;
  color:var(--text);
}

.menu-nav{
  padding:12px 0 0;
  overflow:auto;
}

.menu-link,
.menu-parent{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
  color:var(--text);
  background:transparent;
  font-size:1.05rem;
  font-weight:700;
  text-align:left;
}

.menu-parent{
  appearance:none;
  border-top:0;
  border-left:0;
  border-right:0;
  border-radius:0;
  box-shadow:none;
}

.menu-plus{
  position:relative;
  width:14px;
  height:14px;
  flex:0 0 14px;
}

.menu-plus::before,
.menu-plus::after{
  content:"";
  position:absolute;
  inset:50% auto auto 50%;
  width:14px;
  height:2px;
  background:var(--text);
  border-radius:99px;
  transform:translate(-50%,-50%);
  transition:transform .22s var(--ease), opacity .22s var(--ease);
}

.menu-plus::after{
  width:2px;
  height:14px;
}

.menu-parent[aria-expanded="true"] .menu-plus::after{
  opacity:0;
}

.menu-submenu{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .24s var(--ease);
}

.menu-submenu > div,
.menu-submenu-inner{
  overflow:hidden;
}

.menu-group.is-open .menu-submenu{
  grid-template-rows:1fr;
}

.menu-submenu a{
  display:block;
  padding:12px 0 0 14px;
  color:var(--muted);
  font-size:.98rem;
}

.menu-submenu a:last-child{
  padding-bottom:12px;
}

.menu-panel__meta{
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid var(--line);
  display:grid;
  gap:8px;
  font-size:.98rem;
  font-weight:600;
}

/* Hero */
.hero{
  position:relative;
  width:100%;
  min-height:100svh;
  margin:0;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#0b1320;
}

.hero-media,
.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-media{
  overflow:hidden;
  background:#0b1320;
}

.hero-poster{
  position:absolute;
  inset:0;
  background:url('https://www.solenergispecialisten.se/wp-content/uploads/2022/10/Hornells.jpg') center center / cover no-repeat;
  transform:scale(1.04);
}

.hero iframe{
  position:absolute;
  top:50%;
  left:50%;
  width:177.77777778vh;
  min-width:100%;
  height:56.25vw;
  min-height:100%;
  transform:translate(-50%, -50%) scale(1.08);
  border:0;
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}

.hero.video-enabled iframe{
  opacity:1;
}

.hero-overlay{
  background:rgba(9,17,29,.62);
}

.hero > .container.hero-inner{
  position:relative;
  z-index:2;
  width:min(calc(100% - 48px), var(--container));
  max-width:var(--container);
  margin:0 auto;
  padding:calc(var(--header-h) + 48px) 0 72px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(440px, 500px);
  align-items:start;
  gap:42px;
}

.hero-copy{
  max-width:640px;
  color:#ffffff;
}

.hero-copy h1{
  margin:0;
  max-width:10.2ch;
  font-size:clamp(3.1rem, 6vw, 5.5rem);
  line-height:.94;
  letter-spacing:-.06em;
  font-weight:800;
}

.hero-copy p{
  margin:18px 0 0;
  max-width:34ch;
  font-size:1.08rem;
  line-height:1.5;
  color:rgba(255,255,255,.92);
}

.hero-consult{
  width:100%;
  max-width:500px;
  justify-self:end;
}
.hero-form{
  margin-top:26px;
  max-width:940px;
  background:#ffffff;
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-lg);
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  overflow:hidden;
}

.hero-form label{
  display:grid;
  gap:6px;
  padding:14px 16px;
  border-right:1px solid var(--line);
  background:#ffffff;
}

.hero-form span,
.lead-band__form span{
  font-size:.74rem;
  line-height:1;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--muted);
}

.hero-form input,
.lead-band__form input{
  border:0;
  min-width:0;
  padding:0;
  background:transparent;
  color:var(--text);
  outline:none;
  font-size:.98rem;
}

.hero-form input::placeholder,
.lead-band__form input::placeholder{
  color:#8792a3;
}

.hero-form button,
.lead-band__form button{
  border:0;
  background:var(--accent);
  color:#111820;
  padding:0 24px;
  font-weight:800;
  font-size:.95rem;
  transition:background-color .18s ease;
}

.hero-form button:hover,
.lead-band__form button:hover{
  background:#f2cc35;
}

/* Stats band */
.stats-band{
  background:var(--blue);
  color:#ffffff;
}

.stats-band__inner{
  min-height:110px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
}

.stat{
  display:grid;
  place-items:center;
  gap:4px;
  text-align:center;
  padding:18px 14px;
}

.stat + .stat{
  border-left:1px solid rgba(255,255,255,.16);
}

.stat strong{
  font-size:clamp(1.6rem, 2vw, 2.35rem);
  line-height:1;
  letter-spacing:-.03em;
}

.stat span{
  font-size:.92rem;
  color:rgba(255,255,255,.82);
  text-transform:lowercase;
}

/* Sections */
.section{
  padding:74px 0;
}

.section-services{
  background:#ffffff;
}

.section-provider,
.section-faq{
  background:var(--surface-muted);
}

.section-references,
.section-process{
  background:#ffffff;
}

.section-head{
  margin-bottom:28px;
}

.section-head h2{
  margin:0;
  font-size:clamp(2.25rem, 4vw, 3.7rem);
  line-height:.96;
  letter-spacing:-.055em;
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.56;
  max-width:52ch;
}

.split-head{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 480px);
  gap:24px;
  align-items:end;
}

/* Services */
.service-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.service-card{
  min-height:292px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:28px;
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  transition:border-color .18s ease, transform .18s ease, background-color .18s ease;
}

.service-card:hover{
  border-color:rgba(31,79,143,.34);
  background:#fbfcfe;
  transform:translateY(-3px);
}

.service-card__icon{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  border:1px solid rgba(31,79,143,.16);
  background:#f7f9fc;
  color:var(--blue);
}

.service-card__icon svg{
  width:30px;
  height:30px;
}

.service-card h3{
  margin:20px 0 0;
  font-size:1.36rem;
  line-height:1.04;
  letter-spacing:-.03em;
}

.service-card p{
  margin:14px 0 0;
  color:var(--muted);
  max-width:31ch;
}

.service-card__link{
  margin-top:auto;
  padding-top:22px;
  font-size:.95rem;
  font-weight:700;
  color:var(--blue);
}

/* Provider */
.provider-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:34px;
  align-items:center;
}

.provider-media{
  margin:0;
  border-radius:var(--radius-xl);
  overflow:hidden;
  aspect-ratio:1.02 / .82;
  background:#d9dee5;
}

.provider-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.provider-copy h2{
  margin:0;
  font-size:clamp(2.15rem, 3.8vw, 3.45rem);
  line-height:.96;
  letter-spacing:-.055em;
}

.provider-copy p{
  margin:16px 0 0;
  color:var(--muted);
  max-width:50ch;
}

.provider-points{
  margin-top:24px;
  display:grid;
  gap:12px;
}

.provider-point{
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:#ffffff;
}

.provider-point strong{
  display:block;
  font-size:1rem;
  margin-bottom:6px;
}

.provider-point span{
  color:var(--muted);
}

/* References */
.references-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.reference-card{
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:#ffffff;
  transition:transform .18s ease, border-color .18s ease;
}

.reference-card:hover{
  transform:translateY(-2px);
  border-color:#c3ccd8;
}

.reference-image{
  aspect-ratio:1.14 / .78;
  background:#dce3ec;
}

.reference-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.reference-body{
  padding:16px 18px 18px;
}

.reference-topline{
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--blue);
}

.reference-body h3{
  margin:8px 0 4px;
  font-size:1.32rem;
  line-height:1.06;
}

.reference-body p{
  margin:0;
  color:var(--muted);
}

.reference-metrics{
  margin:16px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}

.reference-metrics div{
  padding-top:12px;
  border-top:1px solid var(--line);
}

.reference-metrics dt{
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--muted);
  margin:0 0 4px;
}

.reference-metrics dd{
  margin:0;
  font-size:1.15rem;
  font-weight:700;
}

/* Process */
.process-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.process-step{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:20px 18px;
  background:#ffffff;
}

.process-number{
  display:inline-block;
  margin-bottom:14px;
  font-size:.85rem;
  font-weight:800;
  letter-spacing:.06em;
  color:var(--blue);
}

.process-step h3{
  margin:0;
  font-size:1.15rem;
  line-height:1.08;
}

.process-step p{
  margin:10px 0 0;
  color:var(--muted);
}

/* FAQ */
.faq-list{
  border-top:1px solid var(--line);
  background:#ffffff;
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  overflow:hidden;
}

.faq-item + .faq-item{
  border-top:1px solid var(--line);
}

.faq-trigger{
  width:100%;
  border:0;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  text-align:left;
  color:var(--text);
  font-size:1.05rem;
  font-weight:700;
}

.faq-icon{
  width:16px;
  height:16px;
  position:relative;
  flex:0 0 16px;
}

.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  inset:50% auto auto 50%;
  background:var(--blue);
  border-radius:999px;
  transform:translate(-50%,-50%);
  transition:transform .2s var(--ease), opacity .2s var(--ease);
}

.faq-icon::before{
  width:16px;
  height:2px;
}

.faq-icon::after{
  width:2px;
  height:16px;
}

.faq-trigger[aria-expanded="true"] .faq-icon::after{
  opacity:0;
}

.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .24s var(--ease);
}

.faq-answer > div{
  overflow:hidden;
}

.faq-item.is-open .faq-answer{
  grid-template-rows:1fr;
}

.faq-answer p{
  margin:0;
  padding:0 22px 20px;
  color:var(--muted);
  max-width:74ch;
}

/* Lead band */
.lead-band{
  background:var(--blue);
  color:#ffffff;
  padding:0;
}

.lead-band__inner{
  min-height:188px;
  display:grid;
  grid-template-columns:minmax(0, .78fr) minmax(0, 1.22fr);
  gap:26px;
  align-items:center;
  padding:42px 0;
}

.lead-band__copy h2{
  margin:0;
  font-size:clamp(2.1rem, 4vw, 3.4rem);
  line-height:.96;
  letter-spacing:-.055em;
}

.lead-band__copy p{
  margin:10px 0 0;
  color:rgba(255,255,255,.84);
  max-width:34ch;
}

.lead-band__form{
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#ffffff;
}

.lead-band__form label{
  display:grid;
  gap:6px;
  padding:14px 16px;
  border-right:1px solid var(--line);
  background:#ffffff;
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }
}

@media (max-width: 1120px){
  .hero-form,
  .lead-band__form{
    grid-template-columns:1fr 1fr;
  }

  .hero-form button,
  .lead-band__form button{
    min-height:54px;
  }

  .references-grid,
  .process-row{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .container{
    width:min(calc(100% - 32px), var(--container));
  }

  .hero{
    min-height:auto;
  }

  .hero > .container.hero-inner{
    padding:calc(var(--header-h) + 28px) 0 44px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    align-items:start;
    gap:22px;
  }

  .hero-copy{
    max-width:680px;
    padding-top:0;
  }

  .hero-copy h1{
    max-width:9.8ch;
    font-size:clamp(2.75rem, 11vw, 4.2rem);
  }

  .hero-copy p{
    font-size:1rem;
    max-width:34ch;
  }

  .hero-consult{
    max-width:100%;
    justify-self:stretch;
    margin-top:0;
  }

  .split-head,
  .provider-grid,
  .lead-band__inner{
    grid-template-columns:1fr;
  }

  .service-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
  }

  .service-card{
    min-height:unset;
    padding:24px;
  }

  .references-grid,
  .process-row{
    grid-template-columns:1fr;
  }

  .lead-band__copy p{
    max-width:unset;
  }
}

@media (max-width: 720px){
  :root{
    --header-h:74px;
  }

  .brand{
    width:170px;
  }

  .site-header.is-scrolled{
    background:#ffffff;
  }

  .menu-panel{
    width:100vw;
  }

  .service-cards{
    grid-template-columns:1fr;
  }

  .service-card{
    padding:22px;
    border-radius:var(--radius-lg);
  }

  .hero{
    width:100%;
    margin-top:0;
    border-radius:0;
  }

  .hero > .container.hero-inner{
    padding:calc(var(--header-h) + 22px) 0 28px;
  }

  .hero-copy h1{
    max-width:8.6ch;
  }

  .stats-band__inner{
    grid-template-columns:1fr;
  }

  .stat + .stat{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.16);
  }

  .faq-trigger{
    padding:18px 18px;
    font-size:1rem;
  }

  .faq-answer p{
    padding:0 18px 18px;
  }

  .section{
    padding:58px 0;
  }

  .section-head{
    margin-bottom:22px;
  }
}


/* Hero form mount */
.hero-consult{
  margin-top:0;
}

/* CTA band */
.lead-band{
  background: var(--blue);
  color: #ffffff;
  padding: 56px 0;
}

.lead-band__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.lead-band__copy h2{
  margin:0;
  font-size:clamp(2rem,3vw,3rem);
  line-height:.96;
  letter-spacing:-.055em;
}

.lead-band__copy p{
  margin:10px 0 0;
  max-width:54ch;
  color:rgba(255,255,255,.82);
}

.lead-band__cta{
  appearance:none;
  border:0;
  border-radius:999px;
  background:var(--accent);
  color:#111820;
  padding:14px 24px;
  font-size:.96rem;
  font-weight:800;
  transition:transform .18s ease, background-color .18s ease;
  white-space:nowrap;
}

.lead-band__cta:hover{
  background:#f2cc35;
  transform:translateY(-1px);
}

@media (max-width: 900px){
  .lead-band__inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .lead-band__cta{
    width:100%;
    justify-content:center;
    display:inline-flex;
  }
}


/* Footer */
.site-footer{
  background:#0f1b2d;
  color:#ffffff;
  padding:56px 0 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) repeat(3, minmax(0,1fr));
  gap:40px 28px;
  align-items:start;
}

.footer-brand{
  max-width:340px;
}

.footer-brand img{
  width:188px;
  max-width:100%;
}

.footer-brand p{
  margin:18px 0 0;
  color:rgba(255,255,255,.72);
  line-height:1.65;
}

.footer-col h3{
  margin:0 0 16px;
  font-size:1rem;
  line-height:1.2;
  letter-spacing:-.02em;
}

.footer-col a{
  display:block;
  color:rgba(255,255,255,.72);
  padding:7px 0;
  transition:color .18s ease;
}

.footer-col a:hover{
  color:#ffffff;
}

.footer-col--contact a{
  font-weight:600;
}


.footer-bottom{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.56);
  font-size:.94rem;
}

.footer-bottom a{
  color:#ffffff;
  font-weight:600;
}

@media (max-width: 980px){
  .footer-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .site-footer{
    padding:42px 0 18px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .footer-brand img{
    width:170px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}



/* Service page */
.service-page .site-header{
  background:transparent;
}
.service-page .site-header.is-scrolled{
  background:rgba(255,255,255,.97);
}
.service-page .brand{
  width:198px;
}

.service-hero{
  position:relative;
  min-height:72svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#0b1320;
}
.service-hero__media,
.service-hero__overlay{
  position:absolute;
  inset:0;
}
.service-hero__media{
  background:url('https://www.solenergispecialisten.se/wp-content/uploads/2022/10/Hornells.jpg') center center / cover no-repeat;
  transform:scale(1.02);
}
.service-hero__overlay{
  background:linear-gradient(90deg, rgba(9,17,29,.62) 0%, rgba(9,17,29,.44) 42%, rgba(9,17,29,.26) 100%);
}
.service-hero__inner{
  position:relative;
  z-index:2;
  width:min(calc(100% - 48px), var(--container));
  max-width:var(--container);
  margin:0 auto;
  padding:calc(var(--header-h) + 44px) 0 64px;
}
.service-hero__copy{
  max-width:640px;
  color:#ffffff;
}
.service-hero__copy h1{
  margin:0;
  font-size:clamp(3.2rem, 6vw, 5.6rem);
  line-height:.94;
  letter-spacing:-.06em;
  font-weight:800;
}
.service-hero__copy p{
  margin:18px 0 0;
  max-width:34ch;
  font-size:1.08rem;
  line-height:1.5;
  color:rgba(255,255,255,.92);
}
.service-hero__cta{
  margin-top:24px;
  min-height:48px;
  padding:0 22px;
  border:0;
  border-radius:999px;
  background:var(--accent);
  color:#111820;
  font-weight:800;
  transition:transform .18s ease, background-color .18s ease;
}
.service-hero__cta:hover{
  transform:translateY(-1px);
  background:#f2cc35;
}

.service-overview{
  background:#ffffff;
}
.service-overview__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:44px;
  align-items:start;
}
.service-overview__main h2,
.service-panel h2,
.service-audience h2{
  margin:0;
  font-size:clamp(2.2rem, 4vw, 3.25rem);
  line-height:.96;
  letter-spacing:-.05em;
}
.service-lead{
  margin:16px 0 0;
  max-width:30ch;
  font-size:1.25rem;
  line-height:1.4;
  color:var(--text);
}
.service-copy{
  margin-top:26px;
  max-width:62ch;
  display:grid;
  gap:16px;
}
.service-copy p{
  margin:0;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.7;
}
.service-overview__facts{
  display:grid;
  gap:14px;
}
.service-fact{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:16px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--surface);
}
.service-fact__icon{
  width:56px;
  height:56px;
  border-radius:18px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:var(--blue);
}
.service-fact__icon svg{
  width:28px;
  height:28px;
}
.service-fact h3{
  margin:0 0 6px;
  font-size:1.08rem;
  line-height:1.2;
}
.service-fact p{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
  line-height:1.55;
}

.service-details{
  background:var(--surface-muted);
}
.service-details__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}
.service-panel{
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  background:#ffffff;
  padding:28px;
}
.service-panel__eyebrow{
  margin-bottom:12px;
  font-size:.78rem;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--blue);
}
.service-panel--accent{
  background:#0f1b2d;
  border-color:#0f1b2d;
  color:#ffffff;
}
.service-panel--accent .service-panel__eyebrow{
  color:var(--accent);
}
.service-panel--accent h2,
.service-panel--accent h3,
.service-panel--accent li,
.service-panel--accent .service-panel__note{
  color:#ffffff;
}
.service-tax-list{
  margin:24px 0 0;
  padding:0;
  list-style:none;
  counter-reset:tax;
  display:grid;
  gap:16px;
}
.service-tax-list li{
  counter-increment:tax;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
}
.service-tax-list li::before{
  content:counter(tax, decimal-leading-zero);
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#edf4fb;
  color:var(--blue);
  font-size:.9rem;
  font-weight:800;
}
.service-tax-list strong,
.service-guarantee-group h3{
  display:block;
  margin:0 0 4px;
  font-size:1rem;
  line-height:1.35;
}
.service-tax-list span,
.service-guarantee-group li,
.service-panel__note{
  color:var(--muted);
  line-height:1.6;
}
.service-panel--accent .service-tax-list span,
.service-panel--accent .service-panel__note{
  color:rgba(255,255,255,.82);
}
.service-guarantee-group + .service-guarantee-group{
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
}
.service-panel:not(.service-panel--accent) .service-guarantee-group + .service-guarantee-group{
  border-top:1px solid var(--line);
}
.service-guarantee-group ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.service-guarantee-group li{
  position:relative;
  padding-left:18px;
}
.service-guarantee-group li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:6px;
  height:6px;
  border-radius:999px;
  background:var(--accent);
  transform:translateY(-50%);
}
.service-panel__note{
  margin:24px 0 0;
  font-size:.95rem;
}

.service-audience{
  background:#ffffff;
}
.service-audience__inner{
  display:grid;
  gap:20px;
}
.service-audience__list{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:12px;
}
.service-audience__list span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:74px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:var(--surface);
  font-weight:700;
  text-align:center;
}

.menu-submenu a[aria-current="page"],
.footer-col a[aria-current="page"]{
  color:var(--blue);
  font-weight:700;
}

@media (max-width: 980px){
  .service-overview__grid,
  .service-details__grid{
    grid-template-columns:1fr;
  }

  .service-audience__list{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .service-hero{
    min-height:60svh;
    align-items:flex-end;
  }
  .service-hero__inner{
    padding:calc(var(--header-h) + 34px) 0 44px;
  }
  .service-hero__copy h1{
    font-size:clamp(2.75rem, 13vw, 4.2rem);
  }
  .service-hero__copy p{
    max-width:24ch;
    font-size:1rem;
  }
  .service-lead{
    font-size:1.1rem;
  }
  .service-panel{
    padding:22px;
  }
  .service-audience__list{
    grid-template-columns:1fr;
  }
}
