:root {
  /* =========================
     COLOR SYSTEM - I&J Savage Electrical
     ========================= */
  --bg: #eef1f5;
  --surface: #ffffff;
  --surface-2: #f1f5fb;
  --section-alt: rgba(12,54,148,.03);

  --text: #12233f;
  --muted: #52657f;
  --muted-2: #7a889c;
  --border: rgba(18, 35, 63, 0.10);

  --accent: #0c3694;
  --accent-2: #08296f;
  --accent-soft: rgba(12, 54, 148, 0.08);
  --glow: rgba(12, 54, 148, 0.16);

  --cta: #0c3694;
  --cta-hover: #08296f;
  --cta-border: #08296f;

  --wa: #25d366;
  --wa-hover: #1fb45a;
  --wa-border: #1c9e4f;
  --wa-soft: rgba(37, 211, 102, 0.10);

  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #dc2626;

  --shadow-sm: 0 8px 24px rgba(18, 35, 63, 0.06);
  --shadow-md: 0 14px 34px rgba(18, 35, 63, 0.10);
  --shadow-glow: 0 0 0 1px rgba(12, 54, 148, 0.10), 0 10px 28px rgba(12, 54, 148, 0.08);

  /* Radius */
  --r-8: 8px;
  --r-12: 12px;
  --r-16: 16px;

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;

  --section-py: clamp(48px, 6vw, 80px);
  --container-px: clamp(16px, 3vw, 28px);

  /* Layout */
  --container: 1120px;
  --content: 72ch;

  /* Typography */
  --h1: clamp(2rem, 4vw, 3.25rem);
  --h2: clamp(1.5rem, 2.2vw, 2.25rem);
  --h3: clamp(1.125rem, 1.4vw, 1.375rem);
  --p: 1rem;
  --small: 0.875rem;

  --lh-tight: 1.1;
  --lh: 1.6;
  --lh-loose: 1.8;

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
  --dur-1: 150ms;
  --dur-2: 250ms;
}

/* =========================
   DARK THEME (ALT ROOT)
   ========================= */

:root.dark {
  --bg: #0b1220;
  --surface: #121a2b;
  --surface-2: #0f1726;
  --section-alt: rgba(56, 189, 248, 0.04);

  --text: #e6edf7;
  --muted: #a6b3c7;
  --muted-2: #7f90a8;
  --border: rgba(148, 163, 184, 0.15);

  --accent: #4f8cff;
  --accent-2: #3a6fe0;
  --accent-soft: rgba(79, 140, 255, 0.12);
  --glow: rgba(79, 140, 255, 0.25);

  --cta: #3b6cff;
  --cta-hover: #2e56d6;
  --cta-border: #2e56d6;

  --wa: #25d366;
  --wa-hover: #1fb45a;
  --wa-border: #1c9e4f;

  --shadow-sm: 0 10px 28px rgba(0,0,0,0.35);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 0 1px rgba(79,140,255,0.18), 0 14px 36px rgba(0,0,0,0.5);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
li,
figure,
fieldset {
  margin: 0;
}

ul,
ol,
fieldset {
  padding: 0;
  border: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-size: 1rem;
}

a {
  text-decoration: none;
   color: var(--accent);
}
a:visited{
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

main {
  display: grid;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
}

section {
 
  margin: 0;
  padding: 0;
  padding-bottom: var(--section-py);
  border-top: 1px solid var(--border);
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h1,
h2,
h3 {
  line-height: var(--lh-tight);
  color: var(--text);
  margin: 0;
}

h2, h3{
  margin: var(--s-2) 0;
}

.primary_text {
  color: var(--text);
}

.secondary_text {
  color: var(--muted);
  padding-bottom: var(--s-1);
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 14px;
  margin: var(--s-1);
  border-radius: var(--r-12);
  cursor: pointer;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: scale(1.01);
}

.btn-cta {
  background: var(--cta);
  color: var(--bg);
  font-weight: 700;
  border: 2px solid var(--cta-border);

}
.btn-cta.btn-sheen {
  position: relative;
  overflow: clip;
}

.btn-cta.btn-sheen::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.32) 50%,
    rgba(255,255,255,0.12) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
}

.btn-cta.btn-sheen.is-sheening::after {
  animation: sheenMove 2.4s ease-in-out;
}

@keyframes sheenMove {
  0% { left: -120%; }
  100% { left: 140%; }
}

.btn-cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 0 10px var(--cta-border);
  transform: translateY(-2px);
}

.btn-secondary {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  color: var(--muted);
  border: 2.25px solid var(--accent-2);
  font-weight: 700;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.btn-secondary:hover::before {
  transform: scaleX(1);
}

.btn-secondary:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 10px 25px rgba(56, 189, 248, 0.25);
  transform: translateY(-1px);
}

.toTheTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  color: var(--text);
  text-align: center;
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--border);
  transition: opacity 250ms ease;
}

.toTheTop:hover {
  background: var(--accent);
  color: #fff;
}



/* Header / nav */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav {
  width: min(100% - (2 * var(--container-px)), var(--container));
  margin: 0 auto;
  padding: var(--s-2) 0;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-width: 0;
  flex-shrink: 1;
}

.brand-text {
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text);
  opacity: 0.95;
    white-space: nowrap;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 10px rgba(56, 189, 248, 0.55));
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  white-space: nowrap;
}

.nav-links a {
  padding: 10px;
  color: var(--muted);
  border-radius: var(--r-12);
  transition: background var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.18);
}

.nav-cta--always {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}


.icon{
  width: 16px;
  height: 16px;
  margin-right: 8px;
  display: inline-block;
}

.btn-wa{
  background: var(--wa);
  color: #fff;
  border: 2px solid var(--wa-border);
  font-weight: 700;
}

.btn-wa:hover{
  background: var(--wa-hover);
  box-shadow: 0 8px 22px rgba(37,211,102,.25);
}

/* Hero */
.hero {
 
  padding: 0;
  border-top: none;
  background: transparent;
  overflow: hidden;
}
.hero .btn-cta{
  margin-left: 0px;
}



.hero__grid{
  min-height: 460px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: stretch;
  gap: 32px;
}


.hero__content{
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;

  gap: 0px;
  padding: 0;
  min-width: 0;
}

@media (min-width: 900px) {
  .hero__content {
    align-content: start;
    transform: translateY(50px);
  }
}
.hero__lead{
  max-width: 34rem;
  font-size: 1.125rem;
  margin-bottom: var(--s-4);
}

.hero__bullets{
  display: grid;
  gap: 12px;
  margin-bottom: var(--s-4);
}

.hero__bullets li{
  position: relative;
  padding-left: 24px;
 
}

.hero__bullets li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero h1 {
  margin-bottom: var(--s-8);
}
.hero__micro{
   font-size: 0.875rem;
  color: var(--muted-2);

}

.hero__image{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 0;

}

.hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 60% center;
}

.hero__image::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(246,242,234,0.92) 5%,
    rgba(246,242,234,0.72) 18%,
    rgba(246,242,234,0.28) 30%,
    rgba(246,242,234,0) 42%
  );
  pointer-events: none;
}

.hero__image::after{
  display: none;
}

/* Services */
.services > .secondary_text {
  margin-bottom: var(--s-2);
}

.service_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
}

.service {
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.service__content {
  padding: var(--s-3);
}
.service:hover {
  box-shadow: var(--shadow-md);
}

.service_image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-12);
  margin-bottom: var(--s-3);
}

/* Why us */
.whyUs li::before {
  content: "✔";
  margin-right: 0.5rem;
  color: var(--accent);
  font-weight: 700;
}

.whyUs strong {
  color: var(--accent);
}

/* Area */
.area ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

.area li {
  padding: var(--s-2);
  background: var(--surface-2);
  border-radius: var(--r-8);
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area li:last-child {
  grid-column: 1 / -1;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-16);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials */
.stars {
  display: block;
  margin: 0 0 0.5rem 0;
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1;
  padding-bottom: 0.5rem;
}

.trust-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}

.trust-chip {
  padding: var(--s-2);
  color: var(--muted);
  font-size: 0.95rem;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-12);
}
.author {
  display: block;
  font-weight: 600;
  color: var(--text);

}


@media(max-width: 1150px){
  body{
    padding: var(--s-2);
  }
}
.testimonials .tile {
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
}
@media(max-width: 530px){
.testimonials .tile:not(:last-child) {
  border-bottom: 1px solid var(--border);
}}

.testimonials .tile p {
  margin: 0;
}

.testimonials .tile p:not(.stars) {
  line-height: 1.55;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-4);
}



/* CTA */
.cta_banner {
  margin: 0;
  border-top: 0;
}

.cta_banner .nav-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.cta_banner .nav-cta .btn {
 
  justify-content: center;
  min-width: 140px;
}
@media (max-width: 640px) {
  .cta_banner .nav-cta .btn {
    flex: 1;
    min-width: 0;
  }
}

.cta_inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 40px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.7)
  );

  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.cta-mobile {
  display: none;
}

/* FAQ */
.faq details {
  padding: var(--s-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-12);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details > p {
  margin-top: var(--s-2);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}

.faq details[open] > p {
  opacity: 1;
  transform: translateY(0);
}

/* Contact */
.contact input,
.contact textarea {
  padding: var(--s-3);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-8);
}

.contact textarea {
  resize: none;
}

.contact form {
  display: grid;
  gap: var(--s-2);
  padding: var(--s-3);
  margin: var(--s-2);
  color: var(--muted);
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--r-12);
}

.contact .secondary_text{
  margin-top: var(--s-2);
  margin-bottom: var(--s-2);
}

fieldset {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--r-12);
}

legend {
  margin: 0 var(--s-3);
  padding: 0 var(--s-1);
  color: var(--muted);
}

.form .btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: var(--s-3) auto;
}

textarea::placeholder {
  color: var(--muted);
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

/* Footer */
footer {
  width: 100%;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-4) var(--container-px);
  display: flex;
  justify-content: center;
}

.socials a {
  width: 40px;
  height: 40px;
  margin: var(--s-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--surface-2);
  border-radius: 50%;
  transition: all var(--dur-2) var(--ease);
}

.socials a:hover {
  color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

/* Layout breakpoints */
@media (min-width: 768px) {
  .hero { grid-area: hero; }
  .services { grid-area: services; }
  .whyUs { grid-area: whyus; }
  .howItWorks { grid-area: howitworks; }
  .area { grid-area: area; }
  .testimonials { grid-area: testimonials; }
  .cta_banner { grid-area: ctabanner; }
  .faq { grid-area: faq; }
  .contact { grid-area: contact; }

  main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero hero"
      "services services"
      "whyus faq"
      "testimonials testimonials"
      "area area"
      "ctabanner ctabanner"
      
      "contact contact";
  }

  .wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: "form info";
    gap: 2rem;
  }

  .form { grid-area: form; }
  .info { grid-area: info; }

  .service_wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq,
  .testimonials {
    align-self: start;
  }

  .area ul {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .area li:last-child {
    grid-column: auto;
  }
}

@media (max-width: 899px) {

  footer{
       margin-bottom: calc(60px + env(safe-area-inset-bottom));
  }
 
  .hero {
    overflow: visible;
  }

  .hero__grid {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0;
    position: relative;
  }

  .hero__content {
    position: static;
    z-index: 2;
    width: 100%;
    display: grid;
    gap: 0;
    padding: 0 16px;
    margin-top: var(--s-5);
  }

  section {
    padding: 10px 16px;
  }

  .hero__micro {
    display: none;

    
  }

  .hero h1 {
    font-size: 1.85rem;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 18px 0;
    max-width: none;
    width: 100%;
    
    
  }

  .hero__lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 18px 0;
  }

  .hero__bullets {
    display: grid;
    gap: 10px;
    margin: 0 0 20px 0;
  }

  .hero__bullets li:last-child {
    display: list-item;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 18px 0;
    position: absolute;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 100px);
    left: 50%;
    transform: translateX(-50%);
  }

  .hero .btn {
    
    margin: 0;
    min-height: 46px;
    z-index: 2;
  }

  .hero__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--r-16);
    margin-top: -50px;
  
  }

  .hero__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    display: block;
    
    
  }

 .hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
 background: linear-gradient(
    180deg,
    rgba(238,241,245,0.95) 0%,
     
    rgba(238,241,245,0.45) 12%,
    rgba(238,241,245,0.15) 22%,
    rgba(238,241,245,0) 32%
  );
}
  .hero__image::after {
    display: none;
  }
 


}

@media (max-width: 820px) {
  .nav {
    gap: 10px;
    padding: 8px 12px;
   
  }

  
  .nav-menu {
    display: none;
  }

  .nav-cta--always {
    margin-left: auto;
  }

  .nav-cta--always .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

   .nav-menu {
    display: none;
  }
  
  
}

@media (max-width: 640px) {
  .cta_inner {
    max-width: 100%;
    padding: var(--s-5);
    border-radius: var(--r-16);
  }

  .cta_inner h2 {
    font-size: 1.35rem;
    margin-bottom: var(--s-2);
  }

  .cta_inner .primary_text {
    margin-bottom: var(--s-3);
    font-size: 1rem;
  }

  .cta_inner .btn-cta {
    width: 100%;
    margin: 0;
  }

  .cta-desktop {
    display: none;
  }

  .cta-mobile {
    display: inline;
  }
}

section {
  background: transparent;
}



/* RESPONSIVE FIXES */

@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }
  
}

@media (max-width: 820px) {
  .nav {
    gap: 10px;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
  }

  .nav-cta--always {
    display: none;
  }


  .brand-logo {
    width: 46px;
    height: 46px;
  }
}
/* CTA POPUP MOBILE */

@media (max-width: 899px) {
  .mobile-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateX(-50%) translateY(120%);
    width: min(calc(100% - 32px), 300px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(18, 35, 63, 0.12);
    border-radius: 999px;
     background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.55)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
     box-shadow:
    0 8px 24px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
    z-index: 1400;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);

  }

  .mobile-sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sticky-cta .btn {
    margin: 0;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 999px;
    justify-content: center;
    font-size: 0.95rem;
    width: 100%;
      box-shadow:
    0 8px 24px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
   
  }

  .mobile-sticky-cta .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex: 0 0 16px;
  }

  .toTheTop {
    display: none;
  }
}
.btn-wa {
  box-shadow:
    0 6px 14px rgba(0,0,0,0.15),
    0 0 12px rgba(37, 211, 102, 0.35);
}

@media (min-width: 900px) {
  .mobile-sticky-cta {
    display: none;
  }

}
.whyUs,
.faq {
  background: transparent !important;
}


/* === SECTION TOP GLOW === */

section {
  position: relative;
  background: transparent;
  overflow: hidden;
}

section:not(.cta_banner):not(.hero)::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 320px;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    ellipse at center,
    rgba(12, 54, 148, 0.14) 0%,
    rgba(12, 54, 148, 0.08) 28%,
    rgba(12, 54, 148, 0.035) 52%,
    rgba(12, 54, 148, 0) 72%
  );
}

section > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 899px) {
  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    z-index: 0;

    background: radial-gradient(
  ellipse at center,
  rgba(12, 54, 148, 0.20) 0%,
  rgba(12, 54, 148, 0.12) 32%,
  rgba(12, 54, 148, 0.05) 55%,
  rgba(12, 54, 148, 0) 72%
);
  }

  .hero > * {
    position: relative;
    z-index: 1;
  }
}

/* =========================
   DARK CTA PATCH
   ========================= */

.dark .cta_inner {
  background: radial-gradient(
    ellipse at top center,
    rgba(79,140,255,0.18) 0%,
    rgba(79,140,255,0.10) 35%,
    rgba(79,140,255,0.03) 60%,
    rgba(79,140,255,0) 75%
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(79,140,255,0.18);

  box-shadow:
    0 18px 50px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.dark .hero__image::before {
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(11, 18, 32, 0.95) 8%,
    rgba(11, 18, 32, 0.75) 20%,
    rgba(11, 18, 32, 0.35) 34%,
    rgba(11, 18, 32, 0) 48%
  );
}

@media (max-width: 899px){
  .dark .hero__image::before {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(11, 18, 32, 0.95) 8%,
    rgba(11, 18, 32, 0.75) 20%,
    rgba(11, 18, 32, 0.35) 34%,
    rgba(11, 18, 32, 0) 48%
  );
}

}
