/* ==========================================================
   ROOT VARIABLES
   ========================================================== */

:root {
  --ink: #0b1220;
  --muted: #667085;
  --line: #e8edf5;

  --paper: #ffffff;
  --soft: #f5f8ff;

  --blue: #0b5cff;
  --blue2: #0037a8;
  --cyan: #5fd4ff;

  --gold: #ffbf47;
  --navy: #071a3d;

  --whatsapp: #25d366;

  --shadow: 0 20px 60px rgba(9, 36, 89, 0.12);

  --shadow-light: 0 10px 32px rgba(13, 42, 91, 0.08);

  --radius: 24px;

  --max: 1180px;
}

/* ==========================================================
   BASE
   ========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--ink);

  background: var(--paper);

  line-height: 1.6;
}

a {
  text-decoration: none;

  color: inherit;
}

img {
  max-width: 100%;

  display: block;
}

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

.wrap {
  width: min(var(--max), calc(100% - 40px));

  margin: auto;
}

/* ==========================================================
   TOP BAR
   ========================================================== */

.topbar {
  background: var(--navy);

  color: #d8e4ff;

  font-size: 13px;
}

.topbar .wrap {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 18px;

  padding: 8px 0;
}

.topbar a {
  color: #ffffff;
}

.topbar a:hover {
  color: var(--cyan);
}

/* ==========================================================
   HEADER / NAVIGATION
   ========================================================== */

header {
  position: sticky;

  top: 0;

  z-index: 50;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(232, 237, 245, 0.8);
}

.nav {
  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 78px;

  gap: 24px;
}

.brand {
  font-weight: 900;

  letter-spacing: 0.02em;

  color: var(--navy);

  line-height: 1.05;
}

.brand small {
  display: block;

  font-size: 10px;

  letter-spacing: 0.18em;

  color: var(--blue);

  margin-top: 6px;
}

.nav nav {
  display: flex;

  align-items: center;

  gap: 19px;

  font-size: 14px;

  font-weight: 700;
}

.nav nav a {
  transition: color 0.2s ease;
}

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

.menuBtn {
  display: none;

  background: none;

  border: 0;

  color: var(--navy);

  font-size: 26px;

  cursor: pointer;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.cta,
.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  border-radius: 999px;

  font-weight: 800;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta {
  background: var(--blue);

  color: white !important;

  padding: 12px 18px;

  box-shadow: 0 10px 24px rgba(11, 92, 255, 0.2);
}

.btn {
  background: linear-gradient(135deg, var(--blue), var(--blue2));

  color: #ffffff;

  padding: 14px 22px;

  box-shadow: 0 14px 28px rgba(11, 92, 255, 0.2);

  border: 0;

  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;

  color: var(--navy);

  box-shadow: none;

  border: 1px solid var(--line);
}

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

/* ==========================================================
   HOME HERO
   ========================================================== */

.hero {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(95, 212, 255, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, #061734 0%, #082b72 56%, #0b5cff 100%);

  color: white;
}

.hero::after {
  content: "";

  position: absolute;

  right: -100px;

  bottom: -120px;

  width: 460px;

  height: 460px;

  border-radius: 50%;

  border: 70px solid rgba(255, 255, 255, 0.06);
}

.hero .wrap {
  position: relative;

  z-index: 1;

  padding: 92px 0 96px;
}

.eyebrow {
  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.19em;

  text-transform: uppercase;

  color: var(--blue);
}

.hero .eyebrow,
.pagehero .eyebrow {
  color: #8bdfff;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);

  line-height: 0.98;

  margin: 18px 0 22px;

  letter-spacing: -0.05em;

  max-width: 900px;
}

.hero h1 span {
  color: var(--cyan);
}

.hero p {
  font-size: 20px;

  max-width: 760px;

  color: #dbe8ff;
}

.heroActions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.hero .btn.secondary {
  background: rgba(255, 255, 255, 0.1);

  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================
   PAGE HERO
   ========================================================== */

.pagehero {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 25%,
      rgba(95, 212, 255, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, #071a3d, #0b5cff);

  color: #ffffff;
}

.pagehero::after {
  content: "";

  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  right: -100px;

  top: -130px;

  border: 55px solid rgba(255, 255, 255, 0.06);
}

.pagehero .wrap {
  position: relative;

  z-index: 2;

  padding: 72px 0 74px;
}

.pagehero h1 {
  font-size: clamp(42px, 5vw, 66px);

  line-height: 1.05;

  margin: 12px 0 15px;

  letter-spacing: -0.04em;

  max-width: 850px;
}

.pageheroLead {
  max-width: 760px;

  margin: 0;

  color: #dbe8ff;

  font-size: 18px;
}

/* ==========================================================
   STATS
   ========================================================== */

.stats {
  margin-top: -34px;

  position: relative;

  z-index: 4;
}

.stats .wrap {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  background: #ffffff;

  border-radius: 22px;

  box-shadow: var(--shadow);

  overflow: hidden;
}

.stat {
  padding: 28px 22px;

  text-align: center;

  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;

  font-size: 30px;

  color: var(--blue);
}

.stat small {
  font-weight: 700;

  color: var(--muted);
}

/* ==========================================================
   GENERAL SECTIONS
   ========================================================== */

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: linear-gradient(135deg, #061329, #071f48);

  color: white;
}

.section h2 {
  font-size: clamp(34px, 4vw, 52px);

  line-height: 1.08;

  letter-spacing: -0.035em;

  margin: 12px 0 18px;
}

.lead {
  font-size: 19px;

  color: var(--muted);

  max-width: 760px;
}

.dark .lead {
  color: #bed0ef;
}

/* ==========================================================
   GRID / CARDS
   ========================================================== */

.grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin-top: 34px;
}

.card {
  position: relative;

  background: white;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  padding: 28px;

  box-shadow: 0 8px 30px rgba(13, 42, 91, 0.06);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card::before {
  content: "";

  position: absolute;

  inset: 0 auto auto 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 42px rgba(13, 42, 91, 0.12);
}

.card h3 {
  margin: 2px 0 8px;

  font-size: 22px;
}

.card p {
  color: var(--muted);

  margin: 0;
}

.icon {
  width: 50px;

  height: 50px;

  border-radius: 14px;

  background: linear-gradient(135deg, #e7f1ff, #d8f7ff);

  display: grid;

  place-items: center;

  font-weight: 900;

  color: var(--blue);

  margin-bottom: 18px;

  font-size: 20px;
}

/* ==========================================================
   TWO COLUMN LAYOUT
   ========================================================== */

.two {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 58px;

  align-items: center;
}

.panel {
  background: #ffffff;

  border-radius: 28px;

  padding: 34px;

  box-shadow: var(--shadow);

  border: 1px solid var(--line);
}

.panel h3 {
  color: var(--navy);

  font-size: 26px;

  line-height: 1.3;

  margin: 12px 0 16px;
}

/* ==========================================================
   FEATURE LIST
   ========================================================== */

.featureList {
  display: grid;

  gap: 17px;

  margin-top: 26px;
}

.feature {
  display: flex;

  gap: 14px;

  align-items: flex-start;
}

.feature strong {
  color: var(--navy);
}

.feature div div {
  color: var(--muted);

  margin-top: 3px;

  font-size: 14px;
}

.check {
  width: 25px;

  height: 25px;

  flex: 0 0 25px;

  border-radius: 50%;

  background: #e9f8ff;

  color: var(--blue);

  display: grid;

  place-items: center;

  font-weight: 900;
}

/* ==========================================================
   INDUSTRY SEGMENTS
   ========================================================== */

.segmentGrid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-top: 32px;
}

.segment {
  min-height: 210px;

  border-radius: 24px;

  padding: 24px;

  color: white;

  position: relative;

  overflow: hidden;

  background: linear-gradient(145deg, #0b5cff, #071a3d);
}

.segment:nth-child(2) {
  background: linear-gradient(145deg, #0a7fb6, #071a3d);
}

.segment:nth-child(3) {
  background: linear-gradient(145deg, #6646e8, #071a3d);
}

.segment:nth-child(4) {
  background: linear-gradient(145deg, #1d8b5f, #071a3d);
}

.segment b {
  font-size: 23px;

  display: block;

  max-width: 180px;

  line-height: 1.1;
}

.segment small {
  position: absolute;

  bottom: 20px;

  color: #d7e6ff;
}

.segment::after {
  content: "";

  position: absolute;

  right: -25px;

  top: -25px;

  width: 100px;

  height: 100px;

  border: 24px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

/* ==========================================================
   LEADERSHIP
   ========================================================== */

.leadership-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(11, 92, 255, 0.1),
      transparent 30%
    ),
    #ffffff;
}

.section-heading {
  max-width: 820px;

  margin-bottom: 40px;
}

.team {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;

  margin-top: 34px;
}

.teamCard {
  position: relative;

  display: flex;

  gap: 20px;

  background: #ffffff;

  border: 1px solid rgba(15, 47, 87, 0.1);

  border-radius: 20px;

  padding: 28px;

  box-shadow: 0 12px 35px rgba(18, 51, 91, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.teamCard:hover {
  transform: translateY(-6px);

  border-color: rgba(8, 102, 255, 0.25);

  box-shadow: 0 20px 48px rgba(18, 51, 91, 0.14);
}

.teamIcon {
  flex: 0 0 58px;

  width: 58px;

  height: 58px;

  border-radius: 16px;

  background: linear-gradient(135deg, #0866ff, #0045ad);

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 23px;

  box-shadow: 0 8px 22px rgba(8, 102, 255, 0.24);
}

.teamContent {
  flex: 1;

  min-width: 0;
}

.teamCard h3 {
  margin: 1px 0 5px;

  color: #092448;

  font-size: 1.25rem;
}

.teamRole {
  color: #0866ff;

  font-size: 0.93rem;

  font-weight: 700;

  margin-bottom: 18px;
}

.teamContact {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.teamContact a {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #536173;

  text-decoration: none;

  font-size: 0.94rem;

  overflow-wrap: anywhere;

  transition: color 0.2s ease;
}

.teamContact a:hover {
  color: var(--blue);
}

.teamContact i {
  width: 16px;

  color: var(--blue);
}

.teamActions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 20px;
}

.contactAction {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  padding: 10px 16px;

  border-radius: 9px;

  font-size: 0.88rem;

  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.emailAction {
  background: var(--blue);

  color: #ffffff !important;
}

.whatsappAction {
  background: var(--whatsapp);

  color: #ffffff !important;
}

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

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.13);
}

/* ==========================================================
   BACKWARD SUPPORT FOR OLD TEAM CLASSES
   ========================================================== */

.person {
  background: #ffffff;

  border: 1px solid var(--line);

  border-radius: 22px;

  padding: 26px;
}

.avatar {
  width: 64px;

  height: 64px;

  border-radius: 20px;

  background: linear-gradient(135deg, var(--blue), var(--cyan));

  display: grid;

  place-items: center;

  color: #ffffff;

  font-size: 24px;

  font-weight: 900;

  margin-bottom: 18px;
}

.person h3 {
  margin: 0 0 4px;
}

.person .role {
  color: var(--blue);

  font-weight: 800;

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

/* ==========================================================
   CUSTOMER RAIL
   ========================================================== */

.customerRail {
  overflow: hidden;

  border-top: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.customerRail .wrap {
  padding: 40px 0;
}

.customerTitle {
  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.16em;

  color: var(--blue);

  text-transform: uppercase;

  margin-bottom: 6px;
}

.customerIntro {
  color: var(--muted);

  margin: 0 0 20px;
}

.customers {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  align-items: center;
}

.customerItem,
.customerPill {
  padding: 14px 20px;

  border: 1px solid rgba(11, 92, 255, 0.14);

  border-radius: 14px;

  background: #ffffff;

  font-weight: 800;

  color: #24324a;

  box-shadow: 0 7px 20px rgba(13, 42, 91, 0.05);
}

/* ==========================================================
   CALL TO ACTION PANEL
   ========================================================== */

.ctaPanel {
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 28px;

  padding: 34px;

  backdrop-filter: blur(10px);
}

.ctaPanelIcon {
  width: 56px;

  height: 56px;

  border-radius: 16px;

  display: grid;

  place-items: center;

  background: var(--blue);

  color: #ffffff;

  font-size: 24px;

  margin-bottom: 20px;
}

.ctaPanel h3 {
  margin: 0 0 10px;

  font-size: 26px;
}

.ctaPanel p {
  color: #bed0ef;

  margin-bottom: 22px;
}

/* ==========================================================
   RFQ FORM
   ========================================================== */

.formWrap {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 36px;

  align-items: start;
}

.rfqForm {
  background: white;

  border-radius: 28px;

  padding: 32px;

  box-shadow: var(--shadow);

  border: 1px solid var(--line);
}

.formGrid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.field {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;

  font-weight: 800;

  color: #263550;
}

.field input,
.field select,
.field textarea {
  width: 100%;

  border: 1px solid #d9e2ef;

  border-radius: 14px;

  padding: 13px 14px;

  font: inherit;

  outline: none;

  background: #fbfdff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);

  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.08);
}

.field textarea {
  min-height: 130px;

  resize: vertical;
}

.help {
  font-size: 12px;

  color: var(--muted);
}

.notice {
  background: #eef6ff;

  border: 1px solid #d8e9ff;

  border-radius: 16px;

  padding: 14px 16px;

  color: #294162;

  font-size: 13px;
}

/* ==========================================================
   CONTACT BOX
   ========================================================== */

.contactbox {
  background: linear-gradient(135deg, #071a3d, #0b5cff);

  color: white;

  border-radius: 28px;

  padding: 32px;
}

.contactbox a {
  color: #ffffff;
}

.contactbox .muted {
  color: #d2e2ff;
}

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */

.whatsapp-float {
  position: fixed;

  width: 60px;

  height: 60px;

  right: 24px;

  bottom: 24px;

  border-radius: 50%;

  background: var(--whatsapp);

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 33px;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  z-index: 9999;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);

  color: #ffffff;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

/* ==========================================================
   FOOTER
   ========================================================== */

footer {
  background: #061329;

  color: #c4d2eb;

  padding: 46px 0 28px;
}

.footerGrid {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 36px;
}

.footerBrand {
  color: #ffffff;

  font-weight: 900;

  font-size: 20px;
}

.footerDescription {
  max-width: 400px;

  color: #8fa5c8;

  font-size: 14px;
}

.footerTitle {
  color: #ffffff;

  font-weight: 800;

  margin-bottom: 10px;
}

.footerLinks {
  display: grid;

  gap: 7px;

  font-size: 14px;
}

.footerLinks a:hover {
  color: #ffffff;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-top: 28px;

  padding-top: 18px;

  font-size: 13px;

  color: #8da2c6;
}

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   CLICKABLE CUSTOMERS
   ========================================================== */
.customerLink {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.customerName {
  flex: 1;
}
.customerExternalIcon {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--blue);
  opacity: 0.7;
}
.customerLink:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 92, 255, 0.35);
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(13, 42, 91, 0.11);
}
.customerLink:hover .customerExternalIcon {
  opacity: 1;
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {
  .nav nav {
    display: none;

    position: absolute;

    left: 20px;

    right: 20px;

    top: 78px;

    background: #ffffff;

    border: 1px solid var(--line);

    border-radius: 18px;

    padding: 18px;

    box-shadow: var(--shadow);

    flex-direction: column;

    align-items: stretch;
  }

  .nav nav.open {
    display: flex;
  }

  .menuBtn {
    display: block;
  }

  .topbar .wrap {
    flex-direction: column;

    align-items: flex-start;

    gap: 2px;
  }

  .stats .wrap,
  .grid,
  .segmentGrid,
  .two,
  .formWrap,
  .footerGrid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero .wrap {
    padding: 72px 0 82px;
  }

  .stat {
    border-bottom: 1px solid var(--line);
  }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 620px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 70px;
  }

  .brand {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;

    letter-spacing: 0.12em;
  }

  .nav nav {
    top: 70px;

    left: 14px;

    right: 14px;
  }

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

  .pagehero .wrap {
    padding: 54px 0 56px;
  }

  .pagehero h1 {
    font-size: 40px;
  }

  .pageheroLead {
    font-size: 16px;
  }

  .stats {
    margin-top: -20px;
  }

  .stats .wrap,
  .grid,
  .segmentGrid,
  .two,
  .formWrap,
  .footerGrid,
  .formGrid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }

  .heroActions {
    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .team {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .teamCard {
    padding: 22px;

    gap: 15px;

    border-radius: 16px;
  }

  .teamIcon {
    width: 48px;

    height: 48px;

    flex-basis: 48px;

    font-size: 19px;
  }

  .teamCard h3 {
    font-size: 1.1rem;
  }

  .teamRole {
    font-size: 0.88rem;
  }

  .teamContact a {
    font-size: 0.86rem;
  }

  .teamActions {
    flex-direction: column;
  }

  .contactAction {
    width: 100%;
  }

  .customers {
    flex-direction: column;

    align-items: stretch;
  }

  .customerLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    cursor: pointer;

    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .customerLink i {
    font-size: 12px;
    color: var(--blue);
  }

  .customerLink:hover {
    transform: translateY(-3px);

    border-color: rgba(11, 92, 255, 0.35);

    color: var(--blue);

    box-shadow: 0 12px 28px rgba(13, 42, 91, 0.11);
  }

  @media (max-width: 620px) {
    .customerLink {
      width: 100%;
      justify-content: space-between;
      text-align: left;
    }
  }

  .customerItem,
  .customerPill {
    width: 100%;

    text-align: center;
  }

  .field.full {
    grid-column: auto;
  }

  .whatsapp-float {
    width: 54px;

    height: 54px;

    right: 16px;

    bottom: 16px;

    font-size: 29px;
  }

  .footerGrid {
    gap: 28px;
  }
}

/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 400px) {
  .teamCard {
    flex-direction: column;
  }

  .teamIcon {
    margin-bottom: 4px;
  }

  .pagehero h1 {
    font-size: 35px;
  }
}

/* ==========================================================
   V7 MATERIAL / TECHNICAL RANGE SECTIONS
   ========================================================== */
.materialBand {
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}
.materialChips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.materialChips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(11, 92, 255, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(13, 42, 91, 0.05);
}
.materialNote {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 14px;
}
.materialCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.materialCards article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-light);
}
.materialCards b {
  display: block;
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 5px;
}
.materialCards span {
  color: var(--muted);
  font-size: 14px;
}
.coatingStrip {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #071a3d;
  color: #dbe8ff;
}
.specGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.specCard {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(13, 42, 91, 0.07);
}
.specCard h3 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 22px;
}
.specCard ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.specCard li {
  margin: 8px 0;
}
.specTag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--blue);
}
.customerLink {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.customerName {
  flex: 1;
}
.customerExternalIcon {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--blue);
  opacity: 0.7;
}
.customerLink:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 92, 255, 0.35);
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(13, 42, 91, 0.11);
}
.customerLink:hover .customerExternalIcon {
  opacity: 1;
}
@media (max-width: 900px) {
  .materialCards,
  .specGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .materialCards,
  .specGrid {
    grid-template-columns: 1fr;
  }
  .materialChips span {
    width: 100%;
    justify-content: center;
  }
  .customerLink {
    width: 100%;
  }
}

/* ==========================================================
   V8 INTERACTIVE INDUSTRIES / APPLICATIONS
   ========================================================== */
.industriesHero .wrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.industriesHero .pageheroLead {
  margin-left: auto;
  margin-right: auto;
}
.industryIntroSection {
  padding-bottom: 58px;
}
.industryIntroGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}
.industryIntroPanel {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-light);
}
.industryIntroPanel strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  margin: 14px 0 8px;
}
.industryIntroPanel p {
  color: var(--muted);
  margin: 0 0 20px;
}
.industryIntroIcon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  font-size: 22px;
}

.industryCardGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.industryCard {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(11, 92, 255, 0.13);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 9px 28px rgba(13, 42, 91, 0.06);
  transition:
    transform 0.23s ease,
    box-shadow 0.23s ease,
    border-color 0.23s ease;
}
.industryCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(13, 42, 91, 0.13);
  border-color: rgba(11, 92, 255, 0.36);
}
.industryCardIcon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e7f1ff, #d8f7ff);
  color: var(--blue);
  font-size: 23px;
}
.industryCardBody b {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 7px;
}
.industryCardBody small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.industryCardArrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f2f6ff;
  color: var(--blue);
}
.featuredIndustry {
  border-color: rgba(255, 191, 71, 0.7);
  background: linear-gradient(135deg, #fff, #fff9ed);
}
.industryBadge {
  position: absolute;
  right: 18px;
  top: -10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #523400;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.starterFeatureSection {
  background: linear-gradient(180deg, #fff, #f7faff);
}
.starterFeature {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}
.starterFeatureCopy {
  max-width: 760px;
}
.applicationFlow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}
.flowNode {
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: #fbfdff;
}
.flowNode i {
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 11px;
}
.flowNode b {
  color: var(--navy);
  line-height: 1.15;
}
.flowNode small {
  color: var(--muted);
  margin-top: 5px;
}
.flowHighlight {
  background: linear-gradient(135deg, #071a3d, #0b5cff);
  border-color: transparent;
}
.flowHighlight i,
.flowHighlight b {
  color: #fff;
}
.flowHighlight small {
  color: #d8e5ff;
}
.flowArrow {
  color: var(--blue);
  font-size: 18px;
}

.industryModal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.industryModal.open {
  display: block;
}
.industryModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 32, 0.72);
  backdrop-filter: blur(7px);
}
.industryModalDialog {
  position: relative;
  width: min(920px, calc(100% - 34px));
  max-height: calc(100vh - 46px);
  overflow: auto;
  margin: 23px auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  padding: 38px;
}
.industryModalClose {
  position: sticky;
  float: right;
  top: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: -8px -8px 6px 10px;
  border: 0;
  border-radius: 50%;
  background: #eef3fb;
  color: var(--navy);
  font-size: 19px;
  cursor: pointer;
}
.industryModalKicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.industryModalTitle {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 10px 0 12px;
  letter-spacing: -0.035em;
}
.industryModalLead {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}
.modalSectionTitle {
  color: var(--navy);
  font-size: 18px;
  margin: 28px 0 12px;
}
.modalPillGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.modalPill {
  padding: 9px 13px;
  border: 1px solid rgba(11, 92, 255, 0.15);
  border-radius: 999px;
  background: #f8fbff;
  color: #24324a;
  font-size: 13px;
  font-weight: 800;
}
.modalToolGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.modalTool {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px;
  background: #fff;
}
.modalTool i {
  color: var(--blue);
  margin-right: 7px;
}
.modalTool b {
  color: var(--navy);
}
.modalTool p {
  color: var(--muted);
  font-size: 13px;
  margin: 7px 0 0;
}
.modalFlow {
  margin: 24px 0;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #071a3d, #0b5cff);
  color: #fff;
}
.modalFlow strong {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}
.modalFlow span {
  color: #dce8ff;
}
.modalRfqBox {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border-radius: 18px;
  background: #eef6ff;
  border: 1px solid #d7e8ff;
}
.modalRfqBox b {
  display: block;
  color: var(--navy);
  font-size: 18px;
}
.modalRfqBox p {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14px;
}
body.modalOpen {
  overflow: hidden;
}

@media (max-width: 900px) {
  .industryIntroGrid {
    grid-template-columns: 1fr;
  }
  .applicationFlow {
    grid-template-columns: 1fr;
  }
  .flowArrow {
    transform: rotate(90deg);
    text-align: center;
  }
  .modalToolGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .industryCardGrid {
    grid-template-columns: 1fr;
  }
  .industryCard {
    padding: 19px;
    gap: 13px;
  }
  .industryCardIcon {
    width: 49px;
    height: 49px;
    font-size: 19px;
  }
  .industryCardBody b {
    font-size: 17px;
  }
  .industryCardArrow {
    width: 31px;
    height: 31px;
  }
  .starterFeature {
    padding: 24px;
  }
  .industryModalDialog {
    padding: 24px;
    width: min(100% - 20px, 920px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }
  .modalToolGrid {
    grid-template-columns: 1fr;
  }
  .modalRfqBox {
    align-items: stretch;
    flex-direction: column;
  }
  .modalRfqBox .btn {
    width: 100%;
  }
}

/* ==========================================================
   V10 RFQ PAGE - PREMIUM FORM STYLING
   Works with the FormSubmit RFQ markup using:
   .rfq-section, .rfq-container, .rfq-header, .rfq-form,
   .rfq-card, .rfq-grid, .upload-box, .rfq-notice,
   .rfq-submit
   ========================================================== */

.rfq-section {
  padding: 80px 20px;
  background:
    radial-gradient(circle at 92% 5%, rgba(95, 212, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #f7faff 0%, #f3f7fc 100%);
}

.rfq-container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.rfq-header {
  max-width: 820px;
  margin-bottom: 36px;
}

.rfq-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.rfq-header h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.rfq-header p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.rfq-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rfq-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-light);
}

.rfq-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.rfq-card-title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.rfq-card-title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 9px 20px rgba(11, 92, 255, 0.18);
}

.rfq-card-title h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.rfq-card-title p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.rfq-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rfq-form .field.full-width,
.rfq-form .field.full {
  width: 100%;
  grid-column: 1 / -1;
}

.rfq-form .field label,
.upload-title {
  color: #263550;
  font-size: 13px;
  font-weight: 800;
}

.rfq-form .field label span,
.upload-title span {
  color: #c83f49;
}

.rfq-form .field input,
.rfq-form .field select,
.rfq-form .field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8e1ec;
  border-radius: 12px;
  background: #fbfdff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.rfq-form .field input,
.rfq-form .field select {
  min-height: 49px;
}

.rfq-form .field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}

.rfq-form .field input::placeholder,
.rfq-form .field textarea::placeholder {
  color: #98a6b8;
}

.rfq-form .field input:hover,
.rfq-form .field select:hover,
.rfq-form .field textarea:hover {
  border-color: #bccade;
}

.rfq-form .field input:focus,
.rfq-form .field select:focus,
.rfq-form .field textarea:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.08);
}

.upload-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
  border: 1.5px dashed #9dbbe5;
  border-radius: 16px;
  background: linear-gradient(180deg, #f9fcff, #f2f7ff);
}

.upload-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #e7f1ff, #d8f7ff);
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.upload-title {
  display: block;
}

.upload-box p {
  margin: 5px 0 13px;
  color: var(--muted);
  font-size: 13px;
}

.upload-box input[type="file"] {
  display: block;
  max-width: 100%;
  color: #32465f;
  font: inherit;
  font-size: 14px;
}

.upload-box input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 16px;
  border: 0;
  border-radius: 9px;
  background: var(--navy);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.upload-box input[type="file"]::file-selector-button:hover {
  background: var(--blue2);
}

.upload-box small {
  display: block;
  margin-top: 10px;
  color: #7c8a9d;
  font-size: 12px;
}

.rfq-notice {
  padding: 18px 20px;
  border: 1px solid #d7e8ff;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  background: #eef6ff;
}

.rfq-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
}

.rfq-notice p {
  margin: 0;
  color: #53677e;
  font-size: 13px;
  line-height: 1.55;
}

.rfq-submit {
  width: 100%;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(11, 92, 255, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.rfq-submit span {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
}

.rfq-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 92, 255, 0.28);
  filter: brightness(1.03);
}

.rfq-submit:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .rfq-section {
    padding: 66px 18px;
  }

  .rfq-card {
    padding: 26px;
  }
}

@media (max-width: 620px) {
  .rfq-section {
    padding: 50px 14px;
  }

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

  .rfq-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .rfq-card-title {
    gap: 12px;
  }

  .rfq-card-title > span {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .rfq-card-title h2 {
    font-size: 19px;
  }

  .rfq-header h1 {
    font-size: 38px;
  }

  .upload-box {
    flex-direction: column;
    padding: 20px;
  }

  .rfq-submit {
    min-height: 56px;
  }
}

