:root {
  --navy: #062d4a;
  --navy-deep: #031d31;
  --navy-soft: #0d456a;
  --orange: #f15a24;
  --orange-dark: #d94711;
  --paper: #f6f8fa;
  --white: #ffffff;
  --ink: #09253d;
  --muted: #526575;
  --line: #d6dee4;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--orange);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: linear-gradient(100deg, var(--navy-deep), var(--navy));
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.header-inner {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 7.2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.brand img {
  width: 5.2rem;
  height: 5.2rem;
  padding: 0.2rem;
  object-fit: cover;
  border-radius: 0.35rem;
  background: var(--white);
}
.brand > span { display: grid; line-height: 1; }
.brand strong {
  font-size: 1.25rem;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.brand small {
  margin-top: 0.48rem;
  color: #ff7a35;
  font-size: 0.72rem;
  font-weight: 800;
}
.header-content {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.8rem;
}
.header-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  color: #d7e4ec;
  font-size: 0.8rem;
}
.header-topline b {
  margin-right: auto;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-topline a { text-decoration: none; }
.quote-link {
  padding: 0.52rem 0.85rem;
  color: var(--white) !important;
  background: var(--orange);
  font-weight: 850;
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 1.7vw, 1.55rem);
}
nav a {
  position: relative;
  padding: 0.25rem 0;
  color: #e9f0f4;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
nav a:hover, nav a:focus-visible, nav a.active { color: #ff7a35; }
nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.7rem;
  height: 0.18rem;
  background: var(--orange);
}
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: clamp(39rem, 62vw, 52rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,20,34,0.94) 0%, rgba(3,20,34,0.8) 33%, rgba(3,20,34,0.3) 61%, rgba(3,20,34,0.05) 100%),
    linear-gradient(0deg, rgba(3,29,49,0.42), transparent 48%),
    var(--navy-deep) url("/hero-drilling-v2.webp") center / cover no-repeat;
}
.hero-copy {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.hero-kicker, .eyebrow {
  margin: 0 0 0.9rem;
  color: #ff762e;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1, h2 { margin-top: 0; line-height: 1.02; }
h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 7.4vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 0.15rem 1rem rgba(0,0,0,0.28);
}
h1 span { color: var(--orange); }
.hero-copy > p:not(.hero-kicker) {
  max-width: 44rem;
  margin: 0 0 1.6rem;
  color: #f3f6f8;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 0.08rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.button-orange { color: var(--white); background: var(--orange); }
.button-orange:hover, .button-orange:focus-visible { background: var(--orange-dark); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,0.82); background: rgba(3,29,49,0.28); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--orange); background: rgba(3,29,49,0.7); }
.button-navy { color: var(--white); background: var(--navy); }
.button-navy:hover, .button-navy:focus-visible { background: var(--navy-soft); }

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: var(--white);
  background: linear-gradient(100deg, #06263e, #073858);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 0.25rem solid var(--orange);
}
.service-ribbon article {
  position: relative;
  min-height: 9.2rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.55rem;
  padding: 1.2rem 0.75rem;
  text-align: center;
}
.service-ribbon article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.28);
}
.service-ribbon svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-ribbon h2 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.22;
  text-transform: uppercase;
}

.about {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}
.about-copy h2, .difference h2, .contact h2, .solar-feature h2 {
  margin-bottom: 1.1rem;
  color: var(--navy-deep);
  font-size: clamp(2.3rem, 5vw, 4.45rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.about-copy > p:not(.eyebrow) { max-width: 43rem; color: var(--muted); }
.about-copy .button { margin-top: 0.8rem; }
.industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 0 1.2rem 3rem rgba(3,29,49,0.12);
}
.industry-list article {
  min-height: 8.3rem;
  display: grid;
  align-content: end;
  padding: 1.2rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.industry-list article.featured {
  grid-column: 1 / -1;
  min-height: 11rem;
  background: linear-gradient(120deg, var(--orange-dark), var(--orange));
}
.industry-list strong { font-size: 1.25rem; line-height: 1.05; text-transform: uppercase; }
.industry-list span { margin-top: 0.35rem; color: #dce7ed; font-size: 0.86rem; }
.industry-list .featured span { color: var(--white); }

.solar-feature {
  position: relative;
  min-height: clamp(29rem, 50vw, 43rem);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,20,34,0.91), rgba(3,20,34,0.57) 45%, rgba(3,20,34,0.04) 78%),
    url("/solar-field-v2.webp") center / cover no-repeat;
}
.solar-copy {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.solar-feature h2 { max-width: 12ch; color: var(--white); }
.solar-copy > p:not(.eyebrow) {
  max-width: 40rem;
  color: #ecf3f7;
  font-size: 1.12rem;
}
.solar-copy .button { margin-top: 0.8rem; }

.difference {
  color: var(--white);
  background: linear-gradient(110deg, #031827, var(--navy));
}
.difference-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.difference h2 { color: var(--white); }
.difference-inner > div:first-child > p:last-child { max-width: 42rem; color: #dce7ed; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.24);
  border-bottom: 1px solid rgba(255,255,255,0.24);
}
.value-grid article {
  min-height: 8rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.2rem;
  padding: 1rem 0.5rem;
  text-align: center;
}
.value-grid article:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.24); }
.value-grid strong { color: var(--orange); font-size: 1rem; text-transform: uppercase; }
.value-grid span { font-size: 0.83rem; font-weight: 850; text-transform: uppercase; }

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(3.5rem, 7vw, 5.5rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  border-bottom: 0.25rem solid var(--orange);
}
.contact > div { max-width: 52rem; }
.contact h2 { font-size: clamp(2.15rem, 4vw, 3.6rem); }
.contact p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.contact .button { flex: 0 0 auto; }

footer {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1.25fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2));
  color: #d5e2e9;
  background: linear-gradient(100deg, var(--navy-deep), var(--navy));
  font-size: 0.9rem;
}
footer > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 0.38rem; }
footer strong { color: var(--white); }
footer a { text-decoration: none; }
footer a:hover, footer a:focus-visible { color: #ff7a35; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-brand img { width: 4.2rem; height: 4.2rem; object-fit: cover; border-radius: 0.3rem; background: var(--white); }
.footer-brand div { display: grid; gap: 0.32rem; }
.footer-brand span { color: #ff7a35; font-weight: 800; }
.footer-tagline strong { color: #ff7a35; font-size: 1.15rem; line-height: 1.1; text-transform: uppercase; }
.footer-tagline span { margin-top: 0.55rem; color: #9eb2c0; font-size: 0.78rem; }

.page-hero {
  min-height: 31rem;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,20,34,0.95), rgba(3,20,34,0.72) 48%, rgba(3,20,34,0.22)),
    url("/hero-drilling-v2.webp") center 58% / cover no-repeat;
}
.page-hero > div {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4.5rem 0;
}
.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}
.page-hero > div > p:not(.hero-kicker) {
  max-width: 46rem;
  color: #edf4f7;
  font-size: 1.18rem;
}
.page-hero .button { margin-top: 0.8rem; }

.services-page {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.page-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  column-gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.page-intro .eyebrow { grid-row: 1 / span 2; }
.page-intro h2, .partnerships h2, .contact-details h2, .contact-form-wrap h2 {
  margin-bottom: 1rem;
  color: var(--navy-deep);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.page-intro > p:last-child {
  max-width: 50rem;
  margin: 0;
  color: var(--muted);
}
.detailed-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.45rem;
  padding: 1.45rem;
  background:
    linear-gradient(135deg, rgba(6,45,74,0.045), rgba(241,90,36,0.035)),
    var(--paper);
  border: 1px solid #e3e9ed;
}
.detailed-service-grid article {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d8e0e5;
  border-radius: 0.7rem;
  box-shadow: 0 0.75rem 1.6rem rgba(3,29,49,0.12);
  scroll-margin-top: 1rem;
}
.service-card-head {
  position: relative;
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem 1rem 6.2rem;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(255,255,255,0.05), transparent 42%),
    linear-gradient(110deg, var(--navy), var(--navy-deep));
  border-bottom: 0.26rem solid var(--orange);
}
.service-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 4.35rem;
  height: 4.35rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--white);
  background: var(--navy);
  border: 0.22rem solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0.12rem var(--orange);
}
.service-icon svg {
  width: 2.7rem;
  height: 2.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detailed-service-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.48rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.detailed-service-grid ul {
  margin: 0;
  padding: 1.25rem 1.4rem 1.4rem 2.55rem;
  color: #263d4d;
}
.detailed-service-grid li { margin: 0.42rem 0; padding-left: 0.2rem; }
.detailed-service-grid li::marker { color: var(--orange); }

.custom-scope-banner {
  position: relative;
  isolation: isolate;
  min-height: 8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.35rem;
  margin-top: 1.5rem;
  padding: 1.25rem 2rem;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(105deg, var(--navy-deep), var(--navy));
  border: 0.22rem solid var(--orange);
  box-shadow: 0 0.9rem 2rem rgba(3,29,49,0.16);
  text-decoration: none;
}
.custom-scope-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5rem;
  right: 7rem;
  width: 19rem;
  height: 19rem;
  border: 2.8rem solid rgba(255,255,255,0.045);
  transform: rotate(35deg);
}
.scope-mark {
  width: 4.7rem;
  height: 4.7rem;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 0.16rem solid var(--orange);
  border-radius: 50%;
  font-size: 2.1rem;
}
.custom-scope-banner > span:nth-child(2) { display: grid; gap: 0.18rem; }
.custom-scope-banner strong {
  color: #ff762e;
  font-size: clamp(1.35rem, 2.7vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}
.custom-scope-banner b {
  color: var(--white);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.25em;
  line-height: 1;
}
.custom-scope-banner:hover, .custom-scope-banner:focus-visible {
  background: linear-gradient(105deg, var(--navy), var(--navy-soft));
  outline: 0.18rem solid rgba(241,90,36,0.22);
  outline-offset: 0.2rem;
}

.partnerships {
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(110deg, #031827, var(--navy));
}
.partnerships h2 { max-width: 18ch; color: var(--white); }
.partnerships-heading > p:last-child { max-width: 51rem; color: #dce7ed; }
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.7rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-left: 1px solid rgba(255,255,255,0.25);
}
.partnership-grid article {
  min-height: 18rem;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.partnership-grid article > span { color: var(--orange); font-weight: 900; }
.partnership-grid h3 {
  margin: 0 0 1.1rem;
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.partnership-grid p { color: #dce7ed; }

.contact-hero { min-height: 27rem; background-position: center 54%; }
.contact-page {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.contact-details > p:not(.eyebrow) { color: var(--muted); }
.contact-details dl { margin: 2rem 0; border-top: 1px solid var(--line); }
.contact-details dl div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-details dt { color: var(--muted); }
.contact-details dd { margin: 0; font-weight: 800; overflow-wrap: anywhere; }
.contact-details dd a { text-decoration: none; }
.response-note {
  padding: 1rem;
  border-left: 0.25rem solid var(--orange);
  background: var(--paper);
  font-size: 0.9rem;
}
.contact-form-wrap {
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--paper);
  border-top: 0.35rem solid var(--orange);
  box-shadow: 0 1.3rem 3rem rgba(3,29,49,0.12);
}
.contact-form-wrap > p { color: var(--muted); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
form label {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
  color: var(--navy-deep);
  font-weight: 850;
}
input, select, textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid #aebdc7;
  border-radius: 0.1rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 0.18rem solid rgba(241,90,36,0.28);
  border-color: var(--orange);
}
button.button { cursor: pointer; font: inherit; }
.form-note { margin-bottom: 0; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 1080px) {
  .header-topline b, .header-topline > a:not(.quote-link) { display: none; }
  nav { gap: 0.75rem; }
  nav a:nth-of-type(3), nav a:nth-of-type(4), nav a:nth-of-type(7) { display: none; }
  .service-ribbon { grid-template-columns: repeat(3, 1fr); }
  .service-ribbon article:nth-child(3)::after { display: none; }
  .service-ribbon article { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .about, .difference-inner { grid-template-columns: 1fr; }
  .page-intro { grid-template-columns: 1fr; }
  .page-intro .eyebrow { grid-row: auto; }
  .contact-page { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .header-inner { min-height: 6.2rem; gap: 1rem; }
  .brand img { width: 4rem; height: 4rem; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: 0.65rem; }
  .header-content { flex: 0 0 auto; }
  .header-topline { display: none; }
  nav { display: none; }
  .mobile-menu {
    position: relative;
    display: block;
  }
  .mobile-menu summary {
    min-width: 5.4rem;
    padding: 0.62rem 0.85rem;
    list-style: none;
    color: var(--white);
    background: var(--orange);
    border: 1px solid rgba(255,255,255,0.72);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu[open] summary { background: var(--orange-dark); }
  .mobile-menu > div {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.65rem);
    right: 0;
    width: min(19rem, calc(100vw - 2rem));
    display: grid;
    padding: 0.6rem;
    background: var(--navy-deep);
    border: 1px solid rgba(255,255,255,0.2);
    border-top: 0.22rem solid var(--orange);
    box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.32);
  }
  .mobile-menu a {
    padding: 0.68rem 0.78rem;
    color: #e9f0f4;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-menu a:hover, .mobile-menu a:focus-visible, .mobile-menu a.active { color: #ff7a35; }
  .mobile-menu .mobile-quote {
    margin-top: 0.5rem;
    color: var(--white);
    background: var(--orange);
    border-bottom: 0;
    text-align: center;
    text-transform: uppercase;
  }
  .hero { min-height: 42rem; background-position: 58% center; }
  .hero {
    background:
      linear-gradient(90deg, rgba(3,20,34,0.93), rgba(3,20,34,0.55)),
      url("/hero-drilling-v2.webp") 58% center / cover no-repeat;
  }
  .hero-kicker { max-width: 22rem; line-height: 1.5; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .service-ribbon { grid-template-columns: repeat(2, 1fr); }
  .service-ribbon article:nth-child(3)::after { display: block; }
  .service-ribbon article:nth-child(2n)::after { display: none; }
  .about { padding: 4rem 0; }
  .solar-feature { background-position: 60% center; }
  .solar-feature {
    background:
      linear-gradient(90deg, rgba(3,20,34,0.9), rgba(3,20,34,0.42)),
      url("/solar-field-v2.webp") 60% center / cover no-repeat;
  }
  .difference-inner { padding: 4rem 0; }
  .detailed-service-grid, .partnership-grid { grid-template-columns: 1fr; }
  .detailed-service-grid { gap: 1rem; padding: 1rem; }
  .service-card-head { min-height: 5.7rem; padding-left: 5.5rem; }
  .service-icon { left: 0.85rem; width: 3.9rem; height: 3.9rem; }
  .service-icon svg { width: 2.35rem; height: 2.35rem; }
  .custom-scope-banner {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.15rem;
  }
  .custom-scope-banner b { display: none; }
  .scope-mark { width: 3.8rem; height: 3.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.24); }
  .contact { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 470px) {
  .brand > span { display: none; }
  .hero-actions .button, .contact .button { width: 100%; }
  .service-ribbon h2 { font-size: 0.78rem; }
  .industry-list { grid-template-columns: 1fr; }
  .industry-list article.featured { grid-column: auto; }
  .service-card-head { padding-left: 4.85rem; }
  .service-icon { width: 3.35rem; height: 3.35rem; }
  .service-icon svg { width: 2.05rem; height: 2.05rem; }
  .detailed-service-grid h3 { font-size: 1.06rem; }
  .detailed-service-grid ul { padding-left: 2.2rem; }
  .custom-scope-banner { grid-template-columns: 1fr; text-align: center; }
  .scope-mark { margin: 0 auto; }
}

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