:root {
  --navy-950: #031a41;
  --navy-900: #06275e;
  --navy-800: #0b397a;
  --navy-700: #164b94;
  --sky-100: #eaf3ff;
  --sky-50: #f5f9ff;
  --ink: #122033;
  --muted: #5c6878;
  --line: #dce4ed;
  --white: #ffffff;
  --orange: #ff7a00;
  --orange-dark: #d95f00;
  --orange-soft: #fff1e5;
  --green: #1d8d5c;
  --shadow-sm: 0 8px 25px rgba(15, 35, 66, 0.08);
  --shadow-md: 0 18px 45px rgba(3, 26, 65, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }

button { cursor: pointer; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

ul, ol { margin: 0; padding: 0; }

h1, h2, h3, p { margin: 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: -60px;
  left: 20px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-900);
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.announcement {
  color: #dbeaff;
  background: var(--navy-950);
  font-size: 0.8rem;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  gap: 8px;
  text-align: center;
}

.announcement svg { width: 15px; height: 15px; flex: none; color: #ffaf5f; }

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 237, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; flex: none; }

.brand img { width: 176px; height: auto; }

.nav { display: flex; align-items: center; gap: 21px; }

.nav a {
  position: relative;
  color: #334254;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 0.2s ease;
}

.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.nav .button { padding: 11px 16px; font-size: 0.82rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--white);
}

.menu-toggle svg { width: 22px; height: 22px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-2px); }

.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.4);
  outline-offset: 3px;
}

.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 10px 20px rgba(217, 95, 0, 0.2); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 0 13px 25px rgba(217, 95, 0, 0.28); }
.button-dark { color: var(--white); background: var(--navy-900); box-shadow: 0 10px 20px rgba(3, 26, 65, 0.18); }
.button-dark:hover { background: var(--navy-800); }
.button-light { color: var(--navy-900); border-color: #c7d7eb; background: var(--white); }
.button-light:hover { border-color: var(--navy-800); background: var(--sky-50); }
.button-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.44); background: transparent; }
.button-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.button svg { width: 18px; height: 18px; flex: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy-800);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.eyebrow.light { color: #d7e7ff; }
.eyebrow.light::before { background: #ff9a3b; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 4%, rgba(37, 105, 192, 0.46), transparent 33%),
    linear-gradient(117deg, var(--navy-950) 0%, var(--navy-900) 58%, #092c61 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -115px;
  bottom: -185px;
  width: 475px;
  height: 475px;
  border: 1px solid rgba(255, 160, 85, 0.35);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(390px, 0.83fr);
  align-items: center;
  min-height: 608px;
  gap: 64px;
  padding-block: 82px;
}

.hero-copy { max-width: 650px; }

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 770;
  letter-spacing: -0.045em;
  line-height: 1.055;
}

.hero h1 em { color: #ff9a3b; font-style: normal; }

.hero-lead {
  max-width: 590px;
  margin-top: 24px;
  color: #d6e3f4;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 33px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: #bcd1ec;
  font-size: 0.82rem;
}

.hero-note svg { width: 17px; height: 17px; color: #ff9a3b; flex: none; }

.hero-visual { position: relative; min-height: 432px; }

.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: #0b2347;
  box-shadow: 0 34px 70px rgba(0, 10, 33, 0.3);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, rgba(3, 26, 65, 0.32), transparent 54%);
}

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; }

.hero-badge {
  position: absolute;
  z-index: 1;
  bottom: 29px;
  left: 0;
  width: min(275px, 72%);
  padding: 18px 18px 18px 19px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  border-radius: 16px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.hero-badge-row { display: flex; align-items: center; gap: 10px; }
.hero-badge .icon-box { width: 39px; height: 39px; margin: 0; border-radius: 10px; }
.hero-badge strong { display: block; font-size: 0.9rem; line-height: 1.2; }
.hero-badge span { display: block; margin-top: 4px; color: #56667a; font-size: 0.75rem; line-height: 1.35; }

.hero-line {
  position: absolute;
  z-index: 0;
  top: 58px;
  right: -24px;
  width: 122px;
  height: 122px;
  border-top: 2px solid rgba(255, 154, 59, 0.9);
  border-right: 2px solid rgba(255, 154, 59, 0.9);
}

.trust-bar { border-bottom: 1px solid var(--line); background: var(--white); }

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 108px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 27px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item svg { width: 26px; height: 26px; flex: none; color: var(--orange); }
.trust-item strong { display: block; color: var(--navy-900); font-size: 0.92rem; line-height: 1.3; }
.trust-item span { display: block; margin-top: 2px; color: var(--muted); font-size: 0.78rem; line-height: 1.35; }

.section { padding-block: 96px; }
.section.compact { padding-block: 72px; }
.surface-sky { background: var(--sky-50); }
.surface-navy { color: var(--white); background: var(--navy-900); }
.surface-navy .section-copy, .surface-navy .section-heading p { color: #c7d8ef; }

.section-heading { max-width: 700px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 {
  color: var(--navy-900);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.surface-navy .section-heading h2 { color: var(--white); }
.section-heading p, .section-copy { margin-top: 17px; color: var(--muted); font-size: 1rem; line-height: 1.73; }

.section-head-row { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 44px; }
.section-head-row .section-heading { max-width: 680px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(15, 35, 66, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover { transform: translateY(-5px); border-color: #b6cdea; box-shadow: var(--shadow-sm); }
.service-card.featured { border-color: #f5b473; background: linear-gradient(145deg, #fffaf5, #fff); }
.service-card h3 { color: var(--navy-900); font-size: 1.13rem; line-height: 1.28; }
.service-card p { margin-top: 11px; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 20px; color: var(--navy-800); font-size: 0.86rem; font-weight: 750; }
.card-link svg { width: 17px; height: 17px; transition: transform 0.2s ease; }
.card-link:hover svg { transform: translateX(3px); }

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 13px;
  color: var(--orange);
  background: var(--orange-soft);
}

.icon-box.navy { color: var(--white); background: var(--navy-900); }
.icon-box svg { width: 25px; height: 25px; }

.spda-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1.07fr);
  overflow: hidden;
  gap: 0;
  border: 1px solid #d4e2f3;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.spda-copy { padding: 57px 54px; }
.spda-copy h2 { color: var(--navy-900); font-size: clamp(1.9rem, 3vw, 2.75rem); letter-spacing: -0.035em; line-height: 1.12; }
.spda-copy > p { margin-top: 18px; color: var(--muted); line-height: 1.72; }
.scope-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-top: 28px; list-style: none; }
.scope-list li { display: flex; gap: 9px; color: #3c4c60; font-size: 0.88rem; line-height: 1.42; }
.scope-list svg { width: 18px; height: 18px; flex: none; color: var(--green); }
.spda-copy .button { margin-top: 31px; }

.spda-visual {
  position: relative;
  min-height: 100%;
  padding: 55px 44px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(255, 126, 11, 0.96) 0%, rgba(231, 96, 0, 0.94) 36%, rgba(6, 39, 94, 0.98) 36.3%, rgba(3, 26, 65, 1) 100%);
}

.spda-visual::before {
  position: absolute;
  top: -76px;
  right: -81px;
  width: 255px;
  height: 255px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.spda-visual::after {
  position: absolute;
  right: 42px;
  bottom: 41px;
  width: 2px;
  height: 145px;
  content: "";
  background: rgba(255, 155, 61, 0.7);
}

.spda-stat { position: relative; z-index: 1; max-width: 340px; }
.spda-stat small { display: block; color: #d4e2f4; font-size: 0.78rem; font-weight: 750; letter-spacing: 0.09em; text-transform: uppercase; }
.spda-stat strong { display: block; margin-top: 14px; font-size: clamp(1.6rem, 3.2vw, 2.5rem); letter-spacing: -0.04em; line-height: 1.12; }
.spda-stat p { margin-top: 18px; color: #d3e1f3; font-size: 0.95rem; line-height: 1.68; }

.note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 29px;
  padding: 15px 16px;
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  color: #536378;
  background: #fff8f1;
  font-size: 0.82rem;
  line-height: 1.55;
}

.note svg { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--orange-dark); }

.two-col { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr); align-items: center; gap: 75px; }
.two-col.reverse { grid-template-columns: minmax(360px, 1.12fr) minmax(0, 0.88fr); }
.two-col .section-heading { max-width: 550px; }

.check-list { display: grid; gap: 14px; margin-top: 27px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: #425166; font-size: 0.95rem; line-height: 1.45; }
.check-list svg { width: 20px; height: 20px; flex: none; margin-top: 1px; color: var(--green); }

.technical-card {
  position: relative;
  overflow: hidden;
  padding: 37px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-md);
}

.technical-card::before {
  position: absolute;
  z-index: 0;
  top: -92px;
  right: -104px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  content: "";
}

.technical-card > * { position: relative; z-index: 1; }
.technical-card .icon-box { color: var(--navy-900); background: #ffb568; }
.technical-card h3 { max-width: 315px; font-size: 1.48rem; letter-spacing: -0.02em; line-height: 1.22; }
.technical-card p { margin-top: 15px; color: #cbdcf2; font-size: 0.93rem; line-height: 1.65; }
.technical-card .mini-rows { display: grid; gap: 12px; margin-top: 29px; }
.mini-row { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.17); color: #e0eaf8; font-size: 0.87rem; }
.mini-row svg { width: 18px; height: 18px; color: #ff9a3b; }

.process { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 47px; }
.process-item { position: relative; padding: 0 23px 0 0; }
.process-item:not(:last-child)::after { position: absolute; top: 24px; right: 0; left: 57px; height: 1px; content: ""; background: #9eb9dc; }
.process-number { display: grid; position: relative; z-index: 1; width: 48px; height: 48px; place-items: center; border: 1px solid #9eb9dc; border-radius: 50%; color: var(--navy-900); background: var(--white); font-size: 0.84rem; font-weight: 800; }
.process-item h3 { margin-top: 19px; color: var(--navy-900); font-size: 0.98rem; line-height: 1.3; }
.process-item p { margin-top: 8px; color: var(--muted); font-size: 0.84rem; line-height: 1.58; }

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 34px; }
.audience-pill { display: flex; align-items: center; gap: 9px; padding: 14px; border: 1px solid #d7e5f5; border-radius: 12px; color: #41526a; background: var(--white); font-size: 0.83rem; font-weight: 650; line-height: 1.35; }
.audience-pill svg { width: 19px; height: 19px; flex: none; color: var(--orange); }

.page-hero { position: relative; overflow: hidden; padding-block: 77px 74px; color: var(--white); background: linear-gradient(120deg, var(--navy-950), var(--navy-900)); }
.page-hero::before { position: absolute; right: 7%; bottom: -120px; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; content: ""; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; color: #c9d9ed; font-size: 0.8rem; }
.breadcrumbs a:hover { color: #ffad60; }
.breadcrumbs svg { width: 13px; height: 13px; }
.page-hero h1 { max-width: 780px; font-size: clamp(2.2rem, 4.5vw, 4rem); letter-spacing: -0.045em; line-height: 1.07; }
.page-hero p { max-width: 700px; margin-top: 20px; color: #d4e2f3; font-size: 1.05rem; line-height: 1.7; }
.page-hero .hero-actions { margin-top: 28px; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 326px; align-items: start; gap: 54px; }
.content-grid .prose h2 { margin-top: 42px; color: var(--navy-900); font-size: 1.62rem; letter-spacing: -0.025em; line-height: 1.2; }
.content-grid .prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 15px; color: #4f5f73; line-height: 1.75; }
.prose .check-list { margin-top: 21px; }
.side-cta { position: sticky; top: 104px; padding: 27px; border: 1px solid #cfdeee; border-radius: var(--radius); background: var(--sky-50); }
.side-cta .icon-box { width: 43px; height: 43px; margin-bottom: 17px; }
.side-cta h2 { color: var(--navy-900); font-size: 1.18rem; line-height: 1.3; }
.side-cta p { margin-top: 9px; color: var(--muted); font-size: 0.86rem; line-height: 1.58; }
.side-cta .button { width: 100%; margin-top: 19px; font-size: 0.84rem; }
.side-cta small { display: block; margin-top: 14px; color: #66768b; font-size: 0.73rem; line-height: 1.45; }

.callout { margin-top: 32px; padding: 25px; border: 1px solid #d9e6f5; border-radius: var(--radius); background: var(--sky-50); }
.callout h3 { color: var(--navy-900); font-size: 1.07rem; }
.callout p { margin-top: 9px; color: #526278; font-size: 0.91rem; }

.faq-layout { display: grid; grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr); align-items: start; gap: 75px; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 20px; color: var(--navy-900); font-size: 0.94rem; font-weight: 720; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { width: 10px; height: 10px; flex: none; border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange); content: ""; transform: rotate(45deg) translateY(-3px); transition: transform 0.2s ease; }
.faq-list details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq-list details p { padding: 0 20px 20px; color: var(--muted); font-size: 0.9rem; line-height: 1.62; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr); align-items: start; gap: 52px; }
.contact-form { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #34445a; font-size: 0.83rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; padding: 12px 13px; border: 1px solid #cbd7e5; border-radius: 9px; color: var(--ink); background: var(--white); font-size: 0.93rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field textarea { min-height: 115px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8d99aa; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(22, 75, 148, 0.12); outline: 0; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; color: #5c6878; font-size: 0.78rem; line-height: 1.5; }
.consent input { width: 16px; height: 16px; flex: none; margin-top: 3px; accent-color: var(--navy-900); }
.consent a { color: var(--navy-800); text-decoration: underline; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 23px; }
.form-feedback { min-height: 1.2em; color: var(--green); font-size: 0.81rem; font-weight: 650; }

.contact-info { padding: 3px 0; }
.contact-info .section-heading { max-width: 500px; }
.contact-methods { display: grid; gap: 13px; margin-top: 29px; }
.contact-method { display: flex; align-items: flex-start; gap: 13px; padding: 16px; border: 1px solid #d9e5f2; border-radius: 13px; background: var(--sky-50); }
.contact-method svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--orange); }
.contact-method strong { display: block; color: var(--navy-900); font-size: 0.86rem; line-height: 1.3; }
.contact-method span, .contact-method a { display: block; margin-top: 2px; color: #526278; font-size: 0.88rem; line-height: 1.45; }
.contact-method a:hover { color: var(--navy-700); text-decoration: underline; }

.about-card { display: grid; overflow: hidden; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); border: 1px solid #d8e4f2; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.profile-placeholder { display: grid; min-height: 390px; place-items: center; padding: 30px; color: #aac0da; background: linear-gradient(145deg, #0b3773, #05245a); text-align: center; }
.profile-placeholder svg { width: 82px; height: 82px; opacity: 0.83; }
.profile-placeholder p { margin-top: 13px; color: #ccdaed; font-size: 0.88rem; }
.about-copy { padding: 48px; }
.about-copy h2 { color: var(--navy-900); font-size: 2rem; letter-spacing: -0.03em; line-height: 1.16; }
.about-copy > p { margin-top: 17px; color: var(--muted); line-height: 1.73; }
.credential-list { display: grid; gap: 13px; margin-top: 28px; list-style: none; }
.credential-list li { display: flex; gap: 10px; color: #4f5f73; font-size: 0.9rem; line-height: 1.45; }
.credential-list svg { width: 18px; height: 18px; flex: none; color: var(--orange); }
.placeholder-line { color: #7b8ca2; font-style: italic; }

.cta-band { position: relative; overflow: hidden; padding-block: 68px; color: var(--white); background: linear-gradient(105deg, var(--navy-950), #123e7b); }
.cta-band::after { position: absolute; right: 8%; bottom: -75px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; content: ""; }
.cta-band .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-band h2 { max-width: 620px; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.035em; line-height: 1.15; }
.cta-band p { max-width: 630px; margin-top: 13px; color: #cbdcf3; }
.cta-band .button { flex: none; }

.privacy { max-width: 820px; }
.privacy h2 { margin-top: 41px; color: var(--navy-900); font-size: 1.48rem; line-height: 1.2; }
.privacy h2:first-child { margin-top: 0; }
.privacy p { margin-top: 14px; color: #536379; line-height: 1.75; }
.privacy ul { display: grid; gap: 8px; margin-top: 14px; padding-left: 20px; color: #536379; }

.site-footer { color: #c2d0e2; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1.25fr 0.9fr 1fr 1.08fr; gap: 35px; padding-block: 62px 47px; }
.footer-brand img { width: 194px; filter: brightness(0) invert(1) grayscale(1) contrast(1.8); opacity: 0.97; }
.footer-brand p { max-width: 300px; margin-top: 18px; color: #afc1da; font-size: 0.86rem; line-height: 1.65; }
.footer-title { margin-bottom: 15px; color: var(--white); font-size: 0.84rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-list { display: grid; gap: 9px; list-style: none; }
.footer-list a { color: #b3c5dc; font-size: 0.84rem; line-height: 1.4; }
.footer-list a:hover { color: #ffae62; }
.footer-contact { display: grid; gap: 13px; }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: 9px; color: #b3c5dc; font-size: 0.84rem; line-height: 1.45; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: #ff9a3b; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(196, 216, 239, 0.16); color: #91a8c5; font-size: 0.74rem; }
.footer-bottom a:hover { color: #ffad60; }

.whatsapp-float { position: fixed; z-index: 100; right: 22px; bottom: 21px; display: inline-flex; align-items: center; gap: 9px; min-height: 54px; padding: 12px 17px; border: 2px solid var(--white); border-radius: 999px; color: var(--white); background: #1fa767; box-shadow: 0 14px 30px rgba(17, 99, 60, 0.28); font-size: 0.84rem; font-weight: 800; transition: transform 0.2s ease, background 0.2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: #168b55; }
.whatsapp-float svg { width: 22px; height: 22px; }

.cookie-banner { position: fixed; z-index: 90; right: 18px; bottom: 84px; left: 18px; display: flex; align-items: center; justify-content: space-between; gap: 22px; width: min(760px, calc(100% - 36px)); margin-left: auto; padding: 18px 20px; border: 1px solid #cbdced; border-radius: 15px; color: #405168; background: rgba(255,255,255,0.98); box-shadow: var(--shadow-md); font-size: 0.8rem; line-height: 1.48; }
.cookie-banner p { max-width: 540px; }
.cookie-banner a { color: var(--navy-800); text-decoration: underline; }
.cookie-actions { display: flex; flex: none; gap: 8px; }
.cookie-actions .button { min-height: 38px; padding: 9px 12px; font-size: 0.75rem; }
.cookie-banner.is-hidden { display: none; }

@media (max-width: 1080px) {
  .nav { gap: 15px; }
  .nav a { font-size: 0.83rem; }
  .nav .button { padding: 10px 12px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr); gap: 35px; }
  .spda-copy { padding: 45px 38px; }
  .spda-visual { padding: 44px 34px; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1.12fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .site-header { position: sticky; }
  .nav-wrap { min-height: 67px; }
  .brand img { width: 157px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav { position: fixed; z-index: 55; top: 101px; right: 0; left: 0; display: grid; gap: 0; max-height: calc(100vh - 101px); padding: 17px 24px 24px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 15px 24px rgba(3,26,65,0.12); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 0.2s ease, transform 0.2s ease; overflow-y: auto; }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav a { padding: 13px 0; font-size: 0.95rem; }
  .nav a:not(.button)::after { display: none; }
  .nav .button { width: 100%; margin-top: 9px; padding: 14px 16px; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; gap: 43px; padding-block: 67px 55px; }
  .hero-copy { max-width: 670px; }
  .hero-visual { min-height: 415px; }
  .hero-image-wrap { inset: 0 0 0 68px; }
  .hero-badge { left: 25px; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: 75px; padding: 16px 2px; border-right: 0; border-bottom: 1px solid var(--line); border-left: 0; }
  .trust-item:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .spda-panel { grid-template-columns: 1fr; }
  .spda-visual { min-height: 280px; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 43px; }
  .process { grid-template-columns: 1fr; gap: 24px; margin-top: 37px; }
  .process-item { min-height: 63px; padding: 0 0 0 66px; }
  .process-item:not(:last-child)::after { top: 50px; right: auto; bottom: -22px; left: 24px; width: 1px; height: auto; }
  .process-number { position: absolute; top: 0; left: 0; }
  .process-item h3 { margin-top: 0; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .side-cta { position: static; }
  .about-card { grid-template-columns: 1fr; }
  .profile-placeholder { min-height: 230px; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.15fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, var(--max)); }
  .announcement .container { min-height: 37px; font-size: 0.7rem; }
  .brand img { width: 148px; }
  .nav { top: 104px; padding-inline: 16px; }
  .section { padding-block: 67px; }
  .section.compact { padding-block: 53px; }
  .hero-inner { gap: 35px; padding-block: 50px 42px; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-lead { margin-top: 19px; font-size: 0.98rem; }
  .hero-actions { display: grid; margin-top: 27px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 323px; }
  .hero-image-wrap { inset: 0 0 0 18px; border-radius: 20px; }
  .hero-badge { bottom: 16px; left: 0; width: min(260px, 84%); padding: 13px; }
  .hero-line { top: 20px; right: -17px; width: 78px; height: 78px; }
  .trust-item { gap: 11px; }
  .section-head-row { align-items: flex-start; flex-direction: column; margin-bottom: 33px; }
  .section-head-row .button { width: 100%; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { min-height: 0; padding: 23px; }
  .icon-box { margin-bottom: 17px; }
  .spda-copy { padding: 34px 23px; }
  .spda-visual { min-height: 250px; padding: 35px 24px; }
  .scope-list { grid-template-columns: 1fr; }
  .technical-card { padding: 29px 24px; }
  .audience-grid { grid-template-columns: 1fr; }
  .page-hero { padding-block: 55px 58px; }
  .page-hero h1 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .page-hero p { font-size: 0.96rem; }
  .content-grid .prose h2 { margin-top: 34px; font-size: 1.4rem; }
  .contact-form { padding: 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .about-copy { padding: 31px 24px; }
  .about-copy h2 { font-size: 1.75rem; }
  .cta-band { padding-block: 50px; }
  .footer-main { grid-template-columns: 1fr; padding-block: 46px 31px; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .whatsapp-float { right: 15px; bottom: 13px; min-height: 51px; padding: 10px 14px; font-size: 0.79rem; }
  .cookie-banner { right: 12px; bottom: 76px; left: 12px; align-items: flex-start; flex-direction: column; width: auto; padding: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
