:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9dee7;
  --panel: #f5f7fa;
  --white: #ffffff;
  --red: #f79007;
  --red-dark: #c66e04;
  --blue: #2d8fc4;
  --green: #167a5b;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 74px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(45, 143, 196, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgba(247, 144, 7, 0.12), transparent 25rem),
    var(--white);
  line-height: 1.5;
}

.quick-contact {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  width: auto;
  max-width: calc(100vw - 28px);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.quick-contact.open {
  width: min(280px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.95);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.quick-contact-toggle {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  cursor: pointer;
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 14px 44px rgba(17, 24, 39, 0.32);
}

.quick-contact-toggle::before {
  content: "☎";
  font-size: 1.35rem;
}

.quick-contact-close {
  display: none;
}

.quick-contact-links {
  display: none;
}

.quick-contact.open .quick-contact-toggle {
  display: none;
}

.quick-contact.open .quick-contact-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.quick-contact.open .quick-contact-links a {
  width: 100%;
  min-height: 44px;
}

.quick-contact.open .quick-contact-close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
}

.quick-contact.open .quick-contact-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.quick-contact a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.quick-contact .quick-call {
  background: var(--blue);
}

.quick-contact .quick-whatsapp {
  background: #25d366;
}

.quick-contact .quick-estimate,
.quick-contact .quick-callback {
  background: rgba(255, 255, 255, 0.08);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(225, 29, 46, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(17, 24, 39, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  width: 112px;
  height: 72px;
  place-items: center;
  overflow: hidden;
}

.brand img {
  width: 88px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.nav a,
.header-cta,
.button {
  text-decoration: none;
}

.nav a:hover {
  color: var(--white);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  overflow: hidden;
  color: var(--white);
  background: #070a12;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.92), rgba(7, 10, 18, 0.7) 36%, rgba(7, 10, 18, 0.18) 72%),
    url("assets/hero-redvolt.png") center / cover;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 80px 0;
  z-index: 2;
}

.circuit-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.74;
}

.circuit-field span {
  position: absolute;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100, 199, 255, 0.85), rgba(247, 144, 7, 0.7), transparent);
  box-shadow: 0 0 28px rgba(45, 143, 196, 0.45);
}

.circuit-field span:nth-child(1) {
  top: 19%;
  right: 8%;
  width: 34%;
  transform: rotate(-8deg);
}

.circuit-field span:nth-child(2) {
  top: 44%;
  right: 2%;
  width: 26%;
  transform: rotate(22deg);
}

.circuit-field span:nth-child(3) {
  bottom: 21%;
  left: 40%;
  width: 38%;
  transform: rotate(-17deg);
}

.circuit-field span:nth-child(4) {
  bottom: 42%;
  left: 4%;
  width: 18%;
  transform: rotate(31deg);
}

.hero-card {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: 0 clamp(20px, 5vw, 70px) 72px 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(45, 143, 196, 0.28));
  box-shadow: 0 28px 95px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 120px;
  height: 104px;
  object-fit: contain;
  object-position: top;
  margin-bottom: 18px;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 1.1rem;
}

.hero-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #64c7ff;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-actions,
.form-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.primary:hover,
.header-cta:hover {
  background: #1f6f99;
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(560px, 100%);
  margin: 46px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-row div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-row dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.trust-row dd {
  margin: 4px 0 0;
  font-size: 1.3rem;
  font-weight: 900;
}

.section {
  padding: 88px clamp(20px, 6vw, 86px);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: 36px;
  padding: 78px clamp(20px, 6vw, 86px);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(45, 143, 196, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(45, 143, 196, 0.08), rgba(247, 144, 7, 0.06)),
    var(--white);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1.04rem;
}

.trust-grid span {
  margin-top: 10px;
  color: var(--muted);
}

.solution-finder {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  gap: 28px;
  padding: 88px clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(13, 54, 78, 0.96)),
    var(--ink);
  color: var(--white);
}

.solution-sidebar {
  position: sticky;
  top: 118px;
  align-self: start;
}

.solution-sidebar p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.solution-tabs {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.solution-tabs button {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.solution-tabs button::after {
  content: "→";
  color: var(--red);
}

.solution-tabs button.active,
.solution-tabs button:hover {
  color: var(--white);
  border-color: rgba(100, 199, 255, 0.55);
  background: linear-gradient(135deg, rgba(45, 143, 196, 0.5), rgba(247, 144, 7, 0.22));
}

.solution-panel {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 249, 0.94));
  color: var(--ink);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
}

.solution-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border: 34px solid rgba(45, 143, 196, 0.12);
  border-radius: 50%;
}

.solution-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-weight: 900;
}

.solution-panel h3 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.solution-panel > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.solution-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.solution-columns div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.solution-columns h4 {
  margin: 0 0 10px;
}

.solution-columns ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.solution-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.solution-outcomes span {
  padding: 9px 11px;
  color: #0e4b69;
  background: rgba(45, 143, 196, 0.12);
  border: 1px solid rgba(45, 143, 196, 0.24);
  border-radius: 6px;
  font-weight: 800;
}

.solution-cta {
  margin-top: 28px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(135deg, #f8fafc 0%, #eef5f9 56%, #ffffff 100%);
}

.intro-copy p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.story-visual {
  position: relative;
  margin: 0;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 2px solid rgba(45, 143, 196, 0.28);
  border-radius: 10px;
}

.story-visual img {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-visual figcaption {
  position: relative;
  margin: -38px 18px 0;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.9);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  font-weight: 800;
}

.section-head {
  max-width: 850px;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(45, 143, 196, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 249, 0.9)),
    var(--white);
  box-shadow: 0 12px 42px rgba(17, 24, 39, 0.08);
}

.services-grid article::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border: 20px solid rgba(45, 143, 196, 0.12);
  border-radius: 50%;
}

.service-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 6px;
  font-weight: 900;
}

.services-grid p,
.sector-grid p,
.process-list,
.faq p,
.proposal-copy p,
.proposal-copy li {
  color: var(--muted);
}

.services-grid article > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sector-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border-left: 5px solid var(--blue);
  background: #101827;
  color: var(--white);
  box-shadow: var(--shadow);
}

.sector-grid article::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 108px;
  height: 108px;
  background: linear-gradient(135deg, rgba(45, 143, 196, 0.6), rgba(247, 144, 7, 0.6));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.sector-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.local-services {
  background:
    linear-gradient(135deg, rgba(238, 245, 249, 0.96), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.local-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.local-grid a {
  min-height: 156px;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(45, 143, 196, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.08);
}

.local-grid strong,
.local-grid span,
.proof-grid span {
  display: block;
}

.local-grid strong {
  font-size: 1.08rem;
}

.local-grid span {
  margin-top: 10px;
  color: var(--muted);
}

.proof {
  background: var(--white);
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid article {
  min-height: 260px;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(13, 54, 78, 0.94));
  box-shadow: var(--shadow);
}

.proof-grid span {
  width: fit-content;
  margin-bottom: 26px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.process {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(15, 46, 66, 0.96)),
    var(--ink);
  color: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
}

.process-list li {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(45, 143, 196, 0.13), rgba(255, 255, 255, 0.03)),
    #172033;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.proposal-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr) minmax(300px, 0.85fr);
  gap: 24px;
  padding: 88px clamp(20px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(238, 242, 246, 0.96), rgba(255, 255, 255, 0.8)),
    #eef2f6;
}

.proposal-copy,
.proposal-form,
.proposal-result {
  align-self: start;
}

.proposal-copy {
  position: sticky;
  top: 96px;
}

.proposal-copy img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 26px 0 22px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proposal-form,
.proposal-result {
  padding: 24px;
  border: 1px solid rgba(45, 143, 196, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12);
}

fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 900;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #c8d0dc;
  border-radius: 6px;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 500;
}

.check input {
  min-height: auto;
  margin-top: 4px;
}

.proposal-result {
  position: sticky;
  top: 96px;
  background:
    linear-gradient(180deg, rgba(45, 143, 196, 0.09), rgba(255, 255, 255, 0)),
    var(--white);
}

.estimate {
  margin: 18px 0;
  padding: 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 1.55rem;
  font-weight: 900;
}

.reference {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.result-grid div {
  padding: 12px;
  background: var(--panel);
  border-radius: 6px;
}

.result-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.result-grid dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.proposal-result h4 {
  margin: 20px 0 8px;
}

.disclaimer {
  padding: 14px;
  color: #5d4600;
  background: #fff4c7;
  border-radius: 6px;
  font-size: 0.92rem;
}

.faq {
  background: var(--white);
}

details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 32px;
  padding: 72px clamp(20px, 6vw, 86px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 143, 196, 0.96), rgba(17, 24, 39, 0.96)),
    var(--blue);
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

address {
  display: grid;
  gap: 12px;
  align-content: center;
  font-style: normal;
  font-weight: 800;
}

.callback-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.callback-form label {
  color: var(--white);
}

.callback-form .check {
  color: rgba(255, 255, 255, 0.84);
}

.callback-form .check a {
  text-decoration: underline;
}

.map {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

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

.footer img {
  width: 84px;
  height: auto;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 22px 96px;
}

.legal-page h1 {
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-page p {
  color: var(--muted);
}

.service-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px clamp(18px, 5vw, 54px) 110px;
}

.service-page > .eyebrow {
  margin-top: 46px;
}

.service-page h1 {
  color: var(--ink);
}

.service-lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.2rem;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 44px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.service-layout > div,
.service-layout aside {
  padding: 28px;
  border: 1px solid rgba(45, 143, 196, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(17, 24, 39, 0.08);
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.local-page .service-layout aside h2:not(:first-child) {
  margin-top: 28px;
  font-size: 1.35rem;
}

.service-faq {
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .services-grid,
  .sector-grid,
  .local-grid,
  .proof-grid,
  .intro,
  .solution-finder,
  .trust-section,
  .proposal-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-visual {
    grid-column: 1 / -1;
  }

  .proposal-result {
    grid-column: 1 / -1;
  }

  .proposal-copy,
  .solution-sidebar,
  .proposal-result {
    position: static;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .header-cta {
    text-align: center;
  }

  .hero {
    min-height: 690px;
    grid-template-columns: 1fr;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 10, 18, 0.9), rgba(7, 10, 18, 0.72) 56%, rgba(7, 10, 18, 0.38)),
      url("assets/hero-redvolt.png") center / cover;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .trust-row,
  .intro,
  .solution-finder,
  .solution-columns,
  .trust-section,
  .trust-grid,
  .service-layout,
  .services-grid,
  .sector-grid,
  .local-grid,
  .proof-grid,
  .process-list,
  .proposal-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .quick-contact {
    max-width: calc(100vw - 28px);
  }

  .quick-contact-toggle {
    justify-self: end;
  }

  .circuit-field {
    opacity: 0.36;
  }

  .section,
  .proposal-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .hero,
  .section,
  .proposal-copy,
  .proposal-form,
  .contact,
  .footer {
    display: none;
  }

  .proposal-section {
    display: block;
    padding: 0;
    background: #fff;
  }

  .proposal-result {
    box-shadow: none;
    border: 0;
  }
}
