:root {
  --ink: #0a2135;
  --ink-soft: #41566a;
  --navy: #071f33;
  --navy-2: #0a2a44;
  --navy-3: #0e3857;
  --blue: #0f72b5;
  --blue-bright: #20a7d8;
  --teal: #0b8a87;
  --teal-light: #d9f3f0;
  --gold: #d5aa58;
  --cream: #f7f4ed;
  --mist: #f4f8fb;
  --line: #dce6ed;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(7, 31, 51, 0.08);
  --shadow-md: 0 24px 64px rgba(7, 31, 51, 0.14);
  --shadow-lg: 0 32px 90px rgba(0, 14, 28, 0.26);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.application-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid #f0bd59;
  outline-offset: 4px;
}

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

.section {
  padding-block: 112px;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 16px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-label,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.section-label-light {
  color: #77cce8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.14;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.4vw, 62px);
  letter-spacing: -0.045em;
}

h2 em,
h1 em {
  color: var(--blue-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-style: normal;
  font-weight: 700;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn span {
  margin-left: 12px;
  font-size: 17px;
  transition: transform 180ms ease;
}

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

.btn:hover span {
  transform: translateX(4px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(15, 114, 181, 0.25);
}

.btn-primary:hover {
  background: #0a639f;
  box-shadow: 0 16px 34px rgba(15, 114, 181, 0.32);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 31, 51, 0.18);
}

.btn-dark:hover {
  background: var(--navy-3);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.btn-light:hover {
  background: #eef7fb;
}

.btn-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-quiet {
  color: var(--ink);
  background: #edf3f7;
  border-color: #dae5ec;
}

.btn-quiet:hover {
  background: #e3edf3;
}

.btn-large {
  min-height: 56px;
  padding-inline: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
}

.top-ribbon {
  color: #dcecf6;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ribbon-inner p {
  margin: 0;
}

.ribbon-inner > p:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-transform: uppercase;
}

.ribbon-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4bd0b7;
  box-shadow: 0 0 0 0 rgba(75, 208, 183, 0.45);
  animation: ribbon-pulse 2.2s ease-out infinite;
}

.ribbon-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #8edcf3;
}

.ribbon-inner a span {
  margin-left: 8px;
}

.nav-shell {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 51, 76, 0.09);
  box-shadow: 0 10px 30px rgba(7, 31, 51, 0.06);
  backdrop-filter: blur(16px);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #23b1df, #0d6db2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(23, 136, 202, 0.15);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -6px 45% -6px -6px;
  border: 2px solid #58c5ea;
  border-right: 0;
  border-radius: 999px 0 0 999px;
  opacity: 0.85;
}

.brand-mark span {
  position: relative;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.brand-light .brand-copy strong {
  color: var(--white);
}

.brand-light .brand-copy small {
  color: #76cce9;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
  margin-left: auto;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #30485a;
  font-size: 13px;
  font-weight: 700;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-menu a:hover,
.primary-menu a.active {
  color: var(--blue);
}

.primary-menu a:hover::after,
.primary-menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 28px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.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 */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 120px);
  padding: 88px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(27, 161, 204, 0.16), transparent 34%),
    linear-gradient(118deg, #061a2b 0%, #092b45 54%, #0a3650 100%);
}

.hero-grid-pattern,
.why-pattern,
.application-cta-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 82%);
  animation: grid-drift 26s linear infinite;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.34;
}

.hero-glow-one {
  top: -220px;
  left: -170px;
  width: 480px;
  height: 480px;
  background: rgba(19, 131, 190, 0.36);
}

.hero-glow-two {
  right: 7%;
  bottom: -250px;
  width: 540px;
  height: 540px;
  background: rgba(11, 138, 135, 0.26);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: hero-enter 780ms 120ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.eyebrow {
  margin-bottom: 24px;
  color: #8edcf3;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: #8edcf3;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(54px, 5.5vw, 82px);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c4d6e2;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 0;
  padding: 0;
  color: #dceaf2;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #7de1c8;
  background: rgba(34, 190, 157, 0.12);
  border: 1px solid rgba(125, 225, 200, 0.26);
  border-radius: 50%;
  font-size: 10px;
}

.hero-media {
  position: relative;
  min-height: 590px;
  animation: hero-media-enter 920ms 220ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 32px;
  right: -28px;
  bottom: -28px;
  left: 40px;
  border: 1px solid rgba(108, 203, 235, 0.28);
  border-radius: var(--radius-lg);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  object-fit: cover;
  object-position: 64% center;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-media:hover img {
  transform: scale(1.025);
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 45%, rgba(4, 23, 38, 0.62) 100%);
  pointer-events: none;
}

.hero-status-card {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  background: rgba(5, 27, 44, 0.79);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.status-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-bright), var(--blue));
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.hero-status-card div {
  display: grid;
}

.hero-status-card small,
.hero-country-card small {
  color: #80d1ea;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-status-card strong {
  margin-top: 4px;
  font-size: 14px;
}

.hero-country-card {
  position: absolute;
  top: 28px;
  left: -38px;
  min-width: 190px;
  padding: 16px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  animation: gentle-float 5s ease-in-out infinite;
}

.hero-country-card small {
  color: var(--blue);
}

.hero-country-card div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-country-card i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  right: 50%;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(50%);
}

.hero-scroll span {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #8edcf3;
  animation: scroll-line 2s ease-in-out infinite;
}

/* Presence */
.presence-strip {
  position: relative;
  padding: 76px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.presence-heading {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.presence-heading .section-label {
  justify-content: center;
  margin-bottom: 14px;
}

.presence-heading h2 {
  max-width: 790px;
  margin: 0 auto;
  font-size: clamp(28px, 3vw, 43px);
}

.presence-heading > p:last-child {
  max-width: 620px;
  margin: 15px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.presence-card {
  display: flex;
  align-items: center;
  gap: 19px;
  min-height: 142px;
  padding: 24px;
  background: linear-gradient(145deg, #fbfdfe, #f2f7fa);
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.presence-card:hover {
  border-color: rgba(15, 114, 181, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.country-code {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #d7e6ef;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(15, 114, 181, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.presence-card div {
  display: grid;
}

.presence-card small {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.presence-card strong {
  font-size: 17px;
}

.presence-card p {
  margin: 3px 0 0;
  color: #708396;
  font-size: 11px;
}

/* Services */
.services {
  position: relative;
  background: var(--mist);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  max-width: none;
}

.section-heading-split h2 {
  margin: 0;
}

.section-heading-split > p {
  padding-bottom: 7px;
}

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

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfe9ef;
  border-radius: var(--radius);
  box-shadow: 0 7px 24px rgba(7, 31, 51, 0.04);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -90px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(32, 167, 216, 0.16), transparent 66%);
  transition: transform 350ms ease;
}

.service-card:hover {
  border-color: rgba(15, 114, 181, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scale(1.4);
}

.service-number {
  position: absolute;
  top: 29px;
  right: 30px;
  color: #a9bac6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-category {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 8px 12px;
  color: var(--blue);
  background: #edf7fb;
  border: 1px solid #d5ebf5;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-category span {
  width: 7px;
  height: 7px;
  background: linear-gradient(145deg, var(--blue-bright), var(--teal));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32, 167, 216, 0.1);
}

.service-card h3 {
  max-width: 290px;
  margin-bottom: 16px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.service-card p {
  margin-bottom: 28px;
  color: #5c7182;
  font-size: 13px;
}

.service-card a {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding-top: 12px;
  color: var(--blue);
  border-top: 1px solid #e2ebf0;
  font-size: 11px;
  font-weight: 800;
}

.service-card a span {
  font-size: 16px;
  transition: transform 180ms ease;
}

.service-card:hover a span {
  transform: translateX(5px);
}

/* About */
.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.about-media {
  position: relative;
  min-height: 640px;
}

.about-media picture {
  position: absolute;
  inset: 0 38px 40px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-media:hover img {
  transform: scale(1.03);
}

.about-frame {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: 0;
  bottom: 0;
  left: 42px;
  border: 1px solid #b9d9e7;
  border-radius: var(--radius-lg);
  background: #eaf5f8;
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: grid;
  min-width: 170px;
  padding: 20px 23px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.about-badge strong {
  color: #7fd6ed;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.about-badge span {
  color: #d2e3ec;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 650px;
}

.about-lead {
  color: #243d50;
  font-size: 18px;
  font-weight: 600;
}

.about-content > p:not(.section-label):not(.about-lead) {
  color: var(--ink-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.values-grid > div {
  min-height: 145px;
  padding: 23px;
  background: #fbfdfe;
}

.values-grid span {
  display: block;
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.values-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.values-grid p {
  margin: 0;
  color: #64798a;
  font-size: 11px;
}

/* Why certification */
.why {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #071f33 0%, #0a3450 52%, #0b4a59 100%);
}

.why-pattern {
  opacity: 0.08;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.why-content h2 {
  max-width: 700px;
}

.why-lead {
  margin-bottom: 33px;
  color: #c6dae4;
  font-size: 17px;
}

.why-list {
  display: grid;
  gap: 5px;
  margin-bottom: 34px;
}

.why-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.why-list article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #83d8ed;
  background: rgba(57, 185, 214, 0.1);
  border: 1px solid rgba(131, 216, 237, 0.2);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.why-list h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.why-list p {
  margin: 0;
  color: #b8ccd7;
  font-size: 12px;
}

.why-media {
  position: relative;
  min-height: 670px;
}

.why-media picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
}

.why-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 42%, rgba(4, 25, 41, 0.78));
  pointer-events: none;
}

.why-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 18px;
  background: rgba(5, 28, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(12px);
}

.why-caption > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: #78ddc6;
  border-radius: 50%;
  font-weight: 900;
}

.why-caption p {
  margin: 0;
  color: #c5d7df;
  font-size: 11px;
}

.why-caption strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 13px;
}

.scope-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 58px;
  padding: 23px 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.scope-note span {
  color: #f0c877;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scope-note p {
  margin: 0;
  color: #c7d8e1;
  font-size: 12px;
}

/* Process */
.process {
  background: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 220px;
  padding: 29px;
  overflow: hidden;
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width 400ms ease;
}

.process-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.process-card:hover::after {
  width: 100%;
}

.process-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-card p {
  margin: 0;
  color: #627789;
  font-size: 12px;
}

/* Industries */
.industries {
  background: linear-gradient(180deg, var(--mist), #edf5f8);
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(52px, 7vw, 100px);
}

.industries-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.industries-intro p:not(.section-label) {
  color: var(--ink-soft);
}

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

.industry-grid article {
  min-height: 190px;
  padding: 27px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(202, 219, 228, 0.85);
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(7, 31, 51, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.industry-grid article:hover {
  border-color: rgba(15, 114, 181, 0.27);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.industry-grid span {
  display: block;
  margin-bottom: 29px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.industry-grid h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.industry-grid p {
  margin: 0;
  color: #657b8b;
  font-size: 11px;
}

/* Application CTA */
.application-cta {
  position: relative;
  isolation: isolate;
  padding: 90px 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #0b6eaa, #087e92 70%, #087b77);
}

.application-cta-pattern {
  opacity: 0.13;
  background-size: 52px 52px;
  mask-image: none;
}

.application-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.application-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 4vw, 58px);
}

.application-cta p:not(.section-label) {
  max-width: 650px;
  margin-bottom: 0;
  color: #d9eff3;
}

.application-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(56px, 7vw, 100px);
}

.faq-intro {
  align-self: start;
}

.faq-intro p:not(.section-label) {
  margin-bottom: 30px;
  color: var(--ink-soft);
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 20px 58px 20px 3px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: absolute;
  right: 7px;
  width: 32px;
  height: 32px;
  background: #edf5f8;
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary {
  color: var(--blue);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details p {
  max-width: 730px;
  margin: -3px 60px 25px 3px;
  color: #617686;
  font-size: 13px;
}

/* Contact */
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #061b2d, #0a2f48 60%, #0a4352);
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at center, #fff 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.contact-orb {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  background: rgba(15, 140, 147, 0.23);
  border-radius: 50%;
  filter: blur(12px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.contact-content h2 {
  max-width: 600px;
}

.contact-content > p:not(.section-label):not(.contact-note) {
  max-width: 610px;
  color: #c2d5df;
  font-size: 17px;
}

.contact-expectations {
  display: grid;
  gap: 14px;
  margin: 36px 0 31px;
}

.contact-expectations > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-expectations span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #8bdded;
  background: rgba(72, 190, 215, 0.1);
  border: 1px solid rgba(139, 221, 237, 0.19);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.contact-expectations p {
  margin: 0;
  color: #bcd0da;
  font-size: 12px;
}

.contact-expectations strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 13px;
}

.official-email {
  display: inline-grid;
  gap: 3px;
  min-width: 235px;
  padding: 14px 17px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(139, 221, 237, 0.2);
  border-radius: 11px;
}

.official-email span {
  color: #8bdded;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.official-email a {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  transition: color 160ms ease;
}

.official-email a:hover {
  color: #8bdded;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.form-heading h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.form-grid,
.application-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.form-grid label,
.application-fields label {
  display: grid;
  gap: 7px;
  color: #314a5c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid label b,
.application-fields label b,
.consent b {
  color: #b54040;
}

.field-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid #d4e0e7;
  border-radius: 9px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 114, 181, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: #96a7b3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-status {
  margin: 13px 0 0;
  color: #6c7f8e;
  font-size: 10px;
  text-align: center;
}

.form-status.success {
  color: #08746e;
}

.copy-enquiry {
  display: block;
  min-height: 42px;
  margin: 9px auto 0;
  padding: 7px 14px;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copy-enquiry[hidden] {
  display: none;
}

/* Footer */
.site-footer {
  color: #c4d5df;
  background: #041727;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 1fr;
  gap: 55px;
  padding-block: 78px;
}

.footer-brand p {
  max-width: 360px;
  margin: 27px 0 22px;
  color: #9db2bf;
  font-size: 12px;
}

.footer-domain {
  color: #7bd1e8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-email {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: #d5e6ee;
  font-size: 11px;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-email:hover {
  color: #83d8ed;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3 {
  margin: 5px 0 13px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  color: #aebfca;
  font-size: 11px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: #83d8ed;
  transform: translateX(3px);
}

.footer-presence p {
  display: grid;
  margin: 0;
  color: #aebfca;
  font-size: 11px;
}

.footer-presence span {
  color: #70cbe5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  color: #718997;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #8eb0c0;
}

.footer-bottom a span {
  margin-left: 8px;
}

/* Application modal */
.application-modal[hidden] {
  display: none !important;
}

.application-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.application-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 27, 0.83);
  backdrop-filter: blur(8px);
  animation: fade-in 220ms both ease;
}

.application-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  width: min(1180px, 100%);
  max-height: min(850px, calc(100vh - 56px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
  animation: dialog-enter 300ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.application-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 720px;
  padding: 38px 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 110% 0, rgba(44, 186, 215, 0.25), transparent 40%),
    linear-gradient(150deg, #071e32, #0a3b55);
}

.application-aside h2 {
  margin-bottom: 18px;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.application-aside > div > p:not(.section-label) {
  color: #b9ccd7;
  font-size: 12px;
}

.application-aside > small {
  color: #8fa8b7;
  font-size: 9px;
}

.application-aside-steps {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.application-aside-steps li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 10px 12px;
  color: #8fa9b8;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.application-aside-steps li span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 8px;
}

.application-aside-steps li.active {
  color: var(--white);
  background: rgba(69, 183, 211, 0.1);
  border-color: rgba(112, 203, 229, 0.16);
}

.application-aside-steps li.active span {
  color: var(--navy);
  background: #71d2e9;
  border-color: #71d2e9;
}

.application-main {
  max-height: min(850px, calc(100vh - 56px));
  overflow-y: auto;
  background: #f8fafb;
}

.application-topbar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 69px;
  padding: 0 31px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.application-topbar p {
  display: flex;
  gap: 16px;
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.application-topbar p span {
  color: #708493;
  font-weight: 600;
}

.application-close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  background: #eef3f6;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.application-progress {
  position: sticky;
  z-index: 6;
  top: 68px;
  height: 3px;
  overflow: hidden;
  background: #e2eaf0;
}

.application-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width 300ms ease;
}

#certification-application,
.application-result {
  padding: 47px clamp(30px, 5vw, 66px) 58px;
}

.application-panel {
  display: none;
}

.application-panel.active {
  display: block;
  animation: panel-enter 260ms both ease;
}

.panel-heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  margin-bottom: 32px;
}

.panel-heading > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--blue);
  background: #e7f3f8;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.panel-heading p {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.panel-heading h2 {
  margin: 0 0 5px;
  font-size: clamp(28px, 3vw, 39px);
}

.panel-heading small {
  color: #7d8e9a;
  font-size: 10px;
}

.application-fields {
  gap: 19px;
}

.application-fields-spaced {
  margin-top: 22px;
}

.application-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.scope-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.scope-choices label {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 104px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.scope-choices label:hover,
.scope-choices label:has(input:checked) {
  background: #f4fbfd;
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 114, 181, 0.08);
}

.scope-choices input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 12px 0 0;
  accent-color: var(--blue);
}

.scope-choices label > span {
  display: grid;
}

.scope-choices b {
  margin-bottom: 4px;
  font-size: 12px;
}

.scope-choices small {
  color: #6f8290;
  font-size: 9px;
}

.scope-error {
  min-height: 20px;
  margin: 6px 0 0;
  color: #b33838;
  font-size: 10px;
  font-weight: 700;
}

.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  padding: 16px;
  background: #f2f6f8;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 1px;
  accent-color: var(--blue);
}

.application-result[hidden] {
  display: none;
}

.application-result {
  max-width: 700px;
  min-height: 590px;
  margin: auto;
  text-align: center;
  animation: panel-enter 280ms both ease;
}

.result-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 28px auto 24px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal), var(--blue));
  border-radius: 50%;
  box-shadow: 0 13px 32px rgba(11, 138, 135, 0.25);
  font-size: 27px;
}

.application-result .section-label {
  justify-content: center;
}

.application-result h2 {
  margin-bottom: 18px;
  font-size: 42px;
}

.application-result > p:not(.section-label) {
  color: #637785;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.result-close {
  min-height: 44px;
  margin-top: 17px;
  padding: 7px 13px;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Motion */
.motion-ready .reveal,
.motion-ready .reveal-left,
.motion-ready .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal-left {
  transform: translateX(-34px);
}

.motion-ready .reveal-right {
  transform: translateX(34px);
}

.motion-ready .reveal.visible,
.motion-ready .reveal-left.visible,
.motion-ready .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes ribbon-pulse {
  0% { box-shadow: 0 0 0 0 rgba(75, 208, 183, 0.4); }
  70% { box-shadow: 0 0 0 7px rgba(75, 208, 183, 0); }
  100% { box-shadow: 0 0 0 0 rgba(75, 208, 183, 0); }
}

@keyframes grid-drift {
  to { background-position: 72px 72px; }
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-media-enter {
  from { opacity: 0; transform: translateX(38px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dialog-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 76px;
  }

  .ribbon-presence {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(360px, calc(100vw - 48px));
    gap: 2px;
    margin: 0;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-menu.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-menu a {
    min-height: 47px;
    padding: 0 13px;
    border-radius: 8px;
  }

  .primary-menu a:hover,
  .primary-menu a.active {
    background: #eef7fa;
  }

  .primary-menu a::after {
    display: none;
  }

  .nav-cta {
    margin-left: 14px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 48px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-country-card {
    left: -20px;
  }

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

  .why-layout,
  .contact-layout {
    gap: 55px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 0.8fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 88px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-layout,
  .about-layout,
  .why-layout,
  .contact-layout,
  .faq-layout,
  .industries-layout,
  .application-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 740px;
  }

  .hero-media {
    min-height: 580px;
    margin-top: 10px;
  }

  .hero-country-card {
    left: 22px;
  }

  .hero-scroll {
    display: none;
  }

  .presence-heading,
  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .presence-heading > p:last-child {
    max-width: 600px;
  }

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

  .presence-card {
    min-height: 112px;
  }

  .about-layout {
    gap: 58px;
  }

  .about-media {
    min-height: 620px;
  }

  .why-layout {
    gap: 58px;
  }

  .why-media {
    min-height: 620px;
  }

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

  .industries-intro {
    position: static;
    max-width: 680px;
  }

  .application-cta-actions {
    justify-content: flex-start;
  }

  .faq-intro {
    max-width: 650px;
  }

  .contact-content {
    max-width: 700px;
  }

  .contact-form {
    max-width: 760px;
  }

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

  .footer-presence {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-presence h3 {
    grid-column: 1 / -1;
  }

  .application-modal {
    padding: 0;
  }

  .application-dialog {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .application-aside {
    display: none;
  }

  .application-main {
    max-height: 100vh;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 72px;
  }

  .top-ribbon {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-mark span {
    font-size: 25px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .primary-menu {
    width: calc(100vw - 32px);
  }

  .hero {
    padding: 62px 0 66px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 63px);
  }

  .hero h1 em {
    display: inline;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media::before {
    top: 20px;
    right: -10px;
    bottom: -12px;
    left: 20px;
  }

  .hero-country-card {
    top: 17px;
    left: 14px;
    min-width: 165px;
  }

  .hero-status-card {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .hero-status-card strong {
    font-size: 12px;
  }

  .presence-strip {
    padding-block: 62px;
  }

  .services-grid,
  .process-grid,
  .industry-grid,
  .values-grid,
  .form-grid,
  .application-fields,
  .scope-choices {
    grid-template-columns: 1fr;
  }

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

  .about-media,
  .why-media {
    min-height: 460px;
  }

  .about-media picture {
    inset: 0 18px 25px 0;
  }

  .about-frame {
    top: 24px;
    left: 22px;
  }

  .about-badge {
    right: 0;
    bottom: 43px;
    min-width: 145px;
  }

  .why-caption {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .application-cta {
    padding-block: 70px;
  }

  .application-cta-actions {
    display: grid;
  }

  .application-cta-actions .btn {
    width: 100%;
  }

  .accordion summary {
    min-height: 72px;
    padding-right: 48px;
    font-size: 13px;
  }

  .accordion details p {
    margin-right: 10px;
  }

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

  .form-heading {
    align-items: start;
    flex-direction: column;
  }

  .field-wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 26px;
    padding-block: 62px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-presence {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .footer-presence h3 {
    grid-column: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 82px;
  }

  #certification-application,
  .application-result {
    padding: 33px 18px 45px;
  }

  .application-topbar {
    padding-inline: 18px;
  }

  .panel-heading {
    grid-template-columns: 40px 1fr;
  }

  .panel-heading > span {
    width: 38px;
    height: 38px;
  }

  .application-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .application-actions > span:empty {
    display: none;
  }

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

  .result-actions {
    display: grid;
  }

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

  .application-result h2 {
    font-size: 34px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-country-card {
    min-width: 150px;
    padding: 13px 14px;
  }

  .presence-card {
    padding: 20px;
  }

  .country-code {
    flex-basis: 49px;
    width: 49px;
    height: 49px;
  }

  .service-card {
    padding-inline: 25px;
  }

  .service-card a {
    right: 25px;
    left: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal,
  .motion-ready .reveal-left,
  .motion-ready .reveal-right {
    opacity: 1;
    transform: none;
  }
}
