/* RESET (safe) */
html, body{ height:100%; width:100%; margin:0; padding:0; }
*, *::before, *::after{ box-sizing:border-box; }
body{ font-family:'Inter',system-ui,sans-serif; overflow-x:hidden; background:#fff; }

/* HERO */
.agc-hero-v3{
  --wrap: 1360px;
  --px: clamp(16px, 3vw, 34px);

  position: relative;
  margin: 0;
  min-height: calc(100svh - var(--nav-h, 72px));
  overflow: hidden;

  background-image:
    linear-gradient(90deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.24) 40%, rgba(0,0,0,.12) 70%, rgba(0,0,0,.10) 100%),
    url("../img/bghero.png?v=2");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.agc-hero-v3::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.20) 100%);
}

.agc-hero-v3__wrap{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  min-height: calc(100svh - var(--nav-h, 72px));
  padding: clamp(22px, 3.2vw, 42px) var(--px) clamp(14px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agc-hero-v3__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: end;
}

.agc-hero-v3__copy{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.agc-hero-v3__title{
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(42px, 4.7vw, 78px);
  line-height: .98;
  letter-spacing: -.02em;
  font-weight: 1000;
  color: #ffe253;
  text-shadow:
    5px 5px 0 #000,
    0 0 22px rgba(0,0,0,.62);
}

.agc-hero-v3__mobileTitle{
  display: none;
  max-width: 100%;
  width: min(460px, 100%);
  height: auto;
}

.agc-hero-v3__sub{
  margin: 0;
  max-width: 52ch;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.84);
  color: rgba(16,16,16,.96);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 1.42vw, 22px);
  font-weight: 600;
  line-height: 1.42;
}

.agc-hero-v3__banner{
  order: 3;
  width: min(560px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.agc-hero-v3__ctaCall{
  order: 4;
  width: min(540px, 100%);
  container-type: inline-size;
  text-decoration: none;
  border-radius: 22px;
  padding: 14px 18px 12px;
  border: 2px solid #ffe8b6;
  color: #0e0e0e;
  background:
    radial-gradient(40% 140% at 12% 0%, rgba(255,255,255,.58), rgba(255,255,255,0) 70%),
    linear-gradient(90deg, #ffd365 0%, #ff9e31 100%);
  box-shadow:
    0 18px 36px rgba(0,0,0,.32),
    0 0 0 4px rgba(255,224,130,.24);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.agc-hero-v3__ctaCall:hover{
  transform: translateY(-2px);
  filter: saturate(1.03);
  box-shadow:
    0 22px 44px rgba(0,0,0,.34),
    0 0 0 4px rgba(255,224,130,.28);
}

.agc-hero-v3__ctaCall:focus-visible{
  outline: 3px solid rgba(255,211,101,.8);
  outline-offset: 2px;
}

.agc-hero-v3__ctaTop{
  display: block;
  font-size: 13px;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 1000;
}

.agc-hero-v3__ctaMain{
  display: block;
  margin-top: 1px;
  font-size: clamp(24px, 8.8vw, 46px);
  line-height: .95;
  letter-spacing: -.018em;
  font-weight: 1000;
  white-space: nowrap;
}

.agc-hero-v3__ctaSub{
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 900;
}

.agc-hero-v3__servicesLink{
  order: 5;
  margin-top: 2px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 1.8vw, 34px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.72);
}

.agc-hero-v3__media{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.agc-hero-v3__truckDesktop{
  width: min(1290px, 150%);
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateX(-15px);
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.38));
}

.agc-hero-v3__truckMobile{
  display: none;
  width: 100%;
  height: auto;
}

@media (max-width: 1180px){
  .agc-hero-v3__title{ font-size: clamp(38px, 4.4vw, 62px); }
  .agc-hero-v3__truckDesktop{ width: min(1140px, 145%); transform: translateX(-35px); }
}

@media (max-width: 980px){
  .agc-hero-v3{
    min-height: auto;
    background-position: center center;
  }

  .agc-hero-v3__wrap{
    min-height: auto;
    justify-content: flex-start;
    padding-top: 14px;
    padding-bottom: 0;
  }

  .agc-hero-v3__grid{
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .agc-hero-v3__title{ display: none; }

  .agc-hero-v3__mobileTitle{
    display: block;
    order: 1;
    margin: 2px auto 0;
    width: min(430px, 100%);
  }

  .agc-hero-v3__sub{
    order: 2;
    max-width: none;
    font-size: clamp(14px, 4.4vw, 20px);
    line-height: 1.45;
    padding: 12px 12px;
  }

  .agc-hero-v3__ctaCall{
    order: 3;
    width: 100%;
  }

  .agc-hero-v3__banner{
    order: 4;
    width: 100%;
  }

  .agc-hero-v3__servicesLink{
    display: none;
  }

  .agc-hero-v3__media{ display: none; }

  .agc-hero-v3__truckMobile{
    display: block;
    width: calc(100% + (var(--px) * 2));
    max-width: none;
    margin: 8px 0 0 calc(var(--px) * -1);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 -2px 20px rgba(0,0,0,.34));
  }
}

@media (max-width: 480px){
  .agc-hero-v3{ --px: 12px; }

  .agc-hero-v3__sub{
    font-size: 15px;
    padding: 10px 10px;
  }

  .agc-hero-v3__ctaTop{ font-size: 11px; }
  .agc-hero-v3__ctaMain{ font-size: clamp(24px, 8.8vw, 36px); }
  .agc-hero-v3__ctaSub{ font-size: 12px; }
}

@media (prefers-reduced-motion: reduce){
  .agc-hero-v3__ctaCall{ transition: none; }
}

/* HOME REELS */
.home-reels{
  --wrap: 1360px;
  --px: clamp(16px, 3vw, 34px);
  --video-h: 350px;

  position: relative;
  padding: clamp(16px, 2.2vw, 28px) 0 clamp(46px, 5vw, 62px);
  overflow: hidden;
  background:
    radial-gradient(720px 280px at 16% 8%, rgba(43,196,227,.10), transparent 66%),
    radial-gradient(720px 300px at 82% 12%, rgba(255,210,74,.14), transparent 64%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-reels__wrap{
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
}

.home-reels__head{
  margin: 0 0 10px;
}

.home-reels__title{
  margin: 0;
  color: rgba(2,6,23,.94);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 1000;
}

.home-reels__sub{
  margin: 6px 0 0;
  color: rgba(2,6,23,.66);
  font-size: 14px;
  font-weight: 650;
}

.home-reels__stage{
  position: relative;
  padding-bottom: 24px;
}

.home-reels__edge{
  position: absolute;
  bottom: 0;
  z-index: 3;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(2,6,23,.62);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.74);
  text-decoration: none;
  white-space: nowrap;
}

.home-reels__edge--right{ right: 10px; }
.home-reels__edge:hover{ color: rgba(2,6,23,.92); }

.home-reels__stage::before,
.home-reels__stage::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(22px, 3.4vw, 52px);
  z-index: 2;
  pointer-events: none;
}

.home-reels__stage::before{
  left: 0;
  background: linear-gradient(90deg, rgba(248,251,255,.95), rgba(248,251,255,0));
}

.home-reels__stage::after{
  right: 0;
  background: linear-gradient(270deg, rgba(248,251,255,.95), rgba(248,251,255,0));
}

.home-reels__rail{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  padding: 2px 0 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(2,6,23,.28) transparent;
  touch-action: manipulation;
}

.home-reels__rail::-webkit-scrollbar{ height: 8px; }
.home-reels__rail::-webkit-scrollbar-track{ background: transparent; }
.home-reels__rail::-webkit-scrollbar-thumb{
  background: linear-gradient(90deg, rgba(43,196,227,.72), rgba(255,178,0,.75));
  border-radius: 999px;
}

.home-reel{
  flex: 0 0 calc(var(--video-h) * .57);
  scroll-snap-align: center;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.16);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(2,6,23,.14);
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.home-reel__media{
  position: relative;
  width: 100%;
  height: var(--video-h);
  background: #0c1120;
}

.home-reel__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-reel__tap{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background:
    radial-gradient(120% 120% at 22% 20%, rgba(255,255,255,.20), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(15,23,42,.72), rgba(2,6,23,.54));
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0,0,0,.34);
  transition: opacity .18s ease, transform .18s ease, filter .18s ease;
}

.home-reel__tap:hover{
  filter: brightness(1.08);
}

.home-reel__tap i{
  pointer-events: none;
}

.home-reel.is-playing .home-reel__tap{
  opacity: 0;
  transform: translate(-50%, -50%) scale(.88);
  pointer-events: none;
}

.home-reel__controls{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: block;
}

.home-reel__mute-corner{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(2,6,23,.44);
  color: rgba(255,255,255,.96);
  padding: 0;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.30);
}

.home-reel__mute-corner:hover{
  background: rgba(2,6,23,.56);
}

.home-reel__mute-corner i{
  pointer-events: none;
}

.home-reel__seek{
  width: 100%;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,210,74,.95);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.home-reel__seek::-webkit-slider-runnable-track{
  height: 4px;
  border-radius: 999px;
  background: rgba(255,210,74,.95);
}

.home-reel__seek::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 2px solid rgba(2,6,23,.78);
  border-radius: 999px;
  background: #ffd24a;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.home-reel__seek::-moz-range-track{
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,210,74,.95);
}

.home-reel__seek::-moz-range-progress{
  height: 4px;
  border-radius: 999px;
  background: rgba(255,210,74,.95);
}

.home-reel__seek::-moz-range-thumb{
  width: 12px;
  height: 12px;
  border: 2px solid rgba(2,6,23,.78);
  border-radius: 999px;
  background: #ffd24a;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.home-reel__time{
  position: absolute;
  left: 12px;
  bottom: 24px;
  z-index: 2;
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(2,6,23,.44);
  padding: 2px 8px;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}

.home-reels__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 34px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.18);
  background: rgba(255,255,255,.90);
  color: rgba(2,6,23,.92);
  box-shadow: 0 14px 30px rgba(2,6,23,.18);
  cursor: pointer;
}

.home-reels__nav i{
  font-size: 26px;
  line-height: 1;
  pointer-events: none;
}

.home-reels__nav--prev{ left: 0; }
.home-reels__nav--next{ right: 0; }

.home-reels__nav.is-disabled{
  opacity: .32;
  pointer-events: none;
}

.home-reels__sr{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px){
  .home-reels{
    --video-h: 350px;
  }

  .home-reels__edge{
    font-size: 8px;
    letter-spacing: .12em;
  }
}

@media (max-width: 760px){
  .home-reels{
    --video-h: 350px;
    --px: 12px;
    padding-top: 12px;
  }

  .home-reels__rail{
    padding-inline: 0;
  }

  .home-reels__edge--right{ right: 2px; }

  .home-reels__stage::before,
  .home-reels__stage::after{
    display: none;
  }

  .home-reels__nav{
    width: 30px;
    height: 48px;
  }

  .home-reels__nav i{ font-size: 14px; }

  .home-reel__mute-corner{
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* about us index */

/* ABOUT (Home) " warm corporate + local SEO */
.about-home{
  --wrap: 1160px;
  --px: clamp(16px, 3vw, 28px);
  --r: 18px;

  --ink: rgba(2, 6, 23, .92);
  --muted: rgba(2, 6, 23, .66);

  --deep: #1d2b2d;
  --cyan: #2bc4e3;

  --y1:#ffe08a;
  --y2:#ffc85a;
  --y3:#ffb13a;
  --y4:#ff9a2a;

  --line: rgba(15,23,42,.12);
  --paper: rgba(255,255,255,.90);
  --glass: rgba(255,255,255,.78);

  --shadow: 0 22px 70px rgba(2, 6, 23, .14);
  --shadow2: 0 16px 52px rgba(2, 6, 23, .10);
  --ease: cubic-bezier(.2,.9,.2,1);

  padding: clamp(64px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(255,154,42,.12), transparent 62%),
    radial-gradient(760px 460px at 90% 18%, rgba(43,196,227,.10), transparent 58%),
    radial-gradient(740px 520px at 80% 92%, rgba(29,43,45,.08), transparent 56%),
    linear-gradient(180deg,#ffffff 0%, #fbfbfc 60%, #ffffff 100%);
}

.about-home::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(60% 55% at 50% 40%, rgba(255,184,74,.12), transparent 72%),
    repeating-linear-gradient(135deg,
      rgba(255,184,74,.06) 0 12px,
      rgba(255,184,74,0) 12px 32px);
  opacity:.75;
  pointer-events:none;
  mask-image: radial-gradient(60% 55% at 50% 35%, #000 0%, transparent 72%);
}

.about-home__wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
}

/* Head */
.about-home__head{
  max-width: 78ch;
  margin-bottom: 22px;
}

.about-home__kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin: 0 0 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(2,6,23,.70);
}
.about-home__kicker::before{
  content:"";
  width: 26px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--y2), var(--cyan));
  box-shadow: 0 16px 42px rgba(255,154,42,.20);
}

.about-home__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.0vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 1000;
  color: var(--ink);
}

.about-home__sub{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

.about-home__chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.ah-chip{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.78);
  color: rgba(2,6,23,.80);
  font-weight: 900;
  font-size: 12px;
}
.ah-chip:hover{ border-color: rgba(255,154,42,.35); }

/* Main grid */
.about-home__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: start;
}

.about-home__card{
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(520px 280px at 16% 10%, rgba(255,184,74,.16), transparent 62%),
    radial-gradient(520px 280px at 92% 18%, rgba(43,196,227,.08), transparent 58%),
    linear-gradient(180deg, var(--paper), rgba(255,255,255,.74));
  box-shadow: var(--shadow2);
  overflow:hidden;
  position: relative;
}

.about-home__card--main{ padding: clamp(16px, 2.4vw, 22px); }
.about-home__card--side{ padding: 16px; }

.about-home__card h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about-home__card p{
  margin: 0 0 12px;
  color: rgba(2,6,23,.70);
  font-weight: 650;
  line-height: 1.6;
}

.about-home__bullets{
  display:grid;
  gap: 12px;
  margin: 12px 0 12px;
}

.ah-bullet{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
}

.ah-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 1000;
  color: rgba(2,6,23,.92);
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(180deg, var(--y2), var(--y4));
  box-shadow: 0 18px 42px rgba(2,6,23,.12), 0 0 0 6px rgba(255,184,74,.14);
  flex: 0 0 auto;
  margin-top: 1px;
}

.ah-title{
  font-weight: 950;
  color: rgba(2,6,23,.88);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.ah-text{
  color: rgba(2,6,23,.66);
  font-weight: 650;
  line-height: 1.5;
  font-size: 13.5px;
}

.about-home__tags{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.ah-tag{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,184,74,.28);
  background: rgba(255,184,74,.14);
  color: rgba(2,6,23,.84);
  font-weight: 900;
  font-size: 12px;
}

.about-home__seo{
  margin: 14px 0 0 !important;
  padding-top: 12px;
  border-top: 1px dashed rgba(15,23,42,.14);
  color: rgba(2,6,23,.72);
}

/* Side highlights */
.ah-highlight{
  border-radius: 16px;
  padding: 12px 14px;
  background:
    radial-gradient(160px 90px at 18% 18%, rgba(255,184,74,.16), transparent 65%),
    rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
}
.ah-highlight + .ah-highlight{ margin-top: 12px; }

.ah-k{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(2,6,23,.64);
}
.ah-v{
  font-weight: 1000;
  color: rgba(2,6,23,.88);
  margin-top: 2px;
  letter-spacing: -0.01em;
}

.ah-note{
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(260px 140px at 18% 20%, rgba(43,196,227,.10), transparent 60%),
    linear-gradient(90deg, rgba(29,43,45,.92), rgba(29,43,45,.78));
  border: 1px solid rgba(43,196,227,.18);
  box-shadow: 0 22px 70px rgba(2,6,23,.14);
  overflow:hidden;
}
.ah-note h3{
  margin: 0 0 8px;
  color: rgba(255,255,255,.96);
  font-weight: 1000;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.ah-note p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.74);
  font-weight: 650;
  line-height: 1.55;
}

.ah-call{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  text-decoration:none;
  border-radius: 999px;
  padding: 12px 14px;
  color: rgba(2,6,23,.92);
  font-weight: 1000;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(90deg, var(--y2), var(--y4));
  box-shadow: 0 18px 56px rgba(0,0,0,.22), 0 0 0 7px rgba(255,184,74,.14);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.ah-call:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 78px rgba(0,0,0,.26), 0 0 0 8px rgba(255,184,74,.16);
}
.ah-call:focus-visible{ outline: 3px solid rgba(255,184,74,.55); outline-offset: 4px; }

/* Gallery */
.about-home__gallery{ margin-top: 22px; }

.ah-ghead{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.ah-ghead h3{
  margin: 0;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -0.01em;
}
.ah-ghead p{
  margin: 0;
  color: rgba(2,6,23,.64);
  font-weight: 650;
}

.ah-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(120px, 10vw, 165px);
  gap: 12px;
}

.ah-grid > *{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  overflow:hidden;
  background: rgba(255,255,255,.80);
  box-shadow: 0 16px 52px rgba(2,6,23,.08);
}

.ah-grid a, .ah-grid figure{
  display:block;
  margin:0;
}

.ah-grid .gitem{
  position: relative;
  isolation: isolate;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.ah-grid .gitem:nth-child(1){
  grid-column: span 7;
  grid-row: span 2;
}
.ah-grid .gitem:nth-child(2),
.ah-grid .gitem:nth-child(3){
  grid-column: span 5;
  grid-row: span 1;
}

.ah-grid .gitem::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2,6,23,0) 30%, rgba(2,6,23,.58) 100%),
    radial-gradient(220px 140px at 90% 0%, rgba(255,184,74,.22), transparent 70%);
  pointer-events: none;
}

.ah-grid .gcap{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

.ah-grid .gtitle{
  color: rgba(255,255,255,.96);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.ah-grid .gbadge{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.94);
  font-weight: 900;
  font-size: 11px;
  backdrop-filter: blur(3px);
}

.ah-grid img{
  width:100%;
  height: 100%;
  display:block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .35s var(--ease), filter .35s var(--ease), opacity .35s var(--ease);
}
.ah-grid .gitem:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 66px rgba(2,6,23,.14);
}
.ah-grid .gitem:hover img{
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.02);
}

/* Responsive */
@media (max-width: 980px){
  .about-home__grid{ grid-template-columns: 1fr; }
  .ah-grid .gitem:nth-child(1){ grid-column: span 12; grid-row: span 2; }
  .ah-grid .gitem:nth-child(2),
  .ah-grid .gitem:nth-child(3){ grid-column: span 6; grid-row: span 1; }
  .ah-ghead{ align-items:flex-start; flex-direction: column; }
}
@media (max-width: 620px){
  .ah-grid{ grid-auto-rows: 180px; }
  .ah-grid .gitem:nth-child(1),
  .ah-grid .gitem:nth-child(2),
  .ah-grid .gitem:nth-child(3){ grid-column: span 12; grid-row: span 1; }
  .ah-bullet{ padding: 11px; }
}
@media (prefers-reduced-motion: reduce){
  .ah-call, .ah-grid img, .ah-grid .gitem{ transition: none; }
}

/* core services */

/* CORE SERVICES */
.core-services{
  --core-ink: #130f0a;
  --core-muted: rgba(19,15,10,.72);
  --core-dark: #1c140e;
  --core-dark2: #2b1b12;
  --core-gold: #ffbf2d;
  --core-gold2: #ff9a2a;
  --core-line: rgba(46,30,18,.28);
  --core-shadow: 0 24px 56px rgba(0,0,0,.20);

  padding: clamp(68px, 8vw, 120px) 0;
  background:
    radial-gradient(920px 500px at 12% 8%, rgba(255,191,45,.24), transparent 62%),
    radial-gradient(840px 520px at 88% 18%, rgba(42,28,19,.14), transparent 58%),
    linear-gradient(180deg, #fff8ea 0%, #fffef8 52%, #fff7e6 100%);
  position: relative;
}

.core-wrap{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 28px);
}

.core-head{
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.core-title{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 1000;
  color: var(--core-ink);
}

.core-sub{
  max-width: 78ch;
  margin: 0 auto;
  color: var(--core-muted);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  font-weight: 600;
}

.core-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.core-grid [data-core-item][hidden]{
  display: none !important;
}

.core-card{
  position: relative;
  isolation: isolate;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(41,27,18,.28);
  background:
    radial-gradient(700px 260px at 18% 8%, rgba(255,191,45,.18), transparent 62%),
    linear-gradient(180deg, #fffef9 0%, #fff6e8 100%);
  box-shadow: 0 16px 44px rgba(0,0,0,.12);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.core-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,191,45,0);
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
  transition: border-color .28s ease, box-shadow .28s ease;
}

.core-card::after{
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    #ffd84b 0%,
    #ff9f1c 20%,
    #3fe0ff 40%,
    #63ff9c 60%,
    #ff78d1 80%,
    #ffd84b 100%
  );
  background-size: 260% 260%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: coreBorderDance 3.2s linear infinite;
  transition: opacity .28s ease;
}

@keyframes coreBorderDance{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 200% 50%; }
}

.core-card__media{
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #120f0a;
  cursor: pointer;
}

.core-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}

.core-card__mediaHint{
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(18,12,9,.75);
  border: 1px solid rgba(255,191,45,.45);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .28s ease, transform .28s ease;
}

.core-card__body{
  padding: 15px 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  position: relative;
  z-index: 2;
}

.core-card__title{
  margin: 0;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 1000;
  color: #1a110b;
}

.core-card__desc{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.58;
  color: rgba(26,17,11,.76);
  font-weight: 600;
}

.core-card__seo{
  display: none;
}

.core-btn{
  margin-top: auto;
  align-self: flex-start;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #130f0a;
  background:
    radial-gradient(30% 120% at 18% 0%, rgba(255,255,255,.56), rgba(255,255,255,0) 70%),
    linear-gradient(90deg, var(--core-gold), var(--core-gold2));
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease, box-shadow .24s ease;
}

.core-btn:hover{
  box-shadow: 0 18px 36px rgba(0,0,0,.24);
}

.core-card:hover,
.core-card:focus-within{
  transform: translateY(-6px);
  border-color: rgba(255,191,45,.68);
  box-shadow: 0 28px 62px rgba(0,0,0,.22);
}

.core-card:hover::before,
.core-card:focus-within::before{
  border-color: rgba(255,191,45,.85);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
}

.core-card:hover::after,
.core-card:focus-within::after{
  opacity: 1;
}

.core-card:hover .core-card__img,
.core-card:focus-within .core-card__img{
  transform: scale(1.08);
  filter: saturate(1.03);
}

.core-card:hover .core-card__mediaHint,
.core-card:focus-within .core-card__mediaHint{
  opacity: 1;
  transform: translateY(0);
}

.core-card:hover .core-btn,
.core-card:focus-within .core-btn{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* actions */
.core-actions{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.core-toggle{
  border: 0;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 1000;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(90deg, #1a120d, #3a2417);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.core-toggle:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,.26);
  filter: brightness(1.02);
}

.core-toggle:active{ transform: translateY(0); }
.core-toggle:focus-visible{ outline: 3px solid rgba(255,191,45,.55); outline-offset: 3px; }
.core-toggle[hidden]{ display: none; }

/* modal */
body.core-modal-open{
  overflow: hidden;
}

.core-modal{
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
}

.core-modal.is-open{
  display: block;
}

.core-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(3px);
}

.core-modal__panel{
  position: relative;
  width: min(980px, calc(100% - 24px));
  margin: clamp(12px, 3vh, 28px) auto;
  max-height: calc(100vh - clamp(24px, 6vh, 56px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,191,45,.45);
  background:
    radial-gradient(880px 300px at 15% 0%, rgba(255,191,45,.20), transparent 60%),
    linear-gradient(180deg, #fffef8 0%, #fff8ed 100%);
  box-shadow: 0 36px 80px rgba(0,0,0,.38);
}

.core-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(18,12,9,.88);
  box-shadow: 0 10px 24px rgba(0,0,0,.30);
}

.core-modal__close:focus-visible{
  outline: 3px solid rgba(255,191,45,.65);
  outline-offset: 2px;
}

.core-modal__media{
  background: #100d09;
  min-height: 280px;
}

.core-modal__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.core-modal__content{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  padding: 22px 20px 18px;
}

.core-modal__title{
  margin: 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 1000;
  color: #1a120d;
}

.core-modal__short{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(26,18,13,.78);
  font-weight: 700;
}

.core-modal__seo{
  margin-top: 2px;
  padding-right: 8px;
  font-size: 15px;
  line-height: 1.64;
  color: rgba(26,18,13,.84);
  overflow: auto;
  max-height: min(36vh, 300px);
}

.core-modal__seo::-webkit-scrollbar{ width: 8px; }
.core-modal__seo::-webkit-scrollbar-thumb{
  border-radius: 999px;
  background: linear-gradient(180deg, var(--core-gold), var(--core-gold2));
}

.core-modal__call{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  text-decoration: none;
  padding: 12px 16px;
  font-weight: 1000;
  letter-spacing: .02em;
  color: #130f0a;
  background:
    radial-gradient(24px 24px at 28% 20%, rgba(255,255,255,.58), transparent 70%),
    linear-gradient(90deg, var(--core-gold), var(--core-gold2));
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.core-modal__call:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,.26);
  filter: saturate(1.03);
}

.core-modal__note{
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(26,18,13,.66);
  font-weight: 650;
}

@media (max-width: 980px){
  .core-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px){
  .core-grid{
    grid-template-columns: 1fr;
  }

  .core-card__body{
    min-height: 0;
  }

  .core-modal__panel{
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    margin: 10px auto;
  }

  .core-modal__media{
    max-height: 260px;
  }

  .core-modal__content{
    padding: 16px 14px 14px;
  }

  .core-modal__seo{
    max-height: min(30vh, 230px);
  }
}

@media (hover: none), (pointer: coarse){
  .core-btn{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .core-card__mediaHint{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .core-card,
  .core-card::before,
  .core-card::after,
  .core-card__img,
  .core-card__mediaHint,
  .core-btn,
  .core-toggle,
  .core-modal__call{
    transition: none !important;
  }
}

/* why choose */

/* WHY CHOOSE US " Warm Corporate Yellow (block-only, drop-in) */
.why-electric{
  --wrap: 1180px;
  --px: clamp(16px, 3vw, 28px);

  --ink: rgba(3, 7, 18, .92);
  --muted: rgba(3, 7, 18, .68);

  --deep: #1d2b2d;  /* your dark green/teal */
  --cyan: #2bc4e3;

  /* warm yellows */
  --y1: #ffe08a;
  --y2: #ffc85a;
  --y3: #ffb13a;
  --y4: #ff9a2a;

  --paper: rgba(255,255,255,.90);
  --glass: rgba(255,255,255,.78);
  --line: rgba(15,23,42,.10);

  --shadow: 0 22px 70px rgba(2, 6, 23, .14);
  --shadow2: 0 16px 52px rgba(2, 6, 23, .10);
  --ease: cubic-bezier(.2,.9,.2,1);

  padding: clamp(70px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 540px at 14% 14%, rgba(255,154,42,.16), transparent 62%),
    radial-gradient(860px 520px at 88% 12%, rgba(43,196,227,.10), transparent 58%),
    radial-gradient(720px 520px at 82% 92%, rgba(29,43,45,.10), transparent 56%),
    linear-gradient(180deg,#ffffff 0%, #fbfbfc 58%, #ffffff 100%);
}

.why-electric::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(60% 55% at 50% 40%, rgba(255,184,74,.14), transparent 72%),
    repeating-linear-gradient(135deg,
      rgba(255,184,74,.08) 0 12px,
      rgba(255,184,74,0) 12px 32px);
  opacity:.78;
  pointer-events:none;
  mask-image: radial-gradient(60% 55% at 50% 40%, #000 0%, transparent 72%);
}

.why-wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
}

.why-head{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.why-brand{
  display:flex;
  gap: 16px;
  align-items: center;
}

.why-logo{
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 18px;
  background:
    radial-gradient(28px 28px at 30% 28%, rgba(255,255,255,.75), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.55));
  border: 1px solid rgba(15,23,42,.10);
  box-shadow:
    0 18px 42px rgba(2,6,23,.10),
    0 0 0 10px rgba(255,184,74,.10);
}

.why-title{
  margin: 0 0 8px;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 950;
  color: var(--ink);
}

.why-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,154,42,.0), rgba(255,154,42,.95), rgba(43,196,227,.85));
  box-shadow: 0 18px 48px rgba(255,154,42,.22);
}

.why-sub{
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

.why-sub b{
  font-weight: 950;
  color: rgba(3,7,18,.86);
  background: rgba(255,184,74,.18);
  padding: 0 .28em;
  border-radius: 8px;
  border: 1px solid rgba(255,184,74,.22);
}

.why-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  justify-self: end;
}

.why-badge{
  border-radius: 16px;
  padding: 12px 14px;
  background:
    radial-gradient(180px 90px at 20% 18%, rgba(255,184,74,.18), transparent 65%),
    linear-gradient(180deg, var(--paper), var(--glass));
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
  position: relative;
  overflow:hidden;
  transform: translateZ(0);
}

.why-badge::before{
  content:"";
  position:absolute; inset:-1px;
  background: linear-gradient(90deg, rgba(255,184,74,0), rgba(255,184,74,.24), rgba(255,184,74,0));
  transform: translateX(-120%);
  animation: wbSweep 4.6s linear infinite;
  opacity: .7;
}

.why-badge::after{
  content:"";
  position:absolute;
  left: 10px; top: 10px;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--y2), var(--y4));
  box-shadow: 0 0 0 6px rgba(255,184,74,.14), 0 16px 40px rgba(2,6,23,.10);
}

@keyframes wbSweep{ to{ transform: translateX(120%); } }

.wb-k{
  display:block;
  font-size: 12px;
  color: rgba(3,7,18,.62);
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-left: 14px;
}
.wb-v{
  display:block;
  font-size: 14px;
  font-weight: 1000;
  color: rgba(3,7,18,.92);
  margin-top: 2px;
  padding-left: 14px;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}

.why-card{
  position: relative;
  border-radius: 18px;
  padding: 22px 18px 18px;
  background:
    radial-gradient(420px 240px at 18% 12%, rgba(255,184,74,.18), transparent 60%),
    radial-gradient(420px 240px at 92% 18%, rgba(43,196,227,.08), transparent 58%),
    linear-gradient(180deg, var(--paper), rgba(255,255,255,.72));
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
  overflow:hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, filter .35s ease;
  transform: translateZ(0);
}

.why-card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 260px at 50% 0%, rgba(255,184,74,.10), transparent 62%),
    linear-gradient(135deg, rgba(255,184,74,.08), transparent 42%, rgba(43,196,227,.06));
  opacity:.9;
  pointer-events:none;
}

.why-card::after{
  content:"";
  position:absolute;
  left:-45%;
  top:-30%;
  width: 92%;
  height: 135%;
  background: linear-gradient(90deg, rgba(255,184,74,0), rgba(255,184,74,.22), rgba(255,184,74,0));
  transform: rotate(18deg) translateX(-120%);
  transition: transform .60s ease;
  pointer-events:none;
  opacity:.85;
}

.why-ico{
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display:grid;
  place-items:center;
  color: rgba(3,7,18,.92);
  background:
    radial-gradient(24px 24px at 30% 28%, rgba(255,255,255,.58), transparent 70%),
    linear-gradient(180deg, var(--y2), var(--y4));
  box-shadow:
    0 18px 42px rgba(2,6,23,.14),
    0 0 0 7px rgba(255,184,74,.14);
  position: relative;
  z-index: 1;
}

.why-ico svg{ width: 22px; height: 22px; }

.why-card h3{
  margin: 14px 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 1000;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.why-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-weight: 650;
  font-size: 14.5px;
  position: relative;
  z-index: 1;
}

.why-chip{
  display:inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .02em;
  color: rgba(3,7,18,.88);
  background: rgba(255,184,74,.18);
  border: 1px solid rgba(255,184,74,.30);
  position: relative;
  z-index: 1;
}

.why-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,184,74,.50);
  box-shadow: 0 30px 86px rgba(15,23,42,.14);
  filter: saturate(1.04);
}
.why-card:hover::after{ transform: rotate(18deg) translateX(190%); }

/* CTA BAR */
.why-cta{
  margin-top: 22px;
  border-radius: 22px;
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background:
    radial-gradient(520px 220px at 18% 50%, rgba(255,184,74,.22), transparent 60%),
    linear-gradient(90deg, rgba(29,43,45,.94), rgba(29,43,45,.80));
  border: 1px solid rgba(43,196,227,.16);
  box-shadow: 0 24px 70px rgba(2,6,23,.18);
  position: relative;
  overflow:hidden;
}

.why-cta::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 240px at 25% 50%, rgba(255,184,74,.22), transparent 60%),
    linear-gradient(90deg, rgba(255,184,74,.10), transparent 40%, rgba(43,196,227,.08));
  opacity:.85;
  pointer-events:none;
}

.why-cta-title{
  font-weight: 1000;
  color: rgba(255,255,255,.96);
  letter-spacing: -0.01em;
  font-size: 16px;
  position: relative;
}
.why-cta-sub{
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-weight: 650;
  font-size: 13px;
  position: relative;
}

/* CTA button */
.why-call{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 1000;
  color: rgba(3,7,18,.92);
  background:
    radial-gradient(22px 22px at 30% 28%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(90deg, var(--y2), var(--y4));
  box-shadow: 0 18px 56px rgba(0,0,0,.24), 0 0 0 7px rgba(255,184,74,.14);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}
.why-call:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 28px 84px rgba(0,0,0,.28), 0 0 0 8px rgba(255,184,74,.16);
}
.why-call:active{ transform: translateY(0); }
.why-call:focus-visible{ outline: 3px solid rgba(255,184,74,.55); outline-offset: 4px; }

/* Responsive */
@media (max-width: 980px){
  .why-head{ grid-template-columns: 1fr; }
  .why-badges{ justify-self: start; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .why-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .why-brand{ align-items:flex-start; }
  .why-logo{ width: 72px; height: 72px; border-radius: 16px; }
  .why-badges{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .why-cta{ flex-direction: column; align-items: stretch; text-align: left; }
  .why-call{ width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .why-badge::before{ animation: none; }
  .why-card, .why-card::after, .why-call{ transition: none; }
}
/* Testimonials " Google-style (yellow/white/black), premium + animated */
.testimonials{
  --ink: rgba(10,10,12,.92);
  --muted: rgba(10,10,12,.62);
  --card: rgba(255,255,255,.92);
  --stroke: rgba(10,10,12,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.10);
  --r: 18px;
  --yellow: #FABB05;
  --yellow2: #FFD768;
  --black: #0B0B10;

  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(900px 460px at 15% 5%, rgba(250,187,5,.18), transparent 60%),
    radial-gradient(720px 420px at 85% 15%, rgba(0,0,0,.06), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fbfbfd 55%, #fff 100%);
  color: var(--ink);
}

.testimonials .container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
}

.t-head{ text-align: center; margin-bottom: 22px; }
.t-badge{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.g-logo{ width: 22px; height: 22px; }
.t-badge-text{ font-weight: 800; letter-spacing: .01em; }

.t-title{
  margin: 14px auto 8px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 900;
  color: var(--black);
}
.t-sub{
  margin: 0 auto;
  max-width: 68ch;
  font-size: 15px;
  color: var(--muted);
  font-weight: 650;
}

.t-summary{
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.t-score{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 34px rgba(0,0,0,.07);
}
.t-score-num{ font-size: 22px; font-weight: 950; color: var(--black); }
.t-stars{ display:inline-flex; gap: 2px; }
.star{ color: var(--yellow); text-shadow: 0 6px 18px rgba(250,187,5,.28); }
.t-score-meta{ color: var(--muted); font-weight: 700; font-size: 13px; }

.t-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.16);
  background: linear-gradient(180deg, #111 0%, #0b0b10 100%);
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  position: relative;
  overflow: hidden;
}
.t-btn:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(240px 120px at 20% 0%, rgba(250,187,5,.35), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.t-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
  filter: brightness(1.02);
}
.t-btn:active{ transform: translateY(0); }
.t-btn-arrow{ font-size: 18px; opacity: .9; }

.t-btn--big{
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #111 0%, #0b0b10 100%);
}
.t-btn--big:before{
  background: radial-gradient(340px 160px at 20% 0%, rgba(255,215,104,.42), transparent 62%);
}

.t-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.t-card{
  grid-column: span 4;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
}
.t-card:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(280px 140px at 10% 0%, rgba(250,187,5,.18), transparent 60%),
    radial-gradient(260px 140px at 90% 10%, rgba(0,0,0,.06), transparent 62%);
  opacity: .9;
  pointer-events:none;
}
.t-card-head{
  display:flex; align-items:center; gap: 12px;
  margin-bottom: 10px;
  position: relative;
}
.avatar{
  width: 42px; height: 42px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: radial-gradient(24px 24px at 35% 30%, var(--yellow2), var(--yellow));
  color: #111;
  font-weight: 950;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 14px 34px rgba(250,187,5,.22);
}
.avatar span{ font-size: 13px; letter-spacing: .04em; }
.t-who{ min-width: 0; }
.t-name{
  font-weight: 950;
  color: var(--black);
  line-height: 1.1;
}
.t-meta{
  display:flex; align-items:center; gap: 10px;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 750;
  font-size: 12.5px;
}
.t-stars-mini{ color: var(--yellow); letter-spacing: 1px; text-shadow: 0 6px 18px rgba(250,187,5,.22); }
.t-text{
  margin: 0;
  color: rgba(10,10,12,.78);
  font-weight: 650;
  line-height: 1.5;
  position: relative;
}

.t-footer{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.t-footer-note{
  color: var(--muted);
  font-weight: 750;
  max-width: 68ch;
}

@media (max-width: 980px){
  .t-card{ grid-column: span 6; }
  .t-footer{ flex-direction: column; align-items: stretch; text-align: center; }
  .t-footer-note{ max-width: none; }
}
@media (max-width: 620px){
  .t-card{ grid-column: span 12; }
  .t-summary{ gap: 10px; }
  .t-score{ width: 100%; justify-content: center; }
  .t-btn{ width: 100%; justify-content: center; }
}

/* Animations (retention) */
.reveal{
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* subtle hover lift */
.t-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.t-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  border-color: rgba(0,0,0,.16);
}

/* motion-safe */
@media (prefers-reduced-motion: reduce){
  .reveal, .t-btn, .t-card{ transition: none !important; }
}

/* areas we serve */

/* Service Areas " match premium light theme */
.service-areas{
  --ink: rgba(2, 6, 23, .92);
  --muted: rgba(2, 6, 23, .62);
  --stroke: rgba(15, 23, 42, .10);
  --card: rgba(255,255,255,.88);
  --shadow: 0 18px 60px rgba(2, 6, 23, .10);
  --r: 18px;
  --accent: #2bc4e3;
  --deep: #1d2b2d;

  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(43,196,227,.12), transparent 60%),
    radial-gradient(740px 420px at 90% 22%, rgba(29,43,45,.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 55%, #ffffff 100%);
  color: var(--ink);
}
.service-areas .container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
}

.sa-head{ text-align: center; margin-bottom: 18px; }
.sa-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 900;
}
.sa-sub{
  margin: 0 auto;
  max-width: 78ch;
  font-size: 15px;
  color: var(--muted);
  font-weight: 650;
}

.sa-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}

.sa-copy{
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.sa-copy:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 200px at 10% 0%, rgba(43,196,227,.14), transparent 60%),
    radial-gradient(420px 220px at 90% 10%, rgba(29,43,45,.08), transparent 65%);
  opacity: .9;
  pointer-events:none;
}
.sa-p{
  margin: 0 0 12px;
  color: rgba(2, 6, 23, .78);
  font-weight: 650;
  line-height: 1.55;
  position: relative;
}

.sa-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
  margin-bottom: 14px;
  position: relative;
}
.sa-chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43,196,227,.28);
  background: rgba(43,196,227,.08);
  color: rgba(2,6,23,.84);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .01em;
}

.sa-qa{
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--stroke);
  position: relative;
}
.sa-qa-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 950;
  color: rgba(2,6,23,.90);
}

.sa-map{
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow);
  padding: 14px;
  position: sticky;
  top: 92px; /* works with sticky header */
  overflow: hidden;
}
.sa-map-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.sa-map-title{
  font-weight: 950;
  letter-spacing: -.01em;
}
.sa-map-pill{
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(29,43,45,.06);
  color: rgba(2,6,23,.78);
}

.sa-map-frame{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #eef2f6;
  height: 300px;
}
.sa-map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

/* "radius" highlight overlay */
.sa-ring{
  position:absolute;
  left: 50%;
  top: 54%;
  width: 375px;
  height: 375px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid rgba(43,196,227,.55);
  box-shadow: 0 0 0 999px rgba(255,255,255,.0);
  background: radial-gradient(circle, rgba(43,196,227,.16), rgba(43,196,227,.06) 55%, rgba(43,196,227,0) 70%);
  pointer-events: none;
  animation: saPulse 2.8s ease-in-out infinite;
}
.sa-dot{
  position:absolute;
  left: 50%;
  top: 54%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #2bc4e3;
  box-shadow: 0 10px 30px rgba(43,196,227,.35);
  pointer-events: none;
}

@keyframes saPulse{
  0%,100%{ transform: translate(-50%,-50%) scale(1); opacity: .95; }
  50%{ transform: translate(-50%,-50%) scale(1.06); opacity: .78; }
}

.sa-map-cta{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(180deg, var(--deep) 0%, #0f1718 100%);
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 18px 44px rgba(2,6,23,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.sa-map-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(2,6,23,.24);
  filter: brightness(1.02);
}
.sa-map-cta:active{ transform: translateY(0); }

.sa-mini-note{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: 12.8px;
  line-height: 1.45;
}

@media (max-width: 980px){
  .sa-grid{ grid-template-columns: 1fr; }
  .sa-map{ position: relative; top: auto; }
  .sa-map-frame{ height: 240px; }
}
@media (prefers-reduced-motion: reduce){
  .sa-ring, .sa-map-cta{ animation: none !important; transition: none !important; }
}

/* CTA FINAL */

/* CTA Call " Yellow/Black, punchy, premium */
.cta-call{
  --ink: rgba(10,10,12,.92);
  --muted: rgba(10,10,12,.70);
  --stroke: rgba(10,10,12,.14);
  --r: 20px;

  --y: #FABB05;      /* Google yellow */
  --y2:#FFD768;
  --blk:#0B0B10;

  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(250,187,5,.26), transparent 60%),
    radial-gradient(700px 420px at 85% 25%, rgba(0,0,0,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fbfbfd 55%, #fff 100%);
}

.cta-call .container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
}

.cta-shell{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;

  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(10,10,12,.10);
  overflow: hidden;

  background:
    radial-gradient(520px 280px at 12% 15%, rgba(250,187,5,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.86) 100%);
  box-shadow: 0 26px 90px rgba(0,0,0,.14);
  position: relative;
}

.cta-shell:before{
  content:"";
  position:absolute; inset: 0;
  background:
    radial-gradient(720px 320px at 90% 0%, rgba(250,187,5,.16), transparent 60%),
    radial-gradient(520px 260px at 20% 100%, rgba(0,0,0,.07), transparent 58%);
  pointer-events:none;
}

.cta-copy, .cta-actions{ position: relative; padding: 22px; }

.cta-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 950;
  color: var(--blk);
}

.cta-sub{
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
  max-width: 62ch;
}

.cta-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.cta-points li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(10,10,12,.82);
}
.cta-points .dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--y);
  box-shadow: 0 12px 26px rgba(250,187,5,.34);
  border: 1px solid rgba(0,0,0,.10);
}

.cta-actions{
  border-left: 1px solid rgba(10,10,12,.10);
  display: grid;
  gap: 14px;
  align-content: center;
  background:
    radial-gradient(420px 220px at 60% 20%, rgba(255,215,104,.25), transparent 60%),
    linear-gradient(180deg, rgba(250,187,5,.12) 0%, rgba(255,255,255,.60) 100%);
}

.cta-btn{
  text-decoration: none;
  border-radius: 18px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(0,0,0,.18);
  background: linear-gradient(180deg, #111 0%, #0b0b10 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cta-btn:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(360px 160px at 20% 0%, rgba(250,187,5,.48), transparent 60%),
    radial-gradient(280px 140px at 90% 20%, rgba(255,215,104,.22), transparent 62%);
  opacity: .95;
  pointer-events:none;
}

.cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 34px 96px rgba(0,0,0,.30);
  filter: brightness(1.03);
}
.cta-btn:active{ transform: translateY(0); }

.cta-btn-top{
  display:block;
  font-weight: 950;
  letter-spacing: .02em;
  opacity: .92;
}
.cta-btn-main{
  display:block;
  font-weight: 1000;
  font-size: 26px;
  letter-spacing: .02em;
  margin-top: 2px;
}
.cta-btn-sub{
  display:block;
  margin-top: 6px;
  font-weight: 750;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.cta-trust{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.75);
  color: rgba(10,10,12,.82);
  font-weight: 900;
  font-size: 12.5px;
}

/* subtle pulse to push calls (motion-safe) */
@media (prefers-reduced-motion: no-preference){
  .cta-btn{
    animation: ctaPulse 2.6s ease-in-out infinite;
  }
  @keyframes ctaPulse{
    0%,100%{ box-shadow: 0 24px 70px rgba(0,0,0,.22); }
    50%{ box-shadow: 0 34px 96px rgba(0,0,0,.28); }
  }
}

@media (max-width: 980px){
  .cta-shell{ grid-template-columns: 1fr; }
  .cta-actions{ border-left: 0; border-top: 1px solid rgba(10,10,12,.10); }
  .cta-btn-main{ font-size: 24px; }
}


