:root {
  --brand: #008fca;
  --brand-bright: #0aa4e2;
  --brand-blue: #0067d9;
  --navy: #061c31;
  --navy-2: #0a3152;
  --ink: #071d2f;
  --muted: #5b6d7c;
  --surface: #f5f8fb;
  --surface-2: #edf4f8;
  --line: #dce5eb;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(6, 28, 49, .08);
  --shadow-lg: 0 26px 70px rgba(6, 28, 49, .13);
  --radius: 18px;
  --container: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: .8rem 1rem;
  color: #fff;
  background: var(--navy);
  border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.section-pad { padding: 86px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(6,28,49,.08);
  box-shadow: 0 0 0 rgba(6,28,49,0);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.985);
  box-shadow: 0 10px 34px rgba(6,28,49,.07);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: block;
  width: 255px;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand img { width: 100%; }
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.main-nav > a,
.language-switch a,
.language-switch span {
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}
.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 31px 0 27px;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-blue);
  transition: right .2s ease;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after,
.main-nav .nav-home::after { right: 0; }
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--brand-blue); }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.language-switch i { color: #a5b1bb; font-style: normal; }
.language-switch .active { color: var(--brand-blue); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  color: #fff !important;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(6,28,49,.16);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--navy-2);
  box-shadow: 0 14px 28px rgba(6,28,49,.2);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 42%, rgba(246,250,253,.78) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,103,217,.15), transparent);
}
.hero-rings {
  position: absolute;
  top: -110px;
  right: -130px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  opacity: .42;
  background: repeating-radial-gradient(circle, rgba(0,103,217,.12) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr);
  align-items: center;
  gap: 24px;
  padding-top: 46px;
  padding-bottom: 48px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 660px;
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 5.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.hero-lead {
  max-width: 590px;
  margin: 0;
  color: #31485b;
  font-size: clamp(1.05rem, 1.4vw, 1.23rem);
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 38px;
  max-width: 680px;
}
.hero-feature {
  min-width: 0;
}
.hero-feature svg {
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  fill: none;
  stroke: var(--brand-blue);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-feature span {
  display: block;
  color: #213b50;
  font-size: .84rem;
  line-height: 1.4;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(6,28,49,.15);
}
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--navy-2);
  box-shadow: 0 16px 32px rgba(6,28,49,.2);
}
.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: #aebcc7;
}
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-visual img {
  width: min(790px, 115%);
  max-width: none;
  margin-left: -4%;
  filter: drop-shadow(0 28px 36px rgba(0,103,217,.11));
}

.services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f2f6f9 100%);
}
.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-heading.centered .eyebrow { margin-bottom: 9px; }
.section-heading h2,
.company-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section-heading > p:last-child {
  max-width: 750px;
  margin: 15px auto 0;
  color: var(--muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 245px;
  padding: 28px 28px 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(6,28,49,.035);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,103,217,.28);
  box-shadow: var(--shadow-sm);
}
.service-icon {
  width: 49px;
  height: 49px;
  margin-bottom: 18px;
  color: var(--brand-blue);
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}
.service-card p {
  margin: 0;
  color: #40576a;
  font-size: .92rem;
}
.service-link {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  font-size: 1.7rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 50%;
  transition: transform .18s ease, background .18s ease;
}
.service-link:hover,
.service-link:focus-visible {
  transform: translateX(3px);
  background: #e7f2ff;
}

.coverage-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 50%, rgba(0,143,202,.25), transparent 28%),
    linear-gradient(90deg, #05264a 0%, #06325f 48%, #052548 100%);
}
.coverage-inner {
  position: relative;
  z-index: 1;
  min-height: 100px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 300px;
  align-items: center;
  gap: 24px;
}
.coverage-pin {
  width: 47px;
  height: 47px;
  fill: none;
  stroke: #18a7e3;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coverage-inner p {
  margin: 0;
  max-width: 660px;
  font-size: 1.05rem;
}
.coverage-wave {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  opacity: .55;
}
.coverage-wave i {
  display: block;
  width: 2px;
  border-radius: 999px;
  background: #1ab0eb;
}
.coverage-wave i:nth-child(1) { height: 8px; }
.coverage-wave i:nth-child(2) { height: 18px; }
.coverage-wave i:nth-child(3) { height: 31px; }
.coverage-wave i:nth-child(4) { height: 16px; }
.coverage-wave i:nth-child(5) { height: 44px; }
.coverage-wave i:nth-child(6) { height: 24px; }
.coverage-wave i:nth-child(7) { height: 57px; }
.coverage-wave i:nth-child(8) { height: 31px; }
.coverage-wave i:nth-child(9) { height: 48px; }
.coverage-wave i:nth-child(10) { height: 20px; }
.coverage-wave i:nth-child(11) { height: 39px; }
.coverage-wave i:nth-child(12) { height: 14px; }
.coverage-wave i:nth-child(13) { height: 30px; }
.coverage-wave i:nth-child(14) { height: 10px; }
.coverage-wave i:nth-child(15) { height: 22px; }
.coverage-wave i:nth-child(16) { height: 6px; }
.coverage-dots {
  position: absolute;
  left: -10px;
  top: 0;
  width: 320px;
  height: 100%;
  opacity: .2;
  background-image: radial-gradient(circle, #32b9ef 1.1px, transparent 1.5px);
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse at 45% 50%, #000 0 48%, transparent 76%);
}

.company-section {
  background: #fff;
}
.company-grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(430px,1.05fr);
  align-items: center;
  gap: 70px;
}
.company-copy .eyebrow { margin-bottom: 10px; }
.company-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 15px 0 0;
  color: #40576a;
}
.commitments-card {
  padding: 38px 44px;
  color: #fff;
  border-radius: 14px;
  background:
    radial-gradient(circle at 15% 10%, rgba(0,143,202,.24), transparent 30%),
    linear-gradient(135deg, #082d55 0%, #061c3a 100%);
  box-shadow: var(--shadow-lg);
}
.commitments-head {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 22px;
}
.commitments-head h3 { margin: 0; font-size: 1.25rem; }
.shield {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,157,218,.2);
  border: 1px solid rgba(75,197,242,.4);
}
.shield svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #42c6f4;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.commitments-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.commitments-card li {
  position: relative;
  padding-left: 28px;
  color: #e5f3fb;
}
.commitments-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-blue);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}

.contact-section {
  background: linear-gradient(180deg, #f6f9fb 0%, #eef4f7 100%);
  border-top: 1px solid #edf1f4;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(250px, .56fr) minmax(0, 1.44fr);
  gap: 56px;
  align-items: center;
}
.contact-copy .eyebrow { margin-bottom: 10px; }
.contact-copy > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #43596b;
}
.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.contact-line svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--brand-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-line strong { font-size: .98rem; }
.contact-line:hover strong,
.contact-line:focus-visible strong { color: var(--brand-blue); }
.contact-form-shell {
  position: relative;
  padding: 27px;
  border: 1px solid #d9e3e9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6,28,49,.07);
}
.cat-peek {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 48px;
  width: 70px;
  transform-origin: 50% 100%;
  transition: transform .24s ease;
  filter: drop-shadow(0 5px 3px rgba(6,28,49,.12));
}
.contact-form-shell:hover .cat-peek { transform: rotate(-2deg) translateY(-2px); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 18px;
}
.form-field { min-width: 0; }
.form-field label {
  display: block;
  margin-bottom: 5px;
  color: #20384b;
  font-size: .78rem;
  font-weight: 750;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdbe3;
  border-radius: 5px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field textarea { min-height: 93px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #8798a5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0,103,217,.12);
  background: #fbfdff;
}
.form-field-message { grid-column: 1; }
.form-field-deadline { grid-column: 2; align-self: start; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  color: #5c6d7a;
  font-size: .75rem;
}
.privacy-check input { margin-top: 3px; accent-color: var(--brand-blue); }
.privacy-check a { color: var(--brand-blue); font-weight: 700; }
.form-footer {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 12px;
}
.form-submit {
  min-width: 190px;
  color: #fff;
  background: var(--navy);
  border: 0;
}
.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-2px);
  background: var(--navy-2);
  box-shadow: 0 12px 26px rgba(6,28,49,.18);
}
.form-submit:disabled { cursor: wait; opacity: .7; transform: none; }
.form-status {
  flex: 1;
  min-height: 22px;
  font-size: .82rem;
  font-weight: 700;
}
.form-status.success { color: #0a7b48; }
.form-status.error { color: #b13535; }

.site-footer {
  color: #dbeaf3;
  background:
    radial-gradient(circle at 16% 0%, rgba(0,143,202,.18), transparent 24%),
    linear-gradient(90deg, #06254a 0%, #061c37 100%);
}
.footer-main {
  min-height: 126px;
  display: grid;
  grid-template-columns: 260px minmax(0,1fr) auto;
  align-items: center;
  gap: 48px;
}
.footer-brand img { width: 210px; }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-nav a,
.footer-contact a {
  color: #d7e6ef;
  text-decoration: none;
  font-size: .86rem;
}
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible { color: #42c6f4; }
.footer-contact { display: grid; gap: 5px; text-align: right; }
.footer-bottom {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.footer-bottom p { margin: 0; color: #9fb4c3; font-size: .75rem; }

.reveal { opacity: 1; transform: none; }
.animations-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.animations-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

.legal-head {
  padding: 55px 0 62px;
  background: linear-gradient(180deg,#fff,#f4f8fb);
  border-bottom: 1px solid var(--line);
}
.legal-head img { width: 260px; margin-bottom: 42px; }
.legal-head h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.6rem,6vw,5rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.legal { padding: 70px 0; }
.legal article { max-width: 860px; }
.legal h2 { margin-top: 38px; font-size: 1.35rem; }
.legal p,
.legal li { color: var(--muted); }
.legal a { color: var(--brand-blue); }
.back {
  display: inline-flex;
  margin-top: 30px;
  color: var(--brand-blue);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .brand { width: 225px; }
  .main-nav { gap: 18px; }
  .main-nav > a, .language-switch a, .language-switch span { font-size: .86rem; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(400px,.92fr); }
  .hero-features { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 520px; }
  .hero-visual img { width: 118%; margin-left: -9%; }
  .contact-layout { grid-template-columns: 290px minmax(0,1fr); gap: 40px; }
}

@media (max-width: 940px) {
  html { scroll-padding-top: 76px; }
  .section-pad { padding: 72px 0; }
  .header-inner { min-height: 74px; }
  .brand { width: 220px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.nav-cta) { padding: 11px 12px; border-radius: 8px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav > a:not(.nav-cta):hover { background: var(--surface); }
  .language-switch { padding: 12px; }
  .nav-cta { margin-top: 6px; justify-content: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; padding-top: 64px; padding-bottom: 36px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { margin-top: -30px; }
  .hero-visual img { width: 100%; max-width: 760px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .coverage-inner { grid-template-columns: auto 1fr; }
  .coverage-wave { display: none; }
  .company-grid { grid-template-columns: 1fr; gap: 42px; }
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .contact-copy { max-width: 650px; }
  .footer-main { grid-template-columns: 1fr; gap: 22px; padding: 34px 0; text-align: center; }
  .footer-brand img { margin: 0 auto; }
  .footer-contact { text-align: center; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 60px 0; }
  .brand { width: 190px; }
  .hero-grid { padding-top: 52px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.3rem); }
  .hero-lead { font-size: 1rem; }
  .hero-features { gap: 20px 12px; margin-top: 30px; }
  .hero-feature span { font-size: .78rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .button { min-width: 0; padding-inline: 14px; gap: 10px; font-size: .9rem; }
  .hero-visual { margin: 0 -26px -18px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .coverage-inner { min-height: 126px; grid-template-columns: auto 1fr; gap: 14px; }
  .coverage-inner p { font-size: .93rem; }
  .coverage-pin { width: 39px; height: 39px; }
  .commitments-card { padding: 30px 24px; }
  .contact-form-shell { padding: 22px 18px; }
  .cat-peek { right: 25px; top: -40px; width: 62px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-message,
  .form-field-deadline { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-submit { width: 100%; }
  .footer-nav { gap: 12px 20px; }
  .footer-bottom { flex-direction: column; justify-content: center; padding: 16px 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .animations-ready .reveal { opacity: 1; transform: none; }
}


/* NoiseLab v3 — páginas de conteúdo, SEO e experiência */
.inner-page .site-header { position: sticky; }
.breadcrumbs { border-bottom: 1px solid var(--line); background: #f9fbfd; }
.breadcrumbs .container { min-height: 48px; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; color: #6f808e; font-size: .79rem; }
.breadcrumbs a { color: var(--brand-blue); font-weight: 700; text-decoration: none; }
.breadcrumbs span[aria-current="page"] { color: #536575; }
.page-hero { position: relative; overflow: hidden; padding: 86px 0 78px; background: radial-gradient(circle at 88% 20%, rgba(0,143,202,.12), transparent 25%), linear-gradient(145deg,#fff 0%,#f3f8fb 100%); border-bottom: 1px solid var(--line); }
.page-hero::after { content:""; position:absolute; right:-100px; bottom:-210px; width:520px; height:520px; border-radius:50%; opacity:.4; background:repeating-radial-gradient(circle,rgba(0,103,217,.12) 0 1px,transparent 1px 22px); }
.page-hero-grid { position: relative; z-index: 1; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr); gap:72px; align-items:center; }
.page-hero h1, .article-hero h1 { max-width: 920px; margin:0 0 22px; font-size:clamp(3rem,5.4vw,5.5rem); line-height:1.02; letter-spacing:-.055em; }
.page-hero-index h1 { max-width: 980px; }
.page-lead { max-width: 820px; margin:0; color:#3d5264; font-size:clamp(1.07rem,1.5vw,1.3rem); line-height:1.65; }
.page-summary { position:relative; padding:34px; color:#fff; background:linear-gradient(145deg,var(--navy),#0a3f67); border-radius:var(--radius); box-shadow:var(--shadow-lg); }
.page-summary ul { margin:22px 0 0; padding:0; list-style:none; }
.page-summary li { position:relative; padding:11px 0 11px 24px; border-top:1px solid rgba(255,255,255,.12); font-weight:650; }
.page-summary li::before { content:""; position:absolute; left:0; top:18px; width:8px; height:8px; border-radius:50%; background:#20bdf2; }
.page-icon svg { width:64px; height:64px; fill:none; stroke:#49cbf5; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.article-section { padding:82px 0 36px; }
.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:70px; align-items:start; }
.article-main { min-width:0; }
.article-intro { margin-bottom:48px; padding:30px 34px; background:#f3f8fb; border-left:4px solid var(--brand-blue); border-radius:0 14px 14px 0; }
.article-intro p:last-child { margin:0; color:#344b5e; font-size:1.08rem; }
.content-block { display:grid; grid-template-columns:54px minmax(0,1fr); gap:24px; padding:34px 0; border-top:1px solid var(--line); }
.content-block h2, .knowledge-block h2 { margin:0 0 18px; font-size:clamp(1.55rem,2.5vw,2.2rem); letter-spacing:-.03em; }
.section-number { margin:5px 0 0; color:#9db2c0; font-weight:800; font-size:.82rem; letter-spacing:.12em; }
.check-list, .plain-list { margin:0; padding:0; list-style:none; }
.check-list li, .plain-list li { position:relative; margin:0 0 12px; padding-left:27px; color:#4b5f6f; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--brand-blue); font-weight:900; }
.article-aside { display:grid; gap:20px; position:sticky; top:116px; }
.aside-card { padding:26px; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow-sm); }
.aside-card .eyebrow { margin-bottom:14px; }
.aside-card p:last-child { margin-bottom:0; color:#526575; }
.technology-note { background:linear-gradient(145deg,#082a48,#0b4168); border:0; color:#fff; }
.technology-note p:last-child { color:#dceaf3; }
.process-list { margin:0; padding:0; list-style:none; }
.process-list li { display:grid; grid-template-columns:36px 1fr; gap:12px; align-items:start; padding:12px 0; border-top:1px solid var(--line); }
.process-list li:first-child { border-top:0; }
.process-list span { color:var(--brand-blue); font-weight:850; font-size:.78rem; letter-spacing:.1em; }
.process-list strong { font-size:.9rem; line-height:1.45; }
.faq-section { background:#f3f7fa; border-top:1px solid var(--line); }
.faq-layout { display:grid; grid-template-columns:320px minmax(0,1fr); gap:70px; align-items:start; }
.faq-layout h2 { margin:0; font-size:clamp(2rem,3.4vw,3.25rem); line-height:1.08; }
.faq-list { display:grid; gap:12px; }
.faq-list details { padding:0 22px; background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:0 6px 18px rgba(6,28,49,.04); }
.faq-list summary { padding:20px 34px 20px 0; cursor:pointer; font-weight:780; list-style:none; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:0; top:17px; color:var(--brand-blue); font-size:1.5rem; }
.faq-list details[open] summary::after { content:"−"; }
.faq-list details p { margin:0 0 22px; color:#536676; }
.cta-band { color:#fff; background:radial-gradient(circle at 85% 20%,rgba(25,181,235,.28),transparent 24%),linear-gradient(90deg,#06274b,#061a31); }
.cta-band .container { min-height:220px; display:flex; align-items:center; justify-content:space-between; gap:40px; }
.cta-band h2 { max-width:760px; margin:0; font-size:clamp(2rem,3.6vw,3.5rem); line-height:1.05; letter-spacing:-.04em; }
.cta-band .eyebrow { color:#43caf5; }
.button-light { color:var(--navy); background:#fff; border-color:#fff; }
.button-light:hover { transform:translateY(-2px); box-shadow:0 14px 30px rgba(0,0,0,.18); }
.related-section { background:#fff; }
.compact-grid .service-card { min-height:300px; }
.service-card-link h3 a { text-decoration:none; }
.service-card-link h3 a::after { content:""; position:absolute; inset:0; }
.service-card-link { position:relative; }
.service-card-link .service-link { position:relative; z-index:2; }
.assessment-gateway { grid-column:1/-1; display:grid; grid-template-columns:72px minmax(0,1fr) auto; gap:26px; align-items:center; margin-bottom:10px; padding:28px 30px; background:linear-gradient(100deg,#e9f5fb,#f8fbfd); border:1px solid #cfe5f0; border-radius:var(--radius); }
.gateway-icon svg { width:58px; height:58px; fill:none; stroke:var(--brand-blue); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.assessment-gateway h3 { margin:0 0 5px; font-size:1.35rem; }
.assessment-gateway p { margin:0; color:#526676; }
.assessment-gateway .eyebrow { margin-bottom:6px; }
.service-index-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.method-strip { background:#eef5f9; }
.method-strip .container { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:50px; align-items:center; }
.method-strip h2 { margin:0 0 12px; font-size:clamp(2rem,3.2vw,3.2rem); }
.method-strip p:last-child { max-width:850px; color:#526575; }
.home-experience { background:linear-gradient(145deg,#fff,#f2f7fa); border-top:1px solid var(--line); }
.home-split { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.8fr); gap:70px; align-items:center; }
.home-split h2 { margin:0 0 18px; font-size:clamp(2.2rem,4vw,4rem); line-height:1.05; letter-spacing:-.045em; }
.home-split p:not(.eyebrow) { max-width:700px; color:#526575; }
.experience-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.experience-stats div { min-height:160px; display:flex; flex-direction:column; justify-content:flex-end; padding:22px; color:#fff; background:linear-gradient(145deg,#082a48,#0a416a); border-radius:14px; }
.experience-stats strong { display:block; color:#42caf6; font-size:2.15rem; line-height:1; }
.experience-stats span { margin-top:10px; font-size:.78rem; line-height:1.4; }
.home-knowledge { background:#fff; border-top:1px solid var(--line); }
.knowledge-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.home-knowledge-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.knowledge-card { position:relative; min-height:330px; padding:30px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); }
.knowledge-card h2 { margin:0 0 14px; font-size:1.5rem; line-height:1.18; }
.knowledge-card h2 a { text-decoration:none; }
.knowledge-card h2 a::after { content:""; position:absolute; inset:0; }
.knowledge-card p:not(.eyebrow) { color:#5c6e7d; }
.knowledge-icon svg { width:42px; height:42px; margin-bottom:26px; fill:none; stroke:var(--brand-blue); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.text-link { position:relative; z-index:2; display:inline-flex; margin-top:14px; color:var(--brand-blue); font-weight:800; text-decoration:none; }
.center-actions { display:flex; justify-content:center; margin-top:34px; }
.article-hero { padding:86px 0 70px; background:linear-gradient(145deg,#fff,#f1f7fa); border-bottom:1px solid var(--line); }
.narrow { max-width:1000px; }
.article-meta { display:flex; flex-wrap:wrap; gap:18px; margin-top:26px; color:#6c7e8b; font-size:.8rem; font-weight:650; }
.knowledge-layout { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:72px; padding-top:74px; padding-bottom:80px; align-items:start; }
.article-opening { margin:0 0 48px; padding:28px 30px; color:#334b5d; background:#eff6fa; border-left:4px solid var(--brand-blue); font-size:1.1rem; }
.knowledge-block { padding:34px 0; border-top:1px solid var(--line); }
.knowledge-aside { display:grid; gap:20px; position:sticky; top:116px; }
.author-card strong { color:var(--ink); }
.aside-service-link { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:15px 0 0; color:var(--ink); font-weight:800; text-decoration:none; border-top:1px solid var(--line); }
.aside-service-link span { color:var(--brand-blue); font-size:1.4rem; }
.editorial-note { margin-top:36px; padding:22px 25px; color:#536676; background:#f7f9fb; border:1px solid var(--line); border-radius:10px; font-size:.87rem; }
.experience-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; margin-top:32px; }
.experience-card { min-height:230px; padding:30px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); }
.experience-card h3 { margin:0 0 14px; font-size:1.45rem; }
.experience-card p { margin:0; color:#526575; }
.experience-detail { background:#f2f7fa; border-top:1px solid var(--line); }
.two-column-text { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:70px; }
.two-column-text h2 { margin:0 0 24px; font-size:clamp(2rem,3vw,3rem); }
.experience-disclaimer { margin-top:50px; padding-top:22px; color:#71818d; border-top:1px solid #d7e2e8; font-size:.78rem; }
@media (max-width:1120px) {
  .main-nav { gap:14px; }
  .main-nav > a, .language-switch a, .language-switch span { font-size:.8rem; }
  .page-hero-grid { gap:42px; }
  .article-layout, .knowledge-layout { grid-template-columns:minmax(0,1fr) 310px; gap:42px; }
  .home-knowledge-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .home-knowledge-grid .knowledge-card:last-child { grid-column:1/-1; }
}
@media (max-width:940px) {
  .page-hero { padding:68px 0 58px; }
  .page-hero-grid, .article-layout, .faq-layout, .knowledge-layout, .home-split { grid-template-columns:1fr; }
  .page-summary { max-width:700px; }
  .article-aside, .knowledge-aside { position:static; grid-template-columns:repeat(2,minmax(0,1fr)); }
  .article-aside .technology-note { grid-column:1/-1; }
  .service-index-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .experience-stats { max-width:700px; }
  .knowledge-grid { grid-template-columns:1fr; }
  .home-knowledge-grid .knowledge-card:last-child { grid-column:auto; }
  .main-nav { gap:0; }
}
@media (max-width:650px) {
  .breadcrumbs .container { padding:8px 0; }
  .page-hero h1, .article-hero h1 { font-size:clamp(2.55rem,13vw,4.3rem); }
  .page-summary { padding:26px 22px; }
  .article-layout, .knowledge-layout { gap:34px; }
  .content-block { grid-template-columns:1fr; gap:8px; }
  .section-number { margin:0; }
  .article-aside, .knowledge-aside { grid-template-columns:1fr; }
  .faq-layout { gap:30px; }
  .cta-band .container { min-height:280px; flex-direction:column; align-items:flex-start; justify-content:center; }
  .assessment-gateway { grid-template-columns:1fr; }
  .service-index-grid { grid-template-columns:1fr; }
  .method-strip .container { grid-template-columns:1fr; }
  .experience-stats { grid-template-columns:1fr; }
  .experience-stats div { min-height:120px; }
  .knowledge-grid, .home-knowledge-grid, .experience-grid, .two-column-text { grid-template-columns:1fr; }
  .knowledge-card { min-height:0; }
  .article-hero { padding:62px 0 50px; }
}
