/* RESTYLING 2026 ESA SERVICE */

:root {
  --blue-900: #002a50;
  --blue-800: #003D71;
  --blue-600: #0088CC;
  --blue-100: #e3f2fb;
  --blue-50: #f2f8fd;
  --blue: #0088CC; 

  --ink: #14181f; 

  --text: #101828;
  --muted: #475467;
  --faint: #98a2b3;

  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-soft: #eef0f3;
  --border: #e4e7ec;

  --radius: 14px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none
}

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

ul {
  list-style: none
}

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

.section {
  padding: 88px 0
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

::selection {
  background: var(--blue-800);
  color: #fff;
}

.cta-banner ::selection,
.cta-banner *::selection,
.btn ::selection,
.btn *::selection {
  background: #fff;
  color: var(--blue-800);
} 

.kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 44px
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--blue-800);
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16.5px
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
} 

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--blue-800);
  background: var(--blue-800);
  color: #fff;
  cursor: pointer;
 /*  transition: background .2s ease, border-color .2s ease; */
  white-space: nowrap;
}

.btn:hover {
  background: var(--blue-900);
  border-color: var(--blue-900)
}

.btn.ghost {
  background: transparent;
  color: var(--blue-800);
  border-color: #c9d4e0;
}

.btn.ghost:hover {
  background: var(--blue-50);
  border-color: var(--blue-800)
}
 
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.skip-link:focus {
  left: 12px
} 

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center
}

.brand img {
  height: 54px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-links>li {
  position: relative
}

.nav-links a,
.nav-links .drop-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 550;
  font-family: inherit;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 8px;
  height: 37px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links .drop-toggle:hover {
  color: var(--blue-800);
  background: var(--blue-50)
}

.nav-links a[aria-current="page"] {
  color: var(--blue-800);
  background: var(--blue-100);
  font-weight: 650
}

.drop-toggle i {
  font-size: 11px;
  transition: transform .2s ease
}

.has-dropdown.open>.drop-toggle i {
  transform: rotate(180deg)
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, .10);
  z-index: 50;
}

.has-dropdown.open>.dropdown {
  display: block
}

.dropdown a {
  display: block;
  /* padding: 10px 12px; */
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--muted);
}

.dropdown a:hover {
  background: var(--blue-50);
  color: var(--blue-800)
}

.dropdown a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--blue-800);
  font-weight: 650
}

.dropdown .sep {
  height: 1px;
  background: var(--border);
  margin: 6px 8px
}

.nav-cta .btn {
  padding: 7px 18px;
  font-size: 14px
}

.menu-btn {
  display: none;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width:960px) {
  .menu-btn {
    display: inline-flex
  }

  .nav-cta {
    display: none
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 2px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(16, 24, 40, .12);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a,
  .nav-links .drop-toggle {
    padding: 13px 16px;
    width: 100%;
    justify-content: space-between
  }

  .dropdown {
    position: static;
    min-width: 0;
    border: none;
    box-shadow: none;
    padding: 0 0 4px 14px;
  }

  .brand img {
    height: 48px
  }
}
 
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 56px 0;
  background: linear-gradient(180deg, var(--blue-50), #fff 70%);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: translate3d(0, calc(var(--py, 0) * 1px), 0);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .55;
}

.hero-orb-a {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 136, 204, .35), transparent 68%);
  animation: orb-drift-a 18s ease-in-out infinite alternate;
}

.hero-orb-b {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  bottom: -18%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 61, 113, .22), transparent 70%);
  animation: orb-drift-b 22s ease-in-out infinite alternate;
}

.hero-grid-lines {
  position: absolute;
  inset: -20% -10%;
  background-image:
    linear-gradient(rgba(0, 61, 113, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 61, 113, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%);
  animation: grid-pan 28s linear infinite;
  opacity: .9;
}

@keyframes orb-drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-36px, 28px, 0) scale(1.08); }
}

@keyframes orb-drift-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -24px, 0) scale(1.12); }
}

@keyframes grid-pan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-56px, -56px, 0); }
}

@keyframes ken-burns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-2%, -1.5%, 0); }
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  color: var(--blue-800);
}

.hero .lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 54ch;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-media-parallax {
  will-change: transform;
  transform: translate3d(0, calc(var(--py, 0) * 1px), 0);
}

.hero-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 48px rgba(0, 42, 80, .12),
    0 0 0 1px rgba(255, 255, 255, .4) inset;
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 136, 204, .12), transparent 45%, rgba(0, 42, 80, .18));
  pointer-events: none;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  animation: ken-burns 22s ease-in-out infinite alternate;
}

@media (max-width:920px) {
  .hero {
    min-height: auto;
    padding: 48px 0
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .hero-media img {
    min-height: 240px
  }

  .hero-grid-lines {
    opacity: .45
  }
} 

.page-head {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--blue-50), #fff);
  border-bottom: 1px solid var(--border);
}

.page-head h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--blue-800);
}

.page-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  max-width: 64ch
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--faint);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: var(--muted)
}

.breadcrumb a:hover {
  color: var(--ink);
  text-decoration: underline
}

.breadcrumb i {
  font-size: 10px
}
 
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--d, 0s);
}

.reveal.reveal-up {
  transform: translateY(36px);
}

.reveal.reveal-left {
  transform: translateX(-28px);
}

.reveal.reveal-right {
  transform: translateX(28px);
}

.reveal.reveal-scale {
  transform: translateY(20px) scale(.96);
}

.page-home .reveal.reveal-up {
  transform: translateY(40px);
}

.page-home .reveal.reveal-left {
  transform: translateX(-36px);
}

.page-home .reveal.reveal-right {
  transform: translateX(36px);
}

.page-home .reveal.reveal-scale {
  transform: translateY(28px) scale(.94);
}

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

.page-home .section,
.page-home .numbers {
  scroll-margin-top: 88px;
}

.page-home .svc-card.reveal.visible,
.page-home .icon-feature.reveal.visible,
.page-home .milestone.reveal.visible,
.page-home .stat.reveal.visible {
  transition-duration: .85s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .hero-orb,
  .hero-grid-lines,
  .hero-media img {
    animation: none !important
  }

  .hero-parallax,
  .hero-media-parallax {
    transform: none !important
  }

  .marquee-track {
    animation: none !important
  }

  html {
    scroll-behavior: auto
  }
} 

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width:980px) {
  .cards-grid {
    grid-template-columns: 1fr
  }
}

.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card .cover {
  height: 190px;
  overflow: hidden
}

.svc-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.svc-card .body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.svc-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--blue-800);
  display: flex;
  align-items: center;
  gap: 9px;
}

.svc-card h3 i { 
  font-size: 17px
}

.svc-card p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px
}

.svc-card ul {
  margin-top: 14px
}

.svc-card ul li {
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.svc-card ul li i {
  color: var(--blue-600);
  font-size: 12px
}

.svc-card ul li a:hover {
  color: var(--ink);
  text-decoration: underline
}

.svc-card .link {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
} 

.svc-card .link:hover {
  text-decoration: underline
}

.icon-feature {
  display: flex;
  gap: 16px
}

.icon-feature .ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-800);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.icon-feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text)
}

.icon-feature p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 4px
}

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

@media (max-width:900px) {
  .features-grid {
    grid-template-columns: 1fr
  }
}
 
.numbers {
  background: var(--blue-800);
  color: #fff;
  padding: 72px 0;
}

.numbers .section-head h2 {
  color: #fff
}

.numbers .section-head p {
  color: rgba(255, 255, 255, .75)
}

.numbers .kicker {
  color: #9bd6f5
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat .value {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.stat .value .suffix {
  font-size: .6em
}

.stat .label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.stat .note {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6)
}

@media (max-width:900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px
  }
}

@media (max-width:480px) {
  .stats {
    grid-template-columns: 1fr
  }
} 

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.milestone {
  position: relative;
  padding: 0 0 40px 26px
}

.milestone:last-child {
  padding-bottom: 0
}

.milestone::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue-600);
}

.milestone .year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue-600);
  text-transform: uppercase;
}

.milestone h3 {
  margin: 6px 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text)
}

.milestone p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 620px
}

.marquee {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 45s linear infinite;
}

.marquee.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 55s
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.client-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.client-chip img {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain
}

.client-chip span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted)
}

.sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 550;
  color: var(--muted);
}

.sector i {
  color: var(--blue-600);
  font-size: 13px
}

.cta-banner {
  background: var(--blue-800);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 750;
  letter-spacing: -.02em;
}

.cta-banner p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  max-width: 52ch
}

.cta-banner .btn {
  background: #fff;
  border-color: #fff;
  color: var(--blue-800)
}

.cta-banner .btn:hover {
  background: var(--blue-100);
  border-color: var(--blue-100)
}

.cta-banner .btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5)
}

.cta-banner .btn.ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .media {
  order: -1
}

.split h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 750;
  letter-spacing: -.02em;
  color: var(--blue-800);
}

.split p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15.5px
}

.split .btn {
  margin-top: 22px
}

.split .media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.split ul.checks {
  margin-top: 14px
}

.split ul.checks li {
  padding: 6px 0;
  color: var(--muted);
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.split ul.checks li i {
  color: var(--blue-600);
  font-size: 13px
}

@media (max-width:920px) {
  .split {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .split.reverse .media {
    order: 0
  }

  .split .media img {
    min-height: 220px
  }
}

.feature-row {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none
}

.feature-row .n {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-600);
  min-width: 40px;
  padding-top: 2px;
}

.feature-row h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text)
}

.feature-row p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 4px
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
}

.contact-card .ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-800);
  display: grid;
  place-items: center;
  font-size: 19px;
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-900)
}

.contact-card a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px
}

.contact-card a:hover {
  text-decoration: underline
}

.contact-card p {
  color: var(--faint);
  font-size: 13.5px;
  margin-top: 6px
}

.phone-band {
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  padding: 32px;
  text-align: center;
}

.phone-band .phone {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}

.phone-band .phone:hover {
  text-decoration: underline
}

.phone-band p {
  color: var(--muted);
  margin-top: 6px;
  font-size: 14.5px
}

.contact-form {
  /* max-width: 720px; */
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width:640px) {
  .form-grid {
    grid-template-columns: 1fr
  }

  .contact-form {
    padding: 24px
  }
}

.form-field {
  margin-bottom: 20px;
}

.form-grid .form-field {
  margin-bottom: 0
}

.form-grid + .form-field {
  margin-top: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-field .req {
  color: var(--blue-600);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px var(--blue-100);
}

/* .form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #d92d20;
} */

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--blue-800);
}

.form-check label {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

.form-check label a {
  color: var(--blue-800);
  font-weight: 600;
  text-decoration: underline;
}

.form-check label a:hover {
  color: var(--blue-900);
}

.form-actions {
  margin-top: 8px;
}

.form-note {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
}

.form-note.success {
  color: #027a48;
}

.form-note.error {
  color: #d92d20;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.map-frame {
  width: 100%;
  height: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
} 

footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 36px;
}

.footer-grid h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}

.footer-grid p {
  color: var(--muted);
  font-size: 14.5px
}

.footer-brand img {
  height: 46px;
  width: auto;
  margin-bottom: 14px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-links a {
  color: var(--ink);
  font-size: 14.5px
}

.footer-links a:hover {
  text-decoration: underline
}

.footer-links a i {
  width: 18px;
  color: var(--blue-800);
  margin-right: 6px;
  font-size: 13px
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0 26px;
  text-align: center;
  color: var(--faint);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--ink);
  font-weight: 600
}

.footer-bottom a:hover {
  text-decoration: underline
}

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

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

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--blue-800);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -- Certificazioni -- */
.cert-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width:720px) {
  .cert-list {
    grid-template-columns: 1fr
  }
}

.cert-item {
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.cert-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.cert-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.cert-item p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* -- Partner -- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width:900px) {
  .partner-grid,
  .partner-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:520px) {
  .partner-grid,
  .partner-grid.cols-3 {
    grid-template-columns: 1fr
  }
}

.partner-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.partner-tile:hover span {
  text-decoration: underline;
}

.partner-tile img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.partner-tile span {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-900);
}

.partner-tile small {
  font-size: 12.5px;
  color: var(--faint);
  font-weight: 500;
}

/* -- Privacy / legal -- */
.container.narrow {
  max-width: 760px;
}

.legal {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-lead {
  font-size: 16.5px;
  color: var(--text);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal h2 {
  font-size: 18px;
  font-weight: 750;
  color: var(--blue-800);
  margin: 32px 0 12px;
  letter-spacing: -.01em;
}

.legal h2:first-of-type {
  margin-top: 0
}

.legal p {
  margin-bottom: 12px
}

.legal ul {
  list-style: disc;
  padding-left: 1.25em;
  margin: 8px 0 16px;
}

.legal li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal a {
  color: var(--blue-800);
  font-weight: 600;
  text-decoration: underline;
}

.legal a:hover {
  color: var(--blue-900)
}

.legal-updated {
  margin-top: 28px;
  color: var(--faint);
  font-size: 14px;
}

/* Quote band (mission) */
.quote-band {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0;
}

.quote-band p {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 650;
  line-height: 1.45;
  color: var(--blue-900);
  letter-spacing: -.015em;
}

.quote-band cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}