/*
  Witness Electrical LLC — Organized stylesheet
  Reordered for maintenance only. Existing PHP class names/selectors are preserved.
  Generated from the current style.css uploaded on 2026-05-07.
*/

/* 00 — RESET / BASE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0f1a;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* 01 — GLOBAL LAYOUT / SECTIONS */
.section {
  padding: 80px 0;
}

.light {
  background: #111827;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.section p {
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 950px;
}

.section-heading {
  margin-bottom: 34px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.split-layout h2,
.section-heading h2,
.cta-box h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 780px;
}

/* 02 — GLOBAL GRID / CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: linear-gradient(145deg, #1a2235, #101827);
  padding: 28px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #223055, #16213a);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.premium-card {
  position: relative;
  overflow: hidden;
}

.premium-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(77,166,255,0.12);
  border-radius: 50%;
  filter: blur(28px);
  right: -30px;
  top: -30px;
}

.card-number {
  display: inline-block;
  color: #4da6ff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* 03 — BUTTONS */
.btn {
  background: #1f6feb;
  padding: 12px 20px;
  border-radius: 8px;
  color: white !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary-btn {
  background: linear-gradient(135deg, #1f6feb, #4da6ff);
  box-shadow: 0 12px 30px rgba(31,111,235,0.28);
  border: 1px solid rgba(255,255,255,0.08);
}

.secondary-btn {
  background: rgba(255,255,255,0.06);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  font-size: 16px;
}

/* 04 — GLOBAL CTA */
.cta-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(31,111,235,0.18), transparent 32%),
    #070b13;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  background: linear-gradient(145deg, #111827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.cta-box p {
  margin-top: 16px;
  color: #b7c2d4;
}

/* 05 — GLOBAL HERO */
.hero {
  padding: 140px 0;
  text-align: center;
  background: linear-gradient(180deg, #0b0f1a 0%, #05070d 100%);
  position: relative;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  color: #9aa4b2;
  max-width: 700px;
  margin: auto;
  font-size: 18px;
}

/* 06 — INNER PAGE HERO BASE */
.inner-hero {
  padding: 100px 0;
}

/* 07 — HEADER */
.header {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  padding: 12px 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #4da6ff;
}

/* 08 — LOGO / ACTIVE MENU */

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.site-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

nav a.active {
  color: #ffffff;
  position: relative;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(135deg, #1f6feb, #4da6ff);
}

nav a.btn.active-btn {
  box-shadow: 0 0 0 1px rgba(77,166,255,0.45), 0 12px 30px rgba(31,111,235,0.28);
}

@media (max-width: 768px) {
  .logo-link {
    justify-content: center;
  }

  .site-logo {
    width: 44px;
    height: 44px;
  }

  nav a.active::after {
    bottom: -4px;
  }
}

/* 09 — FOOTER BASE */
.footer {
  text-align: center;
  padding: 40px 0;
  background: #05070d;
  color: #777;
}

/* 10 — PREMIUM FOOTER */

.premium-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(31,111,235,0.12), transparent 32%),
    #05070d;
  padding: 70px 0 28px;
  color: #9aa4b2;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 42px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #9aa4b2;
  line-height: 1.7;
  max-width: 420px;
}

.footer-column h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-column a,
.footer-column span {
  display: block;
  color: #9aa4b2;
  text-decoration: none;
  margin-bottom: 11px;
  font-size: 14px;
}

.footer-column a:hover {
  color: #4da6ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .premium-footer {
    padding-top: 50px;
  }
}

/* 11 — HOME / PREMIUM HERO */
.premium-hero {
  min-height: 680px;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 111, 235, 0.28), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(77, 166, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #070b13 0%, #0b0f1a 100%);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(31, 111, 235, 0.22);
  filter: blur(80px);
  right: 12%;
  top: 18%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1200px;
}

.eyebrow {
  display: inline-block;
  color: #4da6ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.premium-hero h1 {
  max-width: 850px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.premium-hero p {
  max-width: 680px;
  margin: 0;
  color: #b7c2d4;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 16px;
  max-width: 760px;
  margin-top: 56px;
}

.hero-stats div {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.hero-stats span {
  color: #9aa4b2;
  font-size: 14px;
}

/* 12 — HOME / HERO BACKGROUND IMAGE */

.image-hero {
  background: #070b13;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/home-transformer-field.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,19,0.96) 0%, rgba(7,11,19,0.78) 45%, rgba(7,11,19,0.45) 100%),
    linear-gradient(180deg, rgba(7,11,19,0.45) 0%, rgba(7,11,19,0.95) 100%);
  z-index: 1;
}

.image-hero::before {
  z-index: 2;
}

.image-hero .hero-bg-glow,
.image-hero .hero-content {
  z-index: 3;
}

/* 13 — HOME / LICENSE BADGE */

.hero-license-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31,111,235,0.10);
  border: 1px solid rgba(77,166,255,0.28);
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}

.hero-license-badge span {
  color: #4da6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.hero-license-badge strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

/* 14 — HOME / CORE CAPABILITIES */

.core-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 34px;
}

.core-cap-card {
  background: linear-gradient(145deg, #111827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
   padding: 26px 28px 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.core-cap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77,166,255,0.22);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.core-cap-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.core-cap-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(77, 166, 255, 0.18);
  color: #5bb2ff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 28px rgba(77,166,255,0.12);
  margin-bottom: 22px;
}

.core-cap-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}

.core-cap-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #4da6ff;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(77,166,255,0.08);
  border: 1px solid rgba(77,166,255,0.16);
}

.core-cap-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.core-cap-card p {
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1000px) {
  .core-cap-grid {
    grid-template-columns: 1fr;
  }
}

/* 15 — HOME / WHY PARTNER IMAGE CARDS */

.why-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 34px;
}

.why-image-card {
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  transition: 0.3s ease;
}

.why-image-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77,166,255,0.24);
}

.why-card-image {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #0b0f1a;
}

.why-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,19,0.06) 0%, rgba(7,11,19,0.62) 100%),
    radial-gradient(circle at 30% 30%, rgba(31,111,235,0.22), transparent 40%);
}

.why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.why-card-content {
  padding: 28px;
}

.why-card-content h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.why-card-content p {
  color: #cbd5e1;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .why-image-grid {
    grid-template-columns: 1fr;
  }

  .why-card-image {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .why-card-image {
    height: 190px;
  }

  .why-card-content {
    padding: 24px;
  }
}

/* 16 — HOME / WHO WE SUPPORT */

.partner-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(31,111,235,0.14), transparent 30%),
    #0b0f1a;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 38px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 42px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(77,166,255,0.12);
  filter: blur(38px);
  right: -50px;
  top: -50px;
}

.partner-tag {
  display: inline-block;
  color: #4da6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.partner-card h3 {
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
  max-width: 520px;
}

.partner-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

.partner-card .btn {
  width: fit-content;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .partner-card {
    padding: 30px 24px;
  }

  .partner-card h3 {
    font-size: 24px;
  }
}


.footer-email {
  display: inline-block;
  color: #4da6ff;
  text-decoration: none;
  margin-top: 18px;
  font-size: 14px;
}

.footer-email:hover {
  color: #ffffff;
}

.footer-location {
  display: block;
  color: #6b7280;
  margin-top: 8px;
  font-size: 14px;
}

/* HOME — BRIDGE BETWEEN MARKETS */

.bridge-section {
  padding-top: 64px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 18% 18%, rgba(31,111,235,0.14), transparent 34%),
    #070b13;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bridge-cover-card {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.30);
}

.bridge-cover-image {
  position: relative;
  width: 100%;
  height: 320px;
  max-height: 320px;
  overflow: hidden;
  background: #0b0f1a;
}

.bridge-cover-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7,11,19,0.02) 0%, rgba(7,11,19,0.50) 100%),
    radial-gradient(circle at 50% 45%, rgba(31,111,235,0.18), transparent 38%);
}

.bridge-cover-image::after {
  content: "MARKET CONNECTION";
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background: rgba(7,11,19,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.bridge-cover-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bridge-cover-content {
  padding: 38px 44px 42px;
}

.bridge-cover-content h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  max-width: 820px;
  margin-bottom: 18px;
}

.bridge-cover-content p {
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 860px;
}

.bridge-cover-content p + p {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .bridge-cover-card {
    width: 100%;
    max-width: 100%;
  }

  .bridge-cover-image {
    height: 260px;
    max-height: 260px;
  }

  .bridge-cover-image img {
    max-height: 260px;
  }

  .bridge-cover-content {
    padding: 36px 30px 38px;
  }

  .bridge-cover-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .bridge-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .bridge-cover-card {
    border-radius: 20px;
  }

  .bridge-cover-image {
    height: 210px;
    max-height: 210px;
  }

  .bridge-cover-image img {
    max-height: 210px;
  }

  .bridge-cover-content {
    padding: 30px 24px 32px;
  }

  .bridge-cover-content h2 {
    font-size: 26px;
  }

  .bridge-cover-image::after {
    left: 18px;
    bottom: 18px;
    font-size: 10px;
  }
}

/* 18 — ABOUT / PAGE BASE */

.about-hero {
  background:
    radial-gradient(circle at 20% 25%, rgba(31,111,235,0.24), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(77,166,255,0.12), transparent 28%),
    linear-gradient(180deg, #070b13 0%, #0b0f1a 100%);
  overflow: hidden;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero p {
  max-width: 780px;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.about-highlight {
  background: linear-gradient(145deg, #101827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px;
}

.about-highlight h3 {
  margin-bottom: 14px;
  color: #fff;
}

.about-highlight p {
  color: #cbd5e1;
  line-height: 1.6;
}

.vision-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(31,111,235,0.18), transparent 35%),
    #070b13;
}

.vision-box {
  text-align: center;
  max-width: 1000px;
}

.vision-box h2 {
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -1.2px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .about-highlight-grid {
    grid-template-columns: 1fr;
  }

  .vision-box h2 {
    font-size: 32px;
  }
}

/* 19 — ABOUT / HERO IMAGE */

.about-hero-image {
  position: relative;
  overflow: hidden;
  background: #070b13;
}

.about-hero-image .container {
  position: relative;
  z-index: 4;
}

.about-hero-image .inner-hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/about-hero.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  transform: scale(1.02);
  z-index: 1;
}

.about-hero-image .inner-hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 76%, rgba(31,111,235,0.34), transparent 28%),
    linear-gradient(180deg, rgba(7,11,19,0.50) 0%, rgba(7,11,19,0.82) 100%),
    linear-gradient(90deg, rgba(7,11,19,0.88) 0%, rgba(7,11,19,0.62) 48%, rgba(7,11,19,0.40) 100%);
  z-index: 2;
}

.about-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: 3;
}

.about-hero-image::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31,111,235,0.26);
  filter: blur(95px);
 left: 8%;
bottom: -240px;
  z-index: 3;
  pointer-events: none;
}

.about-hero-image h1,
.about-hero-image p,
.about-hero-image .eyebrow,
.about-hero-image .hero-actions {
  position: relative;
  z-index: 4;
}

/* 20 — ABOUT / FIELD EXPERTISE IMAGE SECTION */

.about-image-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-image-copy h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 680px;
}

.about-image-copy p + p {
  margin-top: 18px;
}

.about-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 90px rgba(0,0,0,0.30);
  background: #0b0f1a;
}

.about-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,19,0.05) 0%, rgba(7,11,19,0.55) 100%),
    radial-gradient(circle at 20% 20%, rgba(31,111,235,0.22), transparent 35%);
  z-index: 2;
}

.about-visual-card::after {
  content: "FIELD-DRIVEN EXPERTISE";
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: rgba(7,11,19,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .about-image-layout {
    grid-template-columns: 1fr;
  }

  .about-visual-card {
    min-height: 320px;
  }

  .about-visual-card img {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .about-image-copy h2 {
    font-size: 30px;
  }

  .about-visual-card {
    border-radius: 18px;
  }
}

.footer-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: 0.95;
}

/* 21 — ABOUT / VISION IMAGE SECTION */

.vision-image-section {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 110px 0;
  display: flex;
  align-items: center;
  background: #070b13;
}

.vision-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/vision-statement.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  transform: scale(1.02);
  z-index: 1;
}

.vision-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 70%, rgba(31,111,235,0.28), transparent 34%),
    linear-gradient(90deg, rgba(7,11,19,0.92) 0%, rgba(7,11,19,0.74) 48%, rgba(7,11,19,0.52) 100%),
    linear-gradient(180deg, rgba(7,11,19,0.44) 0%, rgba(7,11,19,0.90) 100%);
  z-index: 2;
}

.vision-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: 3;
  pointer-events: none;
}

.vision-image-box {
  position: relative;
  z-index: 4;
  max-width: 1050px;
  margin: 0 auto;
  padding: 52px;
  border-radius: 28px;
  background: rgba(7,11,19,0.58);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
}

.vision-image-box h2 {
  font-size: 46px;
  line-height: 1.14;
  letter-spacing: -1.3px;
  max-width: 980px;
  margin: 0;
  color: #ffffff;
}

@media (max-width: 900px) {
  .vision-image-section {
    min-height: auto;
    padding: 80px 0;
  }

  .vision-image-box {
    padding: 40px 32px;
  }

  .vision-image-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .vision-image-section {
    padding: 64px 0;
  }

  .vision-image-box {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .vision-image-box h2 {
    font-size: 28px;
  }
}

/* 22 — PRODUCTS / PAGE BASE */

.products-hero {
  background:
    radial-gradient(circle at 18% 25%, rgba(31,111,235,0.26), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(77,166,255,0.14), transparent 28%),
    linear-gradient(180deg, #070b13 0%, #0b0f1a 100%);
  overflow: hidden;
}

.products-hero .container {
  position: relative;
  z-index: 2;
}

.products-hero h1 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.products-hero p {
  max-width: 760px;
}

.inner-actions {
  justify-content: center;
  margin-top: 32px;
}

.product-grid {
  align-items: stretch;
}

.product-card {
  min-height: 250px;
}

.product-card h3 {
  font-size: 21px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.process-step {
  position: relative;
  background: linear-gradient(145deg, #101827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 48px;
  left: -14px;
  width: 28px;
  height: 1px;
  background: rgba(77,166,255,0.45);
}

.process-step:first-child::before {
  display: none;
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #4da6ff;
  background: rgba(77,166,255,0.1);
  border: 1px solid rgba(77,166,255,0.22);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step::before {
    display: none;
  }
}

/* 23 — PRODUCTS / HERO IMAGE */

.products-hero-image {
  position: relative;
  overflow: hidden;
  background: #070b13;
}

.products-hero-image .container {
  position: relative;
  z-index: 4;
}

.products-hero-image .inner-hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/products-hero.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  transform: scale(1.02);
  z-index: 1;
}

.products-hero-image .inner-hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 78%, rgba(31,111,235,0.36), transparent 30%),
    linear-gradient(180deg, rgba(7,11,19,0.50) 0%, rgba(7,11,19,0.84) 100%),
    linear-gradient(90deg, rgba(7,11,19,0.90) 0%, rgba(7,11,19,0.66) 48%, rgba(7,11,19,0.42) 100%);
  z-index: 2;
}

.products-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: 3;
}

.products-hero-image::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31,111,235,0.26);
  filter: blur(35px);
  left: 8%;
  bottom: -240px;
  z-index: 3;
  pointer-events: none;
}

.products-hero-image h1,
.products-hero-image p,
.products-hero-image .eyebrow,
.products-hero-image .hero-actions {
  position: relative;
  z-index: 4;
}

/* 24 — PRODUCTS / SUPPLY APPROACH IMAGE SECTION */

.products-image-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.products-image-copy h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  max-width: 620px;
}

.products-image-copy p {
  max-width: 640px;
}

.products-image-copy p + p {
  margin-top: 18px;
}

.products-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 90px rgba(0,0,0,0.30);
  background: #0b0f1a;
}

.products-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,19,0.03) 0%, rgba(7,11,19,0.48) 100%),
    radial-gradient(circle at 80% 20%, rgba(31,111,235,0.20), transparent 35%);
  z-index: 2;
}

.products-visual-card::after {
  content: "SUPPLY COORDINATION";
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: rgba(7,11,19,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.products-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .products-image-layout {
    grid-template-columns: 1fr;
  }

  .products-visual-card {
    min-height: 320px;
  }

  .products-visual-card img {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .products-image-copy h2 {
    font-size: 30px;
  }

  .products-visual-card {
    border-radius: 18px;
  }
}

/* PRODUCTS FEATURED CATALOG */

.products-catalog-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(31,111,235,0.10), transparent 32%),
    #0b0f1a;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.featured-product-card {
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  transition: 0.3s ease;
}

.featured-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77,166,255,0.24);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.featured-product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #070b13;
}

.featured-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,19,0.02) 0%, rgba(7,11,19,0.60) 100%),
    radial-gradient(circle at 35% 30%, rgba(31,111,235,0.20), transparent 42%);
  z-index: 2;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.featured-product-content {
  padding: 30px;
}

.product-card-label {
  display: inline-block;
  color: #4da6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.featured-product-content h3 {
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.featured-product-content p {
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

/* PRODUCTS SUPPORT CAPABILITIES */

.support-capabilities-block {
  margin-top: 70px;
}

.support-capabilities-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.support-capabilities-heading h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 0;
}

.support-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-capability-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  transition: 0.3s ease;
}

.support-capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77,166,255,0.22);
  background: rgba(255,255,255,0.05);
}

.support-capability-icon {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5bb2ff;
  background:
    radial-gradient(circle at 30% 30%, rgba(77,166,255,0.18), transparent 60%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(77,166,255,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 28px rgba(77,166,255,0.10);
  flex-shrink: 0;
}

.support-capability-icon svg {
  width: 28px;
  height: 28px;
}

.support-capability-number {
  display: inline-block;
  color: #4da6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.support-capability-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.support-capability-card p {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1000px) {
  .featured-products-grid,
  .support-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .featured-product-image {
    height: 280px;
  }

  .support-capability-card {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 600px) {
  .featured-product-image {
    height: 220px;
  }

  .featured-product-content {
    padding: 26px 24px;
  }

  .featured-product-content h3 {
    font-size: 23px;
  }

  .support-capabilities-block {
    margin-top: 52px;
  }

  .support-capabilities-heading h2 {
    font-size: 28px;
  }

  .support-capability-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
}
/* 25 — MARKETS / PAGE BASE */

.markets-hero {
  background:
    radial-gradient(circle at 20% 25%, rgba(31,111,235,0.25), transparent 30%),
    radial-gradient(circle at 80% 15%, rgba(77,166,255,0.12), transparent 28%),
    linear-gradient(180deg, #070b13 0%, #0b0f1a 100%);
  overflow: hidden;
}

.markets-hero .container {
  position: relative;
  z-index: 2;
}

.markets-hero h1 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.markets-hero p {
  max-width: 780px;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.market-card {
  background: linear-gradient(145deg, #101827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px;
  min-height: 285px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.market-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(77,166,255,0.11);
  filter: blur(32px);
  right: -40px;
  top: -40px;
}

.market-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77,166,255,0.22);
}

.featured-market {
  grid-column: span 2;
  background:
    radial-gradient(circle at 80% 20%, rgba(31,111,235,0.22), transparent 35%),
    linear-gradient(145deg, #16213a, #101827);
}

.market-label {
  display: inline-block;
  color: #4da6ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.market-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.market-card p {
  color: #cbd5e1;
  line-height: 1.65;
}

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.market-statement-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(31,111,235,0.20), transparent 36%),
    #070b13;
}

.market-statement {
  text-align: center;
  max-width: 1050px;
}

.market-statement h2 {
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: -1.2px;
}

@media (max-width: 1000px) {
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-market {
    grid-column: span 1;
  }

  .drivers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .markets-grid,
  .drivers-grid {
    grid-template-columns: 1fr;
  }

  .market-statement h2 {
    font-size: 32px;
  }
}

/* 26 — MARKETS / HERO IMAGE */

.markets-hero-image {
  position: relative;
  overflow: hidden;
  background: #070b13;
}

.markets-hero-image .container {
  position: relative;
  z-index: 4;
}

.markets-hero-image .markets-hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/markets-hero.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.62;
  transform: scale(1.02);
  z-index: 1;
}

.markets-hero-image .markets-hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 76%, rgba(31,111,235,0.36), transparent 28%),
    linear-gradient(180deg, rgba(7,11,19,0.50) 0%, rgba(7,11,19,0.84) 100%),
    linear-gradient(90deg, rgba(7,11,19,0.90) 0%, rgba(7,11,19,0.64) 48%, rgba(7,11,19,0.40) 100%);
  z-index: 2;
}

.markets-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: 3;
}

.markets-hero-image::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31,111,235,0.26);
  filter: blur(95px);
  left: 8%;
  bottom: -240px;
  z-index: 3;
  pointer-events: none;
}

.markets-hero-image h1,
.markets-hero-image p,
.markets-hero-image .eyebrow,
.markets-hero-image .hero-actions {
  position: relative;
  z-index: 4;
}

/* 27 — MARKETS / ELECTRIFICATION IMAGE SECTION */

.markets-image-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.markets-image-copy h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  max-width: 640px;
}

.markets-image-copy p {
  max-width: 660px;
}

.markets-image-copy p + p {
  margin-top: 18px;
}

.markets-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 90px rgba(0,0,0,0.30);
  background: #0b0f1a;
}

.markets-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,19,0.02) 0%, rgba(7,11,19,0.46) 100%),
    radial-gradient(circle at 25% 20%, rgba(31,111,235,0.22), transparent 35%);
  z-index: 2;
}

.markets-visual-card::after {
  content: "GLOBAL SUPPLY MARKETS";
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: rgba(7,11,19,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.markets-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .markets-image-layout {
    grid-template-columns: 1fr;
  }

  .markets-visual-card {
    min-height: 320px;
  }

  .markets-visual-card img {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .markets-image-copy h2 {
    font-size: 30px;
  }

  .markets-visual-card {
    border-radius: 18px;
  }
}

/* 28 — MARKETS / STRATEGIC POSITION IMAGE SECTION */

.market-vision-image-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 105px 0;
  display: flex;
  align-items: center;
  background: #070b13;
}

.market-vision-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/vision-statement.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.70;
  transform: scale(1.02);
  z-index: 1;
}

.market-vision-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 70%, rgba(31,111,235,0.28), transparent 34%),
    linear-gradient(90deg, rgba(7,11,19,0.92) 0%, rgba(7,11,19,0.74) 48%, rgba(7,11,19,0.52) 100%),
    linear-gradient(180deg, rgba(7,11,19,0.44) 0%, rgba(7,11,19,0.90) 100%);
  z-index: 2;
}

.market-vision-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: 3;
  pointer-events: none;
}

.market-vision-box {
  position: relative;
  z-index: 4;
  max-width: 1050px;
  margin: 0 auto;
  padding: 52px;
  border-radius: 28px;
  background: rgba(7,11,19,0.58);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
}

.market-vision-box h2 {
  font-size: 46px;
  line-height: 1.14;
  letter-spacing: -1.3px;
  max-width: 980px;
  margin: 0;
  color: #ffffff;
}

@media (max-width: 900px) {
  .market-vision-image-section {
    min-height: auto;
    padding: 80px 0;
  }

  .market-vision-box {
    padding: 40px 32px;
  }

  .market-vision-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .market-vision-image-section {
    padding: 64px 0;
  }

  .market-vision-box {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .market-vision-box h2 {
    font-size: 28px;
  }
}

/* 29 — CONTACT / BASE FORM STYLES */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  margin-top: 30px;
  background: #1a2235;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form {
  background: linear-gradient(145deg, #1a2235, #101827);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: #0b0f1a;
  color: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7b8494;
}

/* 30 — CONTACT / PREMIUM LAYOUT */

.contact-hero {
  background:
    radial-gradient(circle at 20% 25%, rgba(31,111,235,0.24), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(77,166,255,0.12), transparent 28%),
    linear-gradient(180deg, #070b13 0%, #0b0f1a 100%);
  overflow: hidden;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero p {
  max-width: 780px;
}

.contact-premium-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: start;
}

.contact-copy h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 760px;
  margin-bottom: 20px;
}

.premium-contact-info {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.premium-contact-info div {
  display: grid;
  gap: 6px;
}

.premium-contact-info strong {
  color: #4da6ff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.premium-contact-info span {
  color: #cbd5e1;
}

.contact-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.contact-audience-grid div {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
}

.contact-audience-grid h3 {
  margin-bottom: 10px;
}

.contact-audience-grid p {
  color: #cbd5e1;
  line-height: 1.6;
}

.premium-form {
  position: sticky;
  top: 100px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: #8b96a8 !important;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .contact-premium-layout {
    grid-template-columns: 1fr;
  }

  .premium-form {
    position: static;
  }
}

@media (max-width: 700px) {
  .contact-copy h2 {
    font-size: 30px;
  }

  .contact-audience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* 31 — CONTACT / HERO IMAGE */

.contact-hero-image {
  position: relative;
  overflow: hidden;
  background: #070b13;
}

.contact-hero-image .container {
  position: relative;
  z-index: 4;
}

.contact-hero-image .contact-hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/contact-hero.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.90;
  transform: scale(1.02);
  z-index: 1;
}

.contact-hero-image .contact-hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(31,111,235,0.34), transparent 28%),
    linear-gradient(180deg, rgba(7,11,19,0.54) 0%, rgba(7,11,19,0.86) 100%),
    linear-gradient(90deg, rgba(7,11,19,0.90) 0%, rgba(7,11,19,0.66) 48%, rgba(7,11,19,0.42) 100%);
  z-index: 2;
}

.contact-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: 3;
}

.contact-hero-image::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31,111,235,0.26);
  filter: blur(95px);
  left: 8%;
  bottom: -240px;
  z-index: 3;
  pointer-events: none;
}

.contact-hero-image h1,
.contact-hero-image p,
.contact-hero-image .eyebrow,
.contact-hero-image .hero-actions {
  position: relative;
  z-index: 4;
}

/* 32 — CONTACT / FORM STATUS MESSAGES */

.form-alert {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.form-alert.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.website-field {
  display: none;
}

/* 99 — GLOBAL RESPONSIVE OVERRIDES */
@media (max-width: 900px) {
  .premium-hero {
    min-height: auto;
    padding: 100px 0;
  }

  .premium-hero h1 {
    font-size: 44px;
  }

  .hero-content {
    text-align: center;
  }

  .premium-hero p {
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .premium-hero h1 {
    font-size: 36px;
  }

  .split-layout h2,
  .section-heading h2,
  .cta-box h2 {
    font-size: 30px;
  }

  .cta-box {
    padding: 32px 24px;
  }
}

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #1f6feb, #4da6ff);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(31,111,235,0.32);
  border: 1px solid rgba(255,255,255,0.18);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(31,111,235,0.42);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* INFRASTRUCTURE DRIVERS IMAGE CARDS */

.drivers-image-grid {
  align-items: stretch;
}

.driver-image-card {
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #0b0f1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  transition: 0.3s ease;
}

.driver-image-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77,166,255,0.24);
}

.driver-card-image {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #0b0f1a;
}

.driver-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,19,0.06) 0%, rgba(7,11,19,0.64) 100%),
    radial-gradient(circle at 30% 30%, rgba(31,111,235,0.22), transparent 40%);
}

.driver-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.driver-card-content {
  padding: 24px;
}

.driver-accent {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(135deg, #1f6feb, #4da6ff);
  margin-bottom: 20px;
}

.driver-card-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.driver-card-content p {
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .driver-card-image {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .driver-card-image {
    height: 190px;
  }

  .driver-card-content {
    padding: 24px;
  }
}

/* LEGAL PAGES */

.legal-hero {
  background:
    radial-gradient(circle at 20% 25%, rgba(31,111,235,0.22), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(77,166,255,0.10), transparent 28%),
    linear-gradient(180deg, #070b13 0%, #0b0f1a 100%);
}

.legal-hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.legal-hero p {
  max-width: 760px;
}

.legal-section {
  padding-top: 70px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 14px;
  color: #ffffff;
}

.legal-content p {
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 18px;
}

.legal-content a {
  color: #4da6ff;
  text-decoration: none;
  font-weight: 700;
}

.legal-content a:hover {
  color: #ffffff;
}

.legal-updated {
  color: #8b96a8 !important;
  font-size: 14px;
  margin-bottom: 34px !important;
}

/* 100 — MOBILE REFINEMENTS / HERO IMAGE VISIBILITY
   Add this block at the END of style.css so it overrides previous rules.
*/
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: 88%;
  }

  .section {
    padding: 58px 0;
  }

  .header {
    padding: 10px 0;
  }

  .nav {
    gap: 12px;
  }

  .logo-link {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 6px;
    -webkit-overflow-scrolling: touch;
  }

  nav a {
    margin: 0;
    flex: 0 0 auto;
    font-size: 13px;
  }

  nav a.btn {
    padding: 9px 13px;
  }

  .hero,
  .inner-hero,
  .premium-hero {
    min-height: auto;
    padding: 78px 0 72px;
  }

  .premium-hero h1,
  .hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .premium-hero p,
  .hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-license-badge {
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
    text-align: center;
  }

  .hero-stats {
    margin-top: 34px;
  }

  .hero-image-bg,
  .about-hero-image .inner-hero-image-bg,
  .products-hero-image .inner-hero-image-bg,
  .markets-hero-image .markets-hero-image-bg,
  .contact-hero-image .contact-hero-image-bg,
  .vision-image-bg,
  .market-vision-image-bg {
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    transform: none;
    opacity: 0.62;
  }

  .hero-image-overlay,
  .about-hero-image .inner-hero-image-overlay,
  .products-hero-image .inner-hero-image-overlay,
  .markets-hero-image .markets-hero-image-overlay,
  .contact-hero-image .contact-hero-image-overlay,
  .vision-image-overlay,
  .market-vision-image-overlay {
    background:
      linear-gradient(180deg, rgba(7,11,19,0.45) 0%, rgba(7,11,19,0.70) 34%, rgba(7,11,19,0.96) 100%),
      linear-gradient(90deg, rgba(7,11,19,0.78) 0%, rgba(7,11,19,0.60) 50%, rgba(7,11,19,0.78) 100%);
  }

  .about-hero-image::after,
  .products-hero-image::after,
  .markets-hero-image::after,
  .contact-hero-image::after {
    width: 320px;
    height: 320px;
    left: 50%;
    bottom: -190px;
    transform: translateX(-50%);
    filter: blur(70px);
  }

  .split-layout h2,
  .section-heading h2,
  .cta-box h2,
  .about-image-copy h2,
  .products-image-copy h2,
  .markets-image-copy h2,
  .contact-copy h2,
  .bridge-cover-content h2,
  .market-statement h2,
  .vision-image-box h2,
  .market-vision-box h2 {
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.14;
    letter-spacing: -0.7px;
  }

  .card,
  .core-cap-card,
  .market-card,
  .about-highlight,
  .process-step,
  .contact-form,
  .contact-info,
  .contact-audience-grid div,
  .support-capability-card,
  .driver-image-card,
  .why-image-card,
  .featured-product-card {
    border-radius: 18px;
  }

  .market-card,
  .about-highlight,
  .process-step,
  .card,
  .core-cap-card {
    padding: 24px;
    min-height: auto;
  }

  .products-visual-card,
  .about-visual-card,
  .markets-visual-card {
    min-height: 260px;
  }

  .products-visual-card img,
  .about-visual-card img,
  .markets-visual-card img {
    min-height: 260px;
    object-position: center;
  }

  .cta-section {
    padding: 58px 0;
  }

  .cta-box {
    gap: 24px;
  }

  .cta-box .btn {
    width: 100%;
  }

  .footer-logo {
    width: 96px;
    height: 96px;
  }

  .premium-footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 430px) {
  .container {
    width: 90%;
  }

  .premium-hero h1,
  .hero h1 {
    font-size: 31px;
  }

  .hero,
  .inner-hero,
  .premium-hero {
    padding: 70px 0 64px;
  }

  .btn {
    padding: 12px 16px;
  }

  .hero-image-bg,
  .about-hero-image .inner-hero-image-bg,
  .products-hero-image .inner-hero-image-bg,
  .markets-hero-image .markets-hero-image-bg,
  .contact-hero-image .contact-hero-image-bg {
    background-size: 120% auto;
    background-position: center top;
  }

  .why-card-image,
  .driver-card-image,
  .featured-product-image,
  .bridge-cover-image {
    height: 180px;
  }
}
