:root {
  --font-geist-sans: "Segoe UI", Arial, sans-serif;
  --font-geist-mono: Consolas, "Courier New", monospace;
  --navy-950: #06152a;
  --navy-900: #09203d;
  --navy-800: #102d50;
  --navy-700: #1a4267;
  --teal-700: #08746f;
  --teal-600: #0b9189;
  --teal-500: #10a49a;
  --teal-100: #d9f2ef;
  --gold-600: #c68e16;
  --gold-500: #e1ad2f;
  --gold-300: #f1cf78;
  --ink: #0a2039;
  --slate: #5d6d7f;
  --line: #dce4e8;
  --surface: #f4f7f7;
  --warm: #fbfaf6;
  --white: #ffffff;
  --shadow-sm: 0 16px 45px rgba(6, 26, 48, 0.08);
  --shadow-lg: 0 30px 90px rgba(6, 26, 48, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(10, 32, 57, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 32px rgba(6, 26, 48, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-link,
.brand {
  display: inline-flex;
  align-items: center;
}

.brand-link {
  width: max-content;
}

.brand {
  width: 178px;
  height: 60px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 33px 0 28px;
  color: #395067;
  font-size: 13px;
  font-weight: 620;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--navy-900);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 12px;
}

.header-cta:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
}

.header-cta svg,
.button svg,
.service-content a svg,
.contact-card svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.header-cta:hover svg,
.button:hover svg,
.service-content a:hover svg,
.contact-card a:hover svg {
  transform: translateX(4px);
}

.mobile-nav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-nav summary {
  width: 45px;
  height: 45px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 12px;
  border: 1px solid #cbd6dc;
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

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

.mobile-nav summary span {
  height: 2px;
  display: block;
  background: var(--navy-900);
}

.mobile-nav nav {
  position: absolute;
  top: 55px;
  right: 0;
  width: min(310px, calc(100vw - 34px));
  display: grid;
  padding: 10px;
  border: 1px solid #d9e1e5;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  animation: menu-in 180ms ease both;
}

.mobile-nav nav a {
  padding: 14px 12px;
  border-bottom: 1px solid #edf1f2;
  color: #31485e;
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
  color: var(--teal-700);
}

.hero {
  position: relative;
  min-height: 850px;
  display: grid;
  align-items: center;
  padding: 145px 0 120px;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
  animation: hero-image-in 1.2s ease both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 19, 39, 0.98) 0%,
      rgba(5, 19, 39, 0.94) 30%,
      rgba(5, 19, 39, 0.72) 51%,
      rgba(5, 19, 39, 0.12) 83%
    ),
    linear-gradient(0deg, rgba(5, 19, 39, 0.45), transparent 52%);
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 740px;
  animation: copy-in 700ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--gold-500);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 5.6vw, 86px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-300);
  font-weight: inherit;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c2cfda;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  font-size: 13px;
}

.button-gold {
  background: var(--gold-500);
  color: #10223a;
  box-shadow: 0 14px 38px rgba(225, 173, 47, 0.18);
}

.button-gold:hover {
  background: #f0c354;
  box-shadow: 0 18px 45px rgba(225, 173, 47, 0.26);
  transform: translateY(-2px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(5, 19, 39, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.hero-capabilities {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 19, 39, 0.72);
  backdrop-filter: blur(14px);
}

.capability-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.capability-row span {
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: #e7edf3;
  font-size: 13px;
  font-weight: 650;
}

.capability-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--gold-500);
}

.capability-row span:first-child {
  padding-left: 0;
}

.capability-row span:last-child {
  border-right: 0;
}

.promise-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.promise-grid > div {
  min-height: 150px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
}

.promise-grid > div:first-child {
  padding-left: 0;
}

.promise-grid > div:last-child {
  border-right: 0;
}

.promise-grid span {
  grid-row: 1 / 3;
  color: var(--teal-600);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.promise-grid strong {
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 720;
}

.promise-grid p {
  margin: 6px 0 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2,
.faq-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(42px, 4.3vw, 66px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-heading > p,
.faq-intro > p:not(.section-kicker) {
  max-width: 450px;
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.8;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 480px;
  border: 1px solid #dce4e8;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(11, 145, 137, 0.42);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy-900);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 42, 0.48), transparent 55%);
}

.service-image img {
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.service-image span {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(6, 21, 42, 0.55);
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.service-content {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
}

.service-content h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 25px;
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.service-content > p {
  margin: 16px 0 22px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.service-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 16px;
  color: #344a5e;
  font-size: 12px;
  line-height: 1.5;
}

.service-content li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-600);
}

.service-content > a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 750;
}

.about-section {
  overflow: hidden;
  background: var(--navy-950);
}

.about-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(16, 164, 154, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 164, 154, 0.18) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.about-section::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -350px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(225, 173, 47, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(225, 173, 47, 0.022),
    0 0 0 160px rgba(225, 173, 47, 0.015);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
}

.section-kicker-light {
  color: var(--gold-300);
}

.about-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 730;
  letter-spacing: -0.062em;
  line-height: 1;
}

.about-copy {
  padding-top: 36px;
}

.about-copy > p {
  margin: 0;
  color: #8fa3b7;
  font-size: 14px;
  line-height: 1.85;
}

.about-copy .about-lead {
  margin-bottom: 22px;
  color: #e1e8ef;
  font-size: 22px;
  line-height: 1.55;
}

.principles {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principles article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.principles article > span {
  color: var(--teal-500);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.principles strong {
  color: var(--white);
  font-size: 15px;
}

.principles article p {
  margin: 6px 0 0;
  color: #8196aa;
  font-size: 12px;
  line-height: 1.6;
}

.clients-section {
  background: var(--warm);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #cfdadd;
  border-bottom: 1px solid #cfdadd;
}

.audience-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px 26px;
  border-right: 1px solid #cfdadd;
  overflow: hidden;
  transition:
    background 200ms ease,
    color 200ms ease;
}

.audience-grid article:last-child {
  border-right: 0;
}

.audience-grid article:hover {
  background: var(--navy-900);
}

.audience-grid article > span {
  color: var(--teal-600);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.audience-grid h3 {
  margin: 85px 0 16px;
  color: var(--navy-900);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.audience-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.audience-grid article:hover h3 {
  color: var(--white);
}

.audience-grid article:hover p {
  color: #9fb0c0;
}

.audience-grid i {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(11, 145, 137, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(11, 145, 137, 0.025);
}

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

.section-heading-dark h2 {
  color: var(--white);
}

.section-heading-dark > p {
  color: #90a4b7;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 58px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-500), rgba(255, 255, 255, 0.12));
}

.process-grid article {
  position: relative;
  min-height: 265px;
  padding-right: 34px;
}

.process-grid article > span {
  color: #718ba2;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.process-dot {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin: 30px 0 42px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 1px rgba(225, 173, 47, 0.48);
}

.process-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.process-grid p {
  margin: 0;
  color: #8fa4b8;
  font-size: 13px;
  line-height: 1.7;
}

.decision-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 45px;
  padding: 42px 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(16, 164, 154, 0.12), transparent 58%),
    var(--navy-800);
}

.decision-banner .section-kicker {
  margin-bottom: 9px;
}

.decision-banner h3 {
  margin: 0;
  color: var(--white);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.decision-banner p:not(.section-kicker) {
  max-width: 650px;
  margin: 10px 0 0;
  color: #92a6b9;
  font-size: 13px;
  line-height: 1.7;
}

.decision-banner .button {
  flex: 0 0 auto;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(42px, 4.2vw, 62px);
}

.faq-intro > p:not(.section-kicker) {
  margin-top: 24px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 690;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--teal-600);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.faq-list summary i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #ccd8dd;
  border-radius: 50%;
  color: var(--teal-700);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -10px 50px 30px 54px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  background: var(--teal-700);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.contact-orbit {
  position: absolute;
  right: -250px;
  bottom: -400px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.62fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 740;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-copy h2 strong {
  display: block;
  color: var(--gold-300);
  font-weight: inherit;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 680px;
  margin: 27px 0 0;
  color: #cae4e1;
  font-size: 15px;
  line-height: 1.8;
}

.contact-card {
  display: grid;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(4, 45, 50, 0.18);
}

.contact-card > div,
.contact-card address {
  display: grid;
  gap: 5px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: #395164;
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.contact-card > :last-child {
  border-bottom: 0;
}

.contact-card span {
  color: var(--teal-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #20b85a;
  box-shadow: 0 12px 32px rgba(5, 40, 24, 0.25);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 66px 0 24px;
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.5fr;
  gap: 90px;
  padding-bottom: 54px;
}

.brand-footer {
  width: 190px;
  height: auto;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand > p {
  max-width: 430px;
  margin: 22px 0 0;
  color: #7f94a8;
  font-size: 13px;
  line-height: 1.75;
}

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

.footer-links strong {
  margin-bottom: 7px;
  color: var(--gold-300);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: #93a6b8;
  font-size: 13px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #60768b;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:last-child {
  justify-self: end;
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 44px, 980px);
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 22px;
  }

  .brand {
    width: 160px;
  }

  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 260px;
  }

  .about-grid {
    gap: 60px;
  }

  .contact-inner {
    grid-template-columns: 1fr 0.65fr;
    gap: 50px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 76px;
  }

  .shell {
    width: min(100% - 36px, 720px);
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 150px;
    height: 52px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 800px;
    padding-top: 125px;
  }

  .hero-visual img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 19, 39, 0.97), rgba(5, 19, 39, 0.65)),
      linear-gradient(0deg, rgba(5, 19, 39, 0.65), transparent);
  }

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

  .hero h1 {
    font-size: clamp(54px, 10vw, 78px);
  }

  .capability-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 0;
  }

  .capability-row span,
  .capability-row span:first-child {
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    font-size: 12px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .promise-grid > div,
  .promise-grid > div:first-child {
    min-height: 100px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 44px;
  }

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

  .service-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-grid,
  .faq-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .audience-grid article:nth-child(2) {
    border-right: 0;
  }

  .audience-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #cfdadd;
  }

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

  .process-grid::before {
    display: none;
  }

  .process-grid article {
    min-height: 220px;
  }

  .process-dot {
    margin: 25px 0;
  }

  .decision-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-intro {
    position: static;
  }

  .contact-card {
    max-width: 560px;
  }

  .footer-top {
    grid-template-columns: 1fr 0.5fr 0.5fr;
    gap: 50px;
  }

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

  .footer-bottom a:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-bottom > a:not(:last-child) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 590px) {
  .shell {
    width: min(100% - 28px, 530px);
  }

  .brand {
    width: 138px;
  }

  .hero {
    min-height: 810px;
    padding-top: 116px;
  }

  .hero-visual img {
    object-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 19, 39, 0.96), rgba(5, 19, 39, 0.79)),
      linear-gradient(0deg, rgba(5, 19, 39, 0.74), transparent);
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 65px);
  }

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

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .capability-row span {
    font-size: 10px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .faq-intro h2 {
    font-size: 39px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 240px;
  }

  .service-content {
    padding: 26px 23px;
  }

  .about-grid {
    gap: 42px;
  }

  .about-heading h2 {
    font-size: 45px;
  }

  .about-copy .about-lead {
    font-size: 19px;
  }

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

  .audience-grid article,
  .audience-grid article:nth-child(2) {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid #cfdadd;
  }

  .audience-grid article:last-child {
    border-bottom: 0;
  }

  .audience-grid h3 {
    margin-top: 48px;
  }

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

  .process-grid article {
    min-height: auto;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .decision-banner {
    padding: 30px 24px;
  }

  .decision-banner h3 {
    font-size: 26px;
  }

  .faq-list summary {
    grid-template-columns: 28px 1fr auto;
    min-height: 88px;
    font-size: 15px;
  }

  .faq-list details > p {
    margin: -4px 42px 28px 40px;
    font-size: 13px;
  }

  .contact-section {
    padding: 86px 0;
  }

  .contact-copy h2 {
    font-size: 43px;
  }

  .contact-card {
    padding: 10px 22px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 30px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom a:last-child,
  .footer-bottom > a:not(:last-child) {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }
}

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

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