:root {
  --navy-950: #06152d;
  --navy-900: #0a2145;
  --navy-800: #123368;
  --blue-700: #1c4f91;
  --cyan-500: #20a7d8;
  --teal-500: #16b8ad;
  --teal-100: #dff7f4;
  --gold-400: #f8bf57;
  --ink: #122037;
  --muted: #60708a;
  --line: #dce4ef;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --shadow-sm: 0 12px 35px rgba(6, 27, 60, 0.08);
  --shadow-lg: 0 24px 70px rgba(6, 27, 60, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

.publication-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #092440, #0b6597);
  font-weight: 800;
  letter-spacing: .16em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--navy-950);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a:hover {
  color: white;
}

.topbar-tag {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 239, 0.85);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(8, 30, 66, 0.1);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

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

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 11px;
  border-radius: 9px;
  color: #263955;
  font-size: 14px;
  font-weight: 650;
  transition: color 150ms ease, background 150ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-700);
  background: #eef5fb;
}

.nav-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 12px 28px rgba(28, 79, 145, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(28, 79, 145, 0.32);
}

.btn-light {
  color: var(--navy-900);
  background: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.btn-outline {
  color: var(--blue-700);
  border-color: #b9cde4;
  background: transparent;
}

.btn-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--teal-500);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 710px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 18, 42, 0.98) 0%, rgba(7, 30, 66, 0.91) 47%, rgba(7, 30, 66, 0.34) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(76, 210, 225, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(76, 210, 225, 0.03), 0 0 0 160px rgba(76, 210, 225, 0.025);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 70%);
  padding: 98px 0 154px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(116, 228, 235, 0.28);
  border-radius: 999px;
  color: #a7f2ed;
  background: rgba(16, 167, 169, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 20px;
  font-size: clamp(45px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: #77e5df;
}

.hero-copy {
  max-width: 645px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 105px;
  width: 285px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(7, 28, 60, 0.72);
  backdrop-filter: blur(18px);
}

.hero-note strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 16px;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.signal {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #62df9b;
  box-shadow: 0 0 0 6px rgba(98, 223, 155, 0.12);
}

.stats-band {
  position: relative;
  z-index: 5;
  margin-top: -72px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-lg);
}

.stat {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

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

.stat-value {
  color: var(--navy-900);
  font-size: 37px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.stat-value em {
  color: var(--teal-500);
  font-style: normal;
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding: 104px 0;
}

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

.section-dark {
  color: white;
  background: var(--navy-950);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 45px;
}

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

.section-heading.center .eyebrow {
  justify-content: center;
}

.section h2,
.page-hero h1 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(36px, 4.5vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-dark h2 {
  color: white;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

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

.media-card {
  position: relative;
}

.media-card img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.media-badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  width: 195px;
  padding: 20px;
  border-radius: var(--radius-md);
  color: white;
  background: linear-gradient(145deg, var(--blue-700), var(--cyan-500));
  box-shadow: var(--shadow-lg);
}

.media-badge strong {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.media-badge span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.feature-list {
  display: grid;
  gap: 19px;
  margin: 27px 0 31px;
}

.feature-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-700);
  background: var(--teal-100);
  font-size: 18px;
  font-weight: 850;
}

.feature-item h3 {
  margin: 0 0 3px;
  font-size: 17px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.service-card {
  position: relative;
  min-height: 410px;
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: white;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 21, 45, 0.02) 10%, rgba(6, 21, 45, 0.95) 88%);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  align-self: end;
  padding: 27px;
}

.service-index {
  display: inline-flex;
  margin-bottom: 13px;
  color: #8ce9e2;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: #8ce9e2;
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.coverage-panel {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(6, 21, 45, 0.97), rgba(14, 65, 115, 0.86)),
    url("../images/hero.jpg") center/cover;
  box-shadow: var(--shadow-lg);
}

.coverage-panel::after {
  position: absolute;
  right: -80px;
  top: -110px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(40, 210, 215, 0.07);
  border-radius: 50%;
  content: "";
}

.coverage-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.coverage-content h2 {
  color: white;
}

.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.coverage-pill {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
}

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

.value-card,
.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.value-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 18px;
}

.value-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.clients-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
}

.client-logo {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.client-logo img {
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-image {
  height: 220px;
  overflow: hidden;
  background: var(--navy-900);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.post-card:hover .post-image img {
  transform: scale(1.045);
}

.post-body {
  padding: 24px;
}

.post-meta {
  color: var(--teal-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 10px 0 9px;
  font-size: 20px;
  line-height: 1.3;
}

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

.cta {
  padding: 78px 0;
  color: white;
  background: linear-gradient(120deg, var(--navy-900), var(--blue-700));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.cta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 98px;
  color: white;
  background: var(--navy-950);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 21, 45, 0.98), rgba(10, 43, 84, 0.78)),
    var(--page-bg, url("../images/hero.jpg")) center/cover;
}

.page-hero::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(91, 224, 220, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(91, 224, 220, 0.025), 0 0 0 140px rgba(91, 224, 220, 0.02);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.breadcrumbs a {
  color: #83e9e2;
}

.page-hero h1 {
  color: white;
}

.page-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.quote-card {
  position: relative;
  padding: 39px;
  border-left: 5px solid var(--teal-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--surface-soft);
}

.quote-card p {
  margin: 0;
  color: var(--navy-900);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.6;
}

.quote-card footer {
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
}

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

.mission-card {
  padding: 38px;
  border-radius: var(--radius-md);
  color: white;
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
}

.mission-card:nth-child(2) {
  color: var(--ink);
  background: var(--teal-100);
}

.mission-card .number {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 38px;
  font-weight: 850;
}

.mission-card:nth-child(2) .number {
  color: rgba(10, 87, 105, 0.28);
}

.mission-card h3 {
  margin: 0 0 9px;
  font-size: 25px;
}

.mission-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.mission-card:nth-child(2) p {
  color: #48626c;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 35px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: white;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: white;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.services-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, opacity 180ms ease;
}

.catalog-card.hidden {
  display: none;
}

.catalog-image {
  height: 205px;
  overflow: hidden;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
}

.catalog-card:hover img {
  transform: scale(1.04);
}

.catalog-body {
  padding: 22px;
}

.catalog-body h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.catalog-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.team-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 65px 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.team-section-title h2 {
  margin: 0;
  font-size: 30px;
}

.team-section-title span {
  color: var(--muted);
  font-size: 14px;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.team-photo {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: #e7edf4;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92);
  transition: transform 400ms ease, filter 250ms ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.team-info {
  padding: 22px;
}

.team-info h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.team-role {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-500);
  font-size: 13px;
  font-weight: 800;
}

.team-email {
  color: var(--muted);
  font-size: 13px;
  word-break: break-word;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.logo-wall .client-logo {
  min-height: 145px;
}

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

.support-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.support-logo {
  height: 90px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.support-logo img {
  max-width: 180px;
  max-height: 75px;
  object-fit: contain;
}

.support-card h3 {
  margin: 0 0 7px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.office-list {
  display: grid;
  gap: 17px;
  margin-top: 27px;
}

.office-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.office-card .office-tag {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--teal-500);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.office-card p,
.office-card a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  margin-bottom: 8px;
  font-size: 31px;
}

.contact-form > p {
  margin: 0 0 25px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid #ccd8e7;
  border-radius: 10px;
  outline: 0;
  background: #fbfdff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

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

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(32, 167, 216, 0.12);
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 9px;
  color: #0f6e53;
  background: #e4f8ee;
  font-size: 13px;
}

.form-status.show {
  display: block;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--teal-500);
  font-size: 23px;
  font-weight: 400;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #041226;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1.1fr;
  gap: 50px;
  padding: 72px 0 55px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  font-size: 14px;
}

.footer-col h3 {
  margin: 0 0 17px;
  color: white;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-col p {
  margin: 0;
  font-size: 13px;
}

.footer-links a:hover {
  color: #7be4de;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 500;
  right: 27px;
  bottom: 88px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--blue-700);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 170ms ease, transform 170ms ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.whatsapp-float {
  position: fixed;
  z-index: 510;
  right: 22px;
  bottom: 22px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: #128c4a;
  box-shadow: 0 14px 35px rgba(18, 140, 74, 0.32);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  color: #fff;
  background: #0f7b40;
  box-shadow: 0 17px 42px rgba(18, 140, 74, 0.4);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1100px) {
  .main-nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    width: 75%;
  }

  .services-grid,
  .services-catalog,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar-social {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed;
    inset: var(--mobile-menu-top, 120px) 0 0;
    z-index: 1200;
    display: none;
    padding: 24px 20px 40px;
    background: white;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .menu-open .main-nav {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 5px;
  }

  .main-nav a {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: 100%;
    padding: 92px 0 170px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-note {
    right: 20px;
    bottom: 88px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .media-card {
    max-width: 680px;
  }

  .values-grid,
  .blog-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .coverage-panel {
    padding: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:last-child {
    grid-column: auto;
  }
}

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

  .topbar-inner {
    min-height: 42px;
  }

  .topbar-links a:nth-child(2) {
    display: none;
  }

  .topbar-tag {
    font-size: 11px;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 195px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 42, 0.95) 0%, rgba(7, 30, 66, 0.88) 100%),
      url("../images/hero.jpg") 48% center/cover no-repeat;
  }

  .hero-content {
    padding: 82px 0 245px;
  }

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

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-note {
    right: 14px;
    bottom: 68px;
    left: 14px;
    width: auto;
  }

  .stats-band {
    margin-top: -48px;
  }

  .stat {
    min-height: 125px;
    padding: 20px;
  }

  .stat-value {
    font-size: 30px;
  }

  .section {
    padding: 76px 0;
  }

  .section h2,
  .page-hero h1 {
    font-size: 37px;
  }

  .lead {
    font-size: 16px;
  }

  .media-card img {
    min-height: 390px;
  }

  .media-badge {
    right: 14px;
    bottom: 14px;
  }

  .services-grid,
  .services-catalog,
  .team-grid,
  .values-grid,
  .blog-grid,
  .support-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 370px;
  }

  .coverage-panel {
    padding: 38px 25px;
  }

  .clients-strip,
  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 86px 0 76px;
  }

  .team-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-photo {
    height: 440px;
  }

  .contact-form {
    padding: 26px 20px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 55px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

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

  .back-to-top {
    right: 21px;
    bottom: 82px;
  }
}
