*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1B2B;
  --navy-soft:   #14283D;
  --cream:       #FAF8F4;
  --white:       #FFFFFF;
  --slate:       #55606B;
  --slate-lt:    #8B94A0;
  --line:        #E3DFD5;
  --line-dark:   rgba(255,255,255,0.09);
  --accent:      #1A3EB5;
  --accent-hov:  #14318F;
  --accent-soft: #EAEFFB;
  --text:        #0B1B2B;

  --font: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;

  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1000;
  transition: top 0.2s;
  text-decoration: none;
  border-radius: 0;
}
.skip-link:focus { top: 1rem; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

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

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text); }

.btn-sm { padding: 0.65rem 1.35rem; font-size: 0.78rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 46px; width: auto; object-fit: contain; }

@media (min-width: 860px) {
  .logo-img { height: 54px; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-panel {
  position: fixed;
  top: 63px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.main-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--navy);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a.active {
  color: var(--accent);
}
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta { align-self: flex-start; }

@media (min-width: 860px) {
  .header-inner { padding: 1rem 1.5rem; }
  .nav-toggle { display: none; }

  .nav-panel {
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    gap: 2.5rem;
  }

  .main-nav {
    flex-direction: row;
    gap: 2.25rem;
  }
  .main-nav a {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    transition: color 0.2s;
  }
  .main-nav a:hover { color: var(--navy); }

  .header-cta { align-self: auto; }
}

/* ── TYPE HELPERS ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.eyebrow-on-dark { color: #8FB0FF; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--navy);
  max-width: 20ch;
}
.section-title.on-dark { color: #F2F5FA; }

section { padding: 4.5rem 0; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 8.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,15,26,0.85) 0%, rgba(6,15,26,0.55) 45%, rgba(6,15,26,0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-copy .eyebrow { color: #8FB0FF; }

.hero-title {
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #F5F7FB;
  max-width: 16ch;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.02rem;
  font-weight: 400;
  color: rgba(232, 238, 248, 0.62);
  max-width: 46ch;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero .btn-ghost {
  border-color: rgba(255,255,255,0.22);
  color: #F0F3F8;
}
.hero .btn-ghost:hover { border-color: rgba(255,255,255,0.55); }

.hero-poles {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.hero-poles li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232, 238, 248, 0.4);
  position: relative;
  padding-left: 1rem;
}
.hero-poles li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.4em;
  width: 5px; height: 5px;
  border-radius: 0;
  background: var(--accent);
}

@media (min-width: 900px) {
  .hero { min-height: 720px; padding: 10rem 0 4.5rem; }
  .hero::before {
    background:
      linear-gradient(100deg, rgba(6,15,26,0.92) 0%, rgba(6,15,26,0.78) 32%, rgba(6,15,26,0.4) 60%, rgba(6,15,26,0.15) 85%),
      linear-gradient(0deg, rgba(6,15,26,0.6) 0%, transparent 30%);
  }
  .hero-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }
  .hero-copy { max-width: 640px; }
}

/* ── MISSION (intégrée à la section Pourquoi) ── */
.mission-banner {
  margin-top: 3.5rem;
  background: var(--navy-soft);
  border-radius: 0;
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.mission-copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}
.mission-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.mission-lead {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
  color: #F2F5FA;
  max-width: 20ch;
}
.mission-lead strong { color: #8FB0FF; }

.mission-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(232, 238, 248, 0.55);
  line-height: 1.8;
  max-width: 56ch;
}

@media (min-width: 860px) {
  .mission-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
    text-align: left;
  }
  .mission-copy {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
  .mission-lead { max-width: 17ch; }
  .mission-text { max-width: 42ch; }
  .mission-logo {
    height: 64px;
    padding-left: 2.5rem;
    border-left: 1px solid var(--line-dark);
    flex-shrink: 0;
  }
}

@media (min-width: 1100px) {
  .mission-banner { gap: 3rem; }
  .mission-copy { gap: 3rem; }
}

/* ── SERVICES ── */
#services { background: var(--cream); border-top: 1px solid var(--line); }

.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  display: block;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  background: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(11,27,43,0.35);
  z-index: 1;
}

.service-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.service-card:hover .service-photo img { transform: scale(1.04); }

.service-body {
  padding: 1.75rem 2rem 2.25rem;
}

.service-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--slate-lt);
  margin-bottom: 0.6rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.65;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── TRUST BAND ── */
.trust-band {
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
  padding: 3.5rem 0;
}

.trust-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-item svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: #8FB0FF;
  margin-top: 0.15rem;
}
.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #F2F5FA;
  margin-bottom: 0.35rem;
}
.trust-item p {
  font-size: 0.83rem;
  font-weight: 400;
  color: rgba(232, 238, 248, 0.5);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── POURQUOI ── */
#pourquoi {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.pourquoi-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 2.25rem 2rem 2rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(11,27,43,0.28);
  border-color: transparent;
}
.why-item:hover::before { transform: scaleX(1); }

.why-num {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--accent-soft);
}

.why-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.why-item p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* ── CONTACT ── */
#contact { background: var(--navy); border-top: 1px solid var(--line-dark); }

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-intro p {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(232, 238, 248, 0.55);
  line-height: 1.75;
  max-width: 52ch;
}

.contact-cta { margin-top: 2rem; }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── QUOTE FORM ── */
.quote-form-card {
  background: var(--white);
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.35);
  scroll-margin-top: 6rem;
}

.quote-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.quote-form-sub {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.55;
}

.quote-form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.form-row textarea { resize: vertical; min-height: 5.5rem; }

.quote-form-submit {
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 860px) {
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 5rem; align-items: start; }
  .contact-intro { grid-column: 1 / -1; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
  position: relative;
}

.footer-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand { max-width: 32ch; }
.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(232, 238, 248, 0.45);
  line-height: 1.65;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(232, 238, 248, 0.45);
}
.footer-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: footer-dot-pulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes footer-dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.footer-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 238, 248, 0.4);
  margin-bottom: 1.1rem;
}
.footer-nav ul,
.footer-contact ul,
.footer-poles ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav a,
.footer-contact a,
.footer-contact li,
.footer-poles a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(232, 238, 248, 0.65);
  text-decoration: none;
}
.footer-nav a:hover,
.footer-contact a:hover,
.footer-poles a:hover { color: #8FB0FF; }

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(232, 238, 248, 0.35);
}
.footer-bottom a {
  color: rgba(232, 238, 248, 0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: rgba(232, 238, 248, 0.6); }

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
  }
}

/* ── POLE DETAIL PAGE ── */
.pole-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-top: 6.5rem;
  background: var(--navy);
}
.pole-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.pole-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,15,26,0.75) 0%, rgba(6,15,26,0.55) 40%, rgba(6,15,26,0.92) 100%);
}
.pole-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  width: 100%;
}
.pole-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(232, 238, 248, 0.7);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.pole-back:hover { color: #fff; }
.pole-hero .eyebrow { color: #8FB0FF; }
.pole-hero .section-title { margin-top: 0.5rem; }
.pole-lead {
  margin-top: 1.1rem;
  max-width: 60ch;
  font-size: 1rem;
  color: rgba(232, 238, 248, 0.65);
  line-height: 1.75;
}

.pole-content {
  border-top: 1px solid var(--line);
}

.pole-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}
.pole-list li {
  background: var(--white);
  padding: 2rem 1.75rem 2.25rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.pole-list li:hover {
  background: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(11,27,43,0.35);
  z-index: 1;
}

.pole-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.pole-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0;
  background: var(--accent-soft);
  color: var(--accent);
}
.pole-icon svg { width: 1.3rem; height: 1.3rem; }

.pole-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--slate-lt);
}

.pole-list h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.pole-list p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 640px) {
  .pole-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .pole-list { grid-template-columns: repeat(3, 1fr); }
}

.pole-cta {
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
}
.pole-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.pole-cta-inner .section-title { margin-top: 0.5rem; }
@media (min-width: 768px) {
  .pole-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

/* ── CONTACT PAGE ── */
.contact-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 9.5rem 0 5rem;
}

.contact-radar {
  position: absolute;
  top: -130px;
  right: -130px;
  width: 460px;
  height: 460px;
  opacity: 0.4;
  pointer-events: none;
}
.contact-radar svg { width: 100%; height: 100%; }
.contact-radar .sweep {
  transform-origin: 100px 100px;
  animation: radar-spin 12s linear infinite;
}
@keyframes radar-spin { to { transform: rotate(360deg); } }

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-hero-inner .pole-lead { margin-top: 1.1rem; max-width: 58ch; }
.contact-hero .eyebrow { color: #8FB0FF; }

.contact-coords {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(232, 238, 248, 0.4);
}
.contact-coords span { white-space: nowrap; }
.contact-coords .accent { color: #8FB0FF; margin-right: 0.35em; }

.contact-page { background: var(--cream); border-top: 1px solid var(--line); scroll-margin-top: 5.5rem; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-page-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; }
}

.spec-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 1.5rem;
}
.contact-cards {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.35);
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  transition: background 0.2s;
}
.contact-card:hover { background: var(--accent-soft); }
.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.45rem;
}
.contact-card-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-card-value a { color: inherit; text-decoration: none; }
.contact-card-value a:hover { color: var(--accent); }

.spec-list { display: flex; flex-direction: column; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.spec-row:first-child { padding-top: 0; }
.spec-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-lt);
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.spec-value {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.spec-value a { color: inherit; text-decoration: none; }
.spec-value a:hover { color: var(--accent); }

.pole-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pole-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--slate);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pole-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.bracket-frame {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.bracket-frame .corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
}
.bracket-frame .corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.bracket-frame .corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.bracket-frame .corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.bracket-frame .corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.form-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.6rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

@media (max-width: 520px) {
  .spec-row { flex-direction: column; gap: 0.4rem; }
  .spec-value { text-align: left; }
}

/* ── SCROLL REVEAL ── */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal-group.is-visible > * { opacity: 1; transform: translateY(0); }
.js .reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.js .reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.js .reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.js .reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.js .reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.js .reveal-group.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.js .reveal-group.is-visible > *:nth-child(8) { transition-delay: 0.56s; }
.js .reveal-group.is-visible > *:nth-child(9) { transition-delay: 0.64s; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .js .reveal,
  .js .reveal-group > * {
    opacity: 1;
    transform: none;
  }
}
