:root{
  --bg:#fbfcff;
  --surface:#ffffff;
  --surface-soft:#f7f9fc;
  --ink:#17345a;
  --ink-soft:#5d6f88;
  --line:#e5ebf3;
  --accent:#ff731d;
  --accent-2:#ff8f3e;
  --accent-soft:rgba(255,115,29,.12);
  --shadow:0 18px 44px rgba(23,52,90,.08);
  --radius-xl:24px;
  --radius-lg:18px;
  --radius-md:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,115,29,.10), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(23,52,90,.08), transparent 18%),
    linear-gradient(180deg,#fff 0%, #fbfcff 100%);
  font:16px/1.55 "Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
img{display:block;max-width:100%}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.wrap{width:min(calc(100% - 48px),1560px);margin:0 auto}
.topbar{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(23,52,90,.08);
  backdrop-filter:blur(18px);
}
.topbar-inner{
  min-height:92px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:20px;
  align-items:center;
}
.brand{
  display:inline-block;
  width:210px;
  height:64px;
  background:url("../assets/logo-elektrovl25-header-v2-check.webp") center/contain no-repeat;
  font-size:0;
  line-height:0;
  color:transparent;
}
.brand img{display:block;width:100%;height:100%;object-fit:contain}
.nav{
  display:flex;
  justify-content:center;
  gap:22px;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}
.header-meta{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-phone{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.header-phone__icon{width:18px;height:18px}
.header-phone strong{
  display:block;
  font-size:14px;
  line-height:1.2;
}
.header-phone small{
  display:block;
  color:var(--ink-soft);
  font-size:11px;
  line-height:1.2;
}
.header-social{
  display:flex;
  gap:8px;
}
.header-social a,.footer-social a{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid rgba(23,52,90,.08);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.header-social img,.footer-social img{width:18px;height:18px}
.button,.header-cta,.works-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border:1px solid transparent;
  border-radius:10px;
  font-weight:800;
  line-height:1.1;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.button:hover,.header-cta:hover,.works-link:hover{transform:translateY(-1px)}
.header-cta,.button-primary{
  color:#fff;
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
  box-shadow:0 14px 28px rgba(255,115,29,.22);
}
.button-secondary{
  color:var(--accent);
  background:#fff;
  border-color:#ffb78c;
  box-shadow:0 10px 22px rgba(23,52,90,.04);
}
.button-full{width:100%}
.hero{
  position:relative;
  padding:14px 0 16px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 54%,rgba(255,255,255,.92) 100%);
  pointer-events:none;
}
.hero .wrap{
  position:relative;
  z-index:1;
  width:min(calc(100% - 48px),1180px);
}
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:16px;
  color:#8a97aa;
  font-size:12px;
}
.breadcrumbs>*{
  display:inline-flex;
  align-items:center;
  gap:12px;
}
.breadcrumbs>*+*::before{
  content:"";
  width:4px;
  height:4px;
  border-radius:50%;
  background:#c9d2df;
}
.hero-layout{
  position:relative;
  min-height:448px;
}
.hero-copy{
  position:relative;
  z-index:2;
  width:50%;
  padding:10px 0 0;
  background:#fff;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  color:var(--ink-soft);
  font-size:14px;
  font-weight:600;
}
.hero-eyebrow__icon{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
  font-size:14px;
}
.hero-copy h1{
  margin:0;
  font-family:"Manrope",sans-serif;
  font-size:clamp(36px,3.1vw,38px);
  line-height:1.05;
  letter-spacing:-.045em;
}
.hero-lead{
  max-width:570px;
  margin:18px 0 34px;
  color:var(--ink-soft);
  font-size:14px;
  line-height:1.58;
}
.hero-features{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-bottom:42px;
}
.hero-feature{
  display:flex;
  gap:8px;
  align-items:flex-start;
  color:#2a446b;
  font-size:12px;
  font-weight:600;
  line-height:1.35;
}
.hero-feature__icon{
  width:30px;
  height:30px;
  flex:0 0 30px;
  color:var(--ink);
}
.hero-feature__icon svg,
.hero-feature__icon img{width:100%;height:100%}
.hero-feature__icon img{
  display:block;
  object-fit:contain;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:nowrap;
}
.hero-actions .button{min-width:0;flex:1;padding-inline:16px}
.hero-visual{
  position:absolute;
  z-index:1;
  left:44%;
  right:0;
  top:-51px;
  height:408px;
  margin:0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:auto -8px -18px;
  margin:auto;
  width:110%;
  height:72px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(23,52,90,.16) 0%, rgba(23,52,90,0) 72%);
  filter:blur(18px);
}
.hero-visual img{
  position:relative;
  z-index:1;
  width:114%;
  height:408px;
  transform:translateX(-8%);
  object-fit:cover;
  object-position:center;
  border-radius:3px;
  filter:drop-shadow(0 24px 28px rgba(23,52,90,.22));
}
.lead-card{
  position:absolute;
  z-index:3;
  top:-35px;
  right:0;
  width:290px;
  margin:0;
  padding:17px 18px 12px;
  border:1px solid rgba(23,52,90,.08);
  border-radius:18px;
  background:rgba(255,255,255,.98);
  box-shadow:0 18px 42px rgba(23,52,90,.10);
}
.lead-card h2{
  margin:0 0 10px;
  font-family:"Manrope",sans-serif;
  font-size:20px;
  line-height:1.18;
  letter-spacing:-.035em;
}
.lead-card p{
  margin:0 0 10px;
  color:var(--ink-soft);
  font-size:12px;
  line-height:1.55;
}
.lead-form,.cta-form{display:grid;gap:10px}
.lead-card .lead-form{gap:4px}
.field{
  display:grid;
  gap:6px;
}
.lead-card .field:not(.field-full){
  grid-template-columns:78px minmax(0,1fr);
  align-items:center;
  gap:8px;
}
.field span{
  color:#6d7d93;
  font-size:12px;
  font-weight:600;
}
.field input,.field select,.field textarea{
  width:100%;
  min-height:50px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  color:var(--ink);
  outline:none;
}
.lead-card .field input,.lead-card .field select{
  min-height:34px;
  padding-inline:11px;
  border-radius:7px;
  font-size:12px;
}
.lead-card .field-full{gap:5px;margin-top:3px}
.lead-card .field textarea{
  min-height:54px;
  padding:8px 10px;
  border-radius:7px;
  font-size:11px;
}
.lead-card .button-full{min-height:38px;margin-top:3px}
.lead-card .form-note{text-align:center;font-size:10px}
.field textarea{
  min-height:84px;
  padding:14px;
  resize:vertical;
}
.field select{
  appearance:none;
  background-image:linear-gradient(45deg,transparent 50%, #243b60 50%),linear-gradient(135deg,#243b60 50%, transparent 50%);
  background-position:calc(100% - 18px) calc(50% - 3px),calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
  padding-right:34px;
}
.field-full{grid-column:1/-1}
.form-note{
  color:#a0a9b7;
  font-size:12px;
  line-height:1.45;
  padding-left:18px;
  position:relative;
}
.form-note::before{
  content:"◌";
  position:absolute;
  left:0;
  top:-1px;
  color:#9cacbf;
}
.form-note--light{color:rgba(255,255,255,.7)}
.section{padding:12px 0 20px}
.section-lined{
  border-top:1px solid rgba(23,52,90,.08);
}
.section-title{
  margin:0 0 22px;
  font-family:"Manrope",sans-serif;
  font-size:clamp(28px,3vw,42px);
  line-height:1.08;
  letter-spacing:-.045em;
}
.types-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:16px;
}
.type-card,.price-card,.work-card,.faq-item{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 26px rgba(23,52,90,.04);
}
.type-card{
  min-height:166px;
  padding:20px 16px 18px;
}
.type-card__icon{
  width:52px;
  height:52px;
  margin-bottom:12px;
  color:var(--ink);
}
.type-card__icon img{width:100%;height:100%;object-fit:contain;display:block}
.type-card h3{
  margin:0 0 8px;
  font-family:"Manrope",sans-serif;
  font-size:16px;
  line-height:1.24;
  letter-spacing:-.03em;
}
.type-card p{
  margin:0 0 14px;
  color:var(--ink-soft);
  font-size:14px;
  line-height:1.5;
}
.type-card a{
  color:var(--accent);
  font-size:14px;
  font-weight:700;
}
.type-card a::after{
  content:"→";
  margin-left:8px;
}
.service-points{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.service-point{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#344b6e;
  font-size:15px;
  line-height:1.5;
}
.service-point__dot{
  width:16px;
  height:16px;
  flex:0 0 16px;
  border-radius:50%;
  margin-top:4px;
  border:1.5px solid var(--accent);
  position:relative;
}
.service-point__dot::before{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:50%;
  background:var(--accent);
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
}
.price-card{
  min-height:252px;
  padding:20px 18px 18px;
  display:flex;
  flex-direction:column;
}
.price-card h3{
  margin:0 0 4px;
  font-family:"Manrope",sans-serif;
  font-size:22px;
  line-height:1.16;
  letter-spacing:-.035em;
}
.price-subtitle{
  margin:0 0 16px;
  color:#7d8ca1;
  font-size:13px;
}
.price-value{
  margin-bottom:12px;
  font-family:"Manrope",sans-serif;
  font-size:18px;
  font-weight:800;
  line-height:1.1;
}
.price-copy{
  margin:0 0 18px;
  color:var(--ink-soft);
  font-size:14px;
  line-height:1.58;
  flex:1;
}
.pricing-note{
  margin:16px 0 0;
  color:#6c7d94;
  font-size:14px;
  text-align:center;
}
.pricing-note::before{
  content:"ⓘ";
  margin-right:8px;
  color:var(--accent);
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}
.works-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:16px;
}
.work-card{
  overflow:hidden;
  padding-bottom:12px;
}
.work-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-bottom:1px solid var(--line);
}
.work-card h3{
  margin:10px 12px 4px;
  font-family:"Manrope",sans-serif;
  font-size:15px;
  line-height:1.3;
  letter-spacing:-.03em;
}
.work-card p{
  margin:0 12px;
  color:#73839a;
  font-size:13px;
}
.works-link-wrap{
  display:flex;
  justify-content:center;
  margin-top:16px;
}
.works-link{
  min-height:auto;
  padding:0;
  border:0;
  color:var(--accent);
  background:transparent;
  box-shadow:none;
  font-size:15px;
}
.works-link::after{
  content:"→";
  margin-left:8px;
}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 16px;
}
.faq-item{overflow:hidden}
.faq-question{
  width:100%;
  padding:18px 20px;
  border:0;
  background:#fff;
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:15px;
  font-weight:700;
  text-align:left;
  cursor:pointer;
}
.faq-question img{
  width:22px;
  height:22px;
  flex:0 0 auto;
  transition:transform .18s ease;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  color:var(--ink-soft);
  transition:max-height .22s ease,padding .22s ease;
}
.faq-answer p{
  margin:0;
  font-size:14px;
  line-height:1.6;
}
.faq-item.open .faq-answer{max-height:180px;padding:0 20px 18px}
.faq-item.open .faq-question img{transform:rotate(180deg)}
.section-cta{padding-bottom:24px}
.cta-band{
  display:grid;
  grid-template-columns:minmax(230px,.9fr) minmax(330px,1.12fr) minmax(220px,.82fr);
  gap:24px;
  align-items:start;
  padding:24px 20px 22px;
  color:#fff;
  background:linear-gradient(135deg,#17345a 0%, #102844 100%);
  border-radius:18px;
  box-shadow:0 24px 52px rgba(16,40,68,.18);
}
.cta-copy h2{
  margin:0 0 12px;
  font-family:"Manrope",sans-serif;
  font-size:36px;
  line-height:1.08;
  letter-spacing:-.04em;
}
.cta-copy p{
  margin:0 0 18px;
  color:rgba(255,255,255,.82);
}
.cta-contacts{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.cta-contacts a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
}
.cta-contacts img,.cta-benefit img{
  width:18px;
  height:18px;
}
.cta-hours{
  margin-top:12px;
  color:rgba(255,255,255,.72);
  font-size:13px;
}
.cta-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.cta-form .field input,.cta-form .field textarea{
  border-color:rgba(255,255,255,.22);
  background:#fff;
}
.cta-benefits{
  display:grid;
  gap:16px;
  padding-top:6px;
}
.cta-benefit{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:rgba(255,255,255,.92);
  font-weight:600;
}
.footer{
  padding:28px 0 36px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(4,.8fr);
  gap:20px;
  padding-top:10px;
}
.footer-brand{
  display:inline-block;
  width:210px;
  height:64px;
  background:url("../assets/logo-elektrovl25-header-v2-check.webp") center/contain no-repeat;
  font-size:0;
  line-height:0;
  color:transparent;
}
.footer-brand img{display:block;width:100%;height:100%;object-fit:contain}
.footer-brand-col p{
  margin:14px 0 14px;
  color:var(--ink-soft);
  max-width:280px;
}
.footer-brand-col small{color:#8a97aa}
.footer h3{
  margin:0 0 14px;
  font-size:16px;
  font-weight:800;
}
.footer-links{
  display:grid;
  gap:10px;
  color:var(--ink-soft);
  font-size:14px;
}
.footer-links a.active{color:var(--ink);font-weight:700}
.footer-contacts span,.footer-contacts a{display:block}
.footer-social{
  display:flex;
  gap:8px;
  margin-top:6px;
}
@media (max-width:1100px){
  .hero-copy{width:50%}
  .hero-copy h1{font-size:38px}
  .hero-actions{gap:10px}
  .hero-actions .button{font-size:12px;padding-inline:10px}
  .types-grid,.works-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .pricing-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .service-points{grid-template-columns:repeat(3,minmax(0,1fr))}
  .footer-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:960px){
  .wrap{width:min(calc(100% - 20px),1320px)}
  .topbar-inner{
    grid-template-columns:1fr;
    gap:12px;
    padding:14px 0;
  }
  .nav,.header-meta{justify-content:flex-start;flex-wrap:wrap}
  .hero-layout,.cta-band{grid-template-columns:1fr}
  .hero-layout{display:grid;min-height:0}
  .hero-copy{width:auto;padding-right:0;background:none}
  .hero-visual{position:relative;left:auto;right:auto;top:auto;width:auto;height:auto;margin:0;padding:0 0 14px}
  .hero-visual img{width:100%;max-width:100%;height:auto;max-height:none;transform:none;object-fit:contain}
  .lead-card{position:relative;top:auto;right:auto;width:auto;margin-top:0}
  .hero-features,.types-grid,.pricing-grid,.works-grid,.service-points,.faq-grid,.footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .brand img{height:44px}
  .nav{
    gap:14px;
    font-size:13px;
    overflow:auto;
    justify-content:flex-start;
  }
  .hero-copy h1{font-size:38px}
  .hero-eyebrow{font-size:15px}
  .hero-lead{font-size:16px}
  .hero-features,.types-grid,.pricing-grid,.works-grid,.service-points,.faq-grid,.footer-grid,.cta-form-grid{
    grid-template-columns:1fr;
  }
  .hero-actions,.header-meta,.cta-contacts{flex-direction:column;align-items:stretch}
  .lead-card .field:not(.field-full){grid-template-columns:1fr}
  .header-phone{justify-content:flex-start}
  .button,.header-cta{width:100%}
  .cta-copy h2{font-size:30px}
}

/* Switchboard hero follows the private-house hero geometry. */
.service-hero--switchboards{
  position:relative;
  overflow:hidden;
  padding:18px 0 14px;
  background:#fff;
}
.service-hero--switchboards::before{display:none}
.service-hero--switchboards .service-hero__container{
  width:calc(100% - 48px);
  max-width:1560px;
  margin-inline:auto;
}
.service-hero--switchboards .service-hero__breadcrumbs{
  position:relative;
  z-index:5;
  margin-bottom:22px;
}
.service-hero--switchboards .service-hero__layout{
  position:relative;
  display:block;
  min-height:520px;
}
.service-hero--switchboards .service-hero__content{
  position:relative;
  z-index:4;
  width:44%;
  max-width:620px;
  margin:0;
  padding:10px 24px 34px 0;
  background:transparent;
}
.service-hero--switchboards .hero-copy h1{
  max-width:600px;
  margin:8px 0 0;
  color:#082b59;
  font-size:clamp(44px,3.2vw,60px);
  line-height:1.05;
  letter-spacing:-.035em;
}
.service-hero--switchboards .service-hero__lead{
  max-width:560px;
  margin:22px 0 0;
  color:#46566d;
  font-size:18px;
  line-height:1.55;
}
.service-hero--switchboards .service-hero__benefits{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  width:100%;
  max-width:620px;
  margin:30px 0 0;
}
.service-hero--switchboards .service-hero__benefit{
  display:grid;
  grid-template-columns:30px minmax(0,1fr);
  align-items:center;
  gap:8px;
  min-width:0;
}
.service-hero--switchboards .service-hero__benefit-icon{
  width:30px;
  height:30px;
  flex:0 0 30px;
}
.service-hero--switchboards .service-hero__benefit-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.service-hero--switchboards .service-hero__benefit-text{
  min-width:0;
  color:#183451;
  font-size:12px;
  font-weight:600;
  line-height:1.25;
}
.service-hero--switchboards .service-hero__actions{
  display:flex;
  gap:16px;
  margin-top:34px;
}
.service-hero--switchboards .service-hero__actions .button{
  min-height:54px;
  padding-inline:30px;
  border-radius:7px;
}
.service-hero--switchboards .service-hero__actions .button--secondary{
  white-space:nowrap;
}
.service-hero--switchboards .service-hero__visual{
  position:absolute;
  z-index:1;
  top:0;
  right:0;
  bottom:0;
  left:40%;
  height:auto;
  min-height:0;
  overflow:hidden;
  border-radius:0;
}
.service-hero--switchboards .service-hero__visual picture,
.service-hero--switchboards .service-hero__visual img{
  display:block;
  width:100%;
  height:100%;
}
.service-hero--switchboards .service-hero__visual::before{
  content:"";
  position:absolute;
  z-index:2;
  inset:0 auto 0 0;
  width:110px;
  pointer-events:none;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.82) 32%,rgba(255,255,255,.25) 72%,rgba(255,255,255,0) 100%);
}
.service-hero--switchboards .service-hero__visual img{
  position:absolute;
  inset:0;
  width:100%;
  max-width:none;
  height:100%;
  object-fit:cover;
  object-position:38% center;
}
.service-hero--switchboards .service-hero__form{
  position:absolute;
  z-index:6;
  top:16px;
  right:20px;
  width:300px;
  box-sizing:border-box;
  margin:0;
  padding:22px 20px;
  border:1px solid rgba(15,42,75,.08);
  border-radius:16px;
  background:rgba(255,255,255,.97);
  box-shadow:0 20px 50px rgba(13,39,71,.14),0 4px 14px rgba(13,39,71,.08);
  backdrop-filter:blur(5px);
}
.service-hero--switchboards .service-hero__form h2{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.2;
}
.service-hero--switchboards .service-hero__form p{
  margin:0 0 18px;
}
.service-hero--switchboards .service-hero__form .field{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:6px;
}
.service-hero--switchboards .service-hero__form .field input,
.service-hero--switchboards .service-hero__form .field select{
  grid-column:1;
}
.service-hero--switchboards .service-hero__form .lead-form{gap:12px}
.service-hero--switchboards .service-hero__form .checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#6c7d94;
  font-size:12px;
  line-height:1.45;
}
.service-hero--switchboards .service-hero__form .checkbox input{
  width:16px;
  height:16px;
  flex:0 0 16px;
  margin:2px 0 0;
}

@media (max-width:1220px){
  .service-hero--switchboards .service-hero__layout{
    min-height:500px;
  }
  .service-hero--switchboards .service-hero__content{
    width:40%;
    max-width:560px;
    padding-right:10px;
  }
  .service-hero--switchboards .hero-copy h1{
    font-size:clamp(38px,3.5vw,52px);
  }
  .service-hero--switchboards .service-hero__visual{
    left:35%;
  }
  .service-hero--switchboards .service-hero__form{
    right:20px;
    width:280px;
    padding:20px 18px;
  }
}
@media (max-width:900px){
  .service-hero--switchboards .service-hero__container{
    width:min(calc(100% - 20px),1320px);
  }
  .service-hero--switchboards .service-hero__layout{
    min-height:460px;
  }
  .service-hero--switchboards .service-hero__content{
    width:auto;
    max-width:430px;
    margin:0;
    padding:4px 12px 24px 0;
  }
  .service-hero--switchboards .hero-copy h1{
    font-size:clamp(32px,4vw,42px);
  }
  .service-hero--switchboards .service-hero__lead{
    font-size:16px;
    line-height:1.5;
  }
  .service-hero--switchboards .service-hero__benefits{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:420px;
    gap:12px 14px;
  }
  .service-hero--switchboards .service-hero__visual{
    left:35%;
  }
  .service-hero--switchboards .service-hero__visual::before{
    width:110px;
  }
  .service-hero--switchboards .service-hero__form{
    top:22px;
    right:20px;
    width:280px;
    padding:20px 18px;
  }
}
@media (max-width:560px){
  .service-hero--switchboards{
    padding:14px 0 10px;
  }
  .service-hero--switchboards .service-hero__layout{
    display:flex;
    min-height:auto;
    flex-direction:column;
  }
  .service-hero--switchboards .service-hero__content{
    width:auto;
    max-width:none;
    margin:0;
    padding:0;
  }
  .service-hero--switchboards .hero-copy h1{
    max-width:unset;
    font-size:40px;
  }
  .service-hero--switchboards .service-hero__benefits{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:none;
  }
  .service-hero--switchboards .service-hero__actions{
    flex-direction:column;
  }
  .service-hero--switchboards .service-hero__actions .button{
    width:100%;
  }
  .service-hero--switchboards .service-hero__visual{
    position:relative;
    order:2;
    left:auto;
    width:100%;
    height:320px;
    margin-top:28px;
    border-radius:16px;
  }
  .service-hero--switchboards .service-hero__visual img{
    inset:0;
    width:100%;
    object-position:38% center;
  }
  .service-hero--switchboards .service-hero__visual::before{
    display:none;
  }
  .service-hero--switchboards .service-hero__form{
    position:relative;
    order:3;
    top:auto;
    right:auto;
    width:100%;
    margin-top:16px;
  }
}

/* Includes and pricing blocks follow the supplied switchboard page reference. */
.service-includes{
  padding:58px 0 62px;
  background:#f7f9fc;
  border-top:1px solid #e9eef5;
  border-bottom:1px solid #e9eef5;
}
.service-includes .section-title,
.prices-section .section-title{
  margin:0 0 28px;
  color:#082f63;
  font-size:clamp(34px,2.4vw,48px);
  line-height:1.1;
  letter-spacing:-.03em;
}
.service-includes__grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:20px;
}
.service-includes__item{
  display:grid;
  grid-template-columns:62px minmax(0,1fr);
  grid-column:span 2;
  gap:18px;
  min-height:166px;
  padding:24px 26px;
  border:1px solid #dfe7f0;
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 24px rgba(9,43,79,.035);
}
.service-includes__item:nth-child(n+4){grid-column:span 3}
.service-includes__aside{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.service-includes__number{
  display:grid;
  width:48px;
  height:48px;
  place-items:center;
  border-radius:50%;
  background:#fff0e6;
  color:#ff6b22;
  font-size:21px;
  font-weight:750;
  line-height:1;
}
.service-includes__icon{
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
}
.service-includes__icon img{
  width:38px;
  height:38px;
  object-fit:contain;
}
.service-includes__content h3{
  margin:1px 0 10px;
  color:#082f63;
  font-size:19px;
  font-weight:700;
  line-height:1.25;
}
.service-includes__content p{
  max-width:470px;
  margin:0;
  color:#617188;
  font-size:16px;
  line-height:1.5;
}
.prices-section{
  padding:54px 0 64px;
  background:#fff;
}
.prices-section .section-title{margin-bottom:26px}
.price-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.prices-section .price-card{
  position:relative;
  display:flex;
  min-width:0;
  min-height:340px;
  flex-direction:column;
  padding:20px 20px 18px;
  border:1px solid #dfe7f0;
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 26px rgba(9,43,79,.045);
}
.price-card__badge{
  align-self:flex-start;
  padding:5px 12px;
  border-radius:20px;
  background:#f1f5fa;
  color:#60728a;
  font-size:13px;
  line-height:1;
}
.prices-section .price-card h3.price-card__title{
  margin:18px 0 8px;
  color:#082f63;
  font-size:20px;
  font-weight:700;
  line-height:1.2;
}
.price-card__price{
  margin-bottom:20px;
  color:#082f63;
  font-size:29px;
  font-weight:750;
  line-height:1.1;
  letter-spacing:-.02em;
}
.price-card__features{
  display:grid;
  gap:11px;
  margin:0 0 24px;
  padding:0;
  list-style:none;
  color:#566a82;
  font-size:15px;
  line-height:1.45;
}
.price-card__features li{
  position:relative;
  padding-left:23px;
}
.price-card__features li::before{
  content:"✓";
  position:absolute;
  top:0;
  left:0;
  color:#ff6b22;
  font-weight:800;
}
.price-card__button{
  width:100%;
  min-height:48px;
  margin-top:auto;
  border:1px solid #ff712b;
  border-radius:9px;
  background:#fff;
  color:#ff6521;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:background-color .2s ease,color .2s ease,box-shadow .2s ease;
}
.price-card__button:hover{background:#fff4ed}
.prices-section .price-card--featured{
  border-color:#ff7a35;
  box-shadow:0 12px 32px rgba(255,105,35,.11);
}
.prices-section .price-card--featured .price-card__button{
  border-color:#ff712b;
  background:#ff712b;
  color:#fff;
  box-shadow:0 9px 20px rgba(255,105,35,.2);
}
.prices-section .price-card--featured .price-card__button:hover{background:#ef5f18}
.price-card__label{
  position:absolute;
  top:-1px;
  right:-1px;
  padding:7px 11px;
  border-radius:0 15px 0 10px;
  background:#ff712b;
  color:#fff;
  font-size:12px;
  font-weight:700;
}
.price-note{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:20px;
  padding:17px 22px;
  border-radius:13px;
  background:#fff3eb;
  color:#52667e;
  font-size:15px;
  line-height:1.45;
}
.price-note p{margin:0}
.price-note__icon{
  display:grid;
  width:28px;
  height:28px;
  flex:0 0 28px;
  place-items:center;
  border:2px solid #ff712b;
  border-radius:50%;
  color:#ff712b;
  font-weight:750;
  line-height:1;
}
@media (max-width:1450px){
  .price-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:1050px){
  .service-includes__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .service-includes__grid .service-includes__item{grid-column:auto}
  .price-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:650px){
  .service-includes,.prices-section{padding:42px 0}
  .service-includes__grid,.price-grid{grid-template-columns:1fr}
  .service-includes__item{grid-template-columns:48px minmax(0,1fr);padding:20px 18px}
  .prices-section .price-card{
    min-height:0;
    padding:18px;
    border-radius:16px;
    box-shadow:0 5px 16px rgba(8,47,99,.045);
  }
  .prices-section .price-card--featured{
    border-color:#ff7a35;
    background:#fffaf7;
    box-shadow:0 8px 22px rgba(255,105,35,.10);
  }
  .price-card__badge{
    padding:6px 9px;
    border-radius:20px;
    font-size:11px;
  }
  .prices-section .price-card h3.price-card__title{
    margin:12px 0 0;
    padding-right:116px;
    font-size:20px;
    line-height:1.15;
  }
  .price-card__price{
    margin:8px 0 0;
    font-size:22px;
    line-height:1.1;
  }
  .price-card__features{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px 14px;
    margin:18px 0;
    font-size:13px;
    line-height:1.35;
  }
  .price-card__features li{
    min-width:0;
    padding-left:19px;
  }
  .price-card__label{
    top:18px;
    right:18px;
    padding:6px 9px;
    border-radius:20px;
    font-size:11px;
    line-height:1;
  }
  .price-card__button{
    min-height:46px;
    font-size:14px;
    font-weight:700;
  }
  .price-note{align-items:flex-start;justify-content:flex-start}
}

@media (max-width:640px){
  .service-hero--switchboards .service-hero__form{
    display:none;
  }
}
