:root {
  --navy-950: #071a2b;
  --navy-900: #102a43;
  --navy-800: #183b56;
  --navy-700: #274d69;
  --teal-700: #11756d;
  --teal-600: #16877c;
  --teal-500: #20a092;
  --teal-100: #dff5f1;
  --teal-50: #effaf8;
  --ink: #122438;
  --muted: #617284;
  --line: #dfe8ec;
  --surface: #ffffff;
  --mist: #f5f8f9;
  --shadow-sm: 0 12px 30px rgba(13, 41, 62, 0.08);
  --shadow-lg: 0 32px 90px rgba(2, 19, 31, 0.32);
  --radius-lg: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--teal-700);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 230px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(2, 19, 31, 0.16);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-toggle {
  min-width: 56px;
  padding: 8px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-current {
  color: white;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button:focus-visible,
.language-toggle:focus-visible,
.desktop-nav a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(32, 160, 146, 0.34);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  color: var(--navy-950);
  background: white;
}

.button-primary {
  color: white;
  background: var(--teal-700);
  box-shadow: 0 12px 24px rgba(22, 135, 124, 0.22);
}

.button-primary:hover {
  background: #0b625b;
  box-shadow: 0 16px 28px rgba(22, 135, 124, 0.28);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-quiet {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(32, 160, 146, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 62%, #0c3549);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to left, black, transparent 78%);
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 440px;
  height: 440px;
  right: -190px;
  bottom: -190px;
}

.hero-orbit-two {
  width: 290px;
  height: 290px;
  right: -115px;
  bottom: -115px;
  border-color: rgba(32, 160, 146, 0.3);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
  padding-top: 130px;
  padding-bottom: 88px;
}

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

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: #73d6cb;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73d6cb;
  box-shadow: 0 0 0 5px rgba(115, 214, 203, 0.12);
}

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

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.3vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1.04rem, 1.6vw, 1.19rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 35px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
  list-style: none;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #73d6cb;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strategy-wrap {
  position: relative;
}

.strategy-wrap::before {
  content: "";
  position: absolute;
  inset: 12% -10% -8% 16%;
  border-radius: 34px;
  background: rgba(32, 160, 146, 0.17);
  transform: rotate(5deg);
}

.strategy-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.strategy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.strategy-kicker {
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strategy-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.strategy-card h2 {
  max-width: 340px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.strategy-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strategy-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 22px;
  width: 1px;
  background: linear-gradient(var(--teal-500), var(--line));
}

.strategy-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 14px 0;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 6px solid white;
  border-radius: 50%;
  color: white;
  background: var(--teal-700);
  font-size: 0.66rem;
  font-weight: 850;
}

.strategy-steps strong {
  display: block;
  margin: 1px 0 2px;
  font-size: 1rem;
}

.strategy-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.strategy-note {
  margin: 24px 0 0;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--navy-700);
  font-size: 0.8rem;
  font-weight: 700;
}

.section {
  padding: clamp(82px, 10vw, 132px) 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-intro h2,
.process-heading h2,
.standards h2,
.contact h2 {
  margin: 14px 0 20px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-intro p,
.process-heading p,
.standards-copy,
.contact-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px 28px 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  z-index: 1;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #9aabb7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
  border-radius: 15px;
  color: var(--teal-700);
  background: var(--teal-50);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.13rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.process {
  color: white;
  background: var(--navy-900);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(60px, 9vw, 130px);
}

.section-label.light {
  color: #73d6cb;
}

.process-heading {
  align-self: start;
  position: sticky;
  top: 36px;
}

.process-heading h2 {
  max-width: 490px;
}

.process-heading p {
  color: rgba(255, 255, 255, 0.64);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 29px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list > li > span {
  color: #73d6cb;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.process-list p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.94rem;
}

.standards {
  background: var(--mist);
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.standards h2 {
  max-width: 620px;
}

.standards-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.standards-list li {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #e2eaed;
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 22px rgba(13, 41, 62, 0.04);
  font-size: 0.93rem;
  font-weight: 700;
}

.standards-list svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  fill: none;
  stroke: var(--teal-700);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--teal-50);
}

.contact {
  color: white;
  background:
    radial-gradient(circle at 15% 15%, rgba(32, 160, 146, 0.18), transparent 30%),
    var(--navy-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.contact-copy {
  padding-top: 20px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.64);
}

.direct-email {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 36px;
  color: white;
  text-decoration: none;
}

.direct-email span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
}

.direct-email strong {
  border-bottom: 1px solid rgba(115, 214, 203, 0.45);
  color: #83ddd4;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 19px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 750;
}

label em {
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5e0e5;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfcfc;
  font-size: 0.94rem;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8b9ba7;
}

.privacy-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.form-submit {
  justify-self: start;
  margin-top: 2px;
  border: 0;
}

.form-status {
  min-height: 0;
  margin: -8px 0 0;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 700;
}

.site-footer {
  padding: 58px 0 34px;
  color: white;
  background: #061520;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
  padding-bottom: 36px;
}

.footer-brand img {
  width: 220px;
  height: auto;
  border-radius: 13px;
  background: white;
}

.footer-brand p {
  margin: 6px 0 0 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.footer-address {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  text-align: right;
}

.footer-address strong {
  display: block;
  color: white;
  font-size: 0.87rem;
}

.footer-address address {
  font-style: normal;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-legal p {
  margin-bottom: 0;
}

.footer-legal p:first-child {
  max-width: 850px;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

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

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

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

@media (max-width: 790px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand,
  .brand img {
    width: 175px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 132px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 4.5rem);
  }

  .strategy-wrap {
    max-width: 580px;
  }

  .process-layout,
  .standards-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand,
  .brand img {
    width: 158px;
  }

  .header-actions {
    gap: 5px;
  }

  .language-toggle {
    min-width: 50px;
  }

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

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

  .trust-row {
    display: grid;
    gap: 10px;
  }

  .strategy-wrap::before {
    display: none;
  }

  .strategy-card {
    padding: 26px 22px;
  }

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

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

  .footer-main,
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-address {
    text-align: left;
  }

  .footer-brand p {
    margin-left: 13px;
  }
}

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

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