:root {
  --navy-950: #04122d;
  --navy-900: #071a3f;
  --navy-800: #0b2857;
  --navy-700: #123c76;
  --blue-100: #e8f0fb;
  --gold-500: #f0b94d;
  --gold-400: #f6ca72;
  --gold-100: #fff4da;
  --ink: #10203d;
  --muted: #63708a;
  --line: #dfe5ef;
  --surface: #f5f7fb;
  --white: #ffffff;
  --green: #1eaa61;
  --container: 1180px;
  --shadow-lg: 0 26px 70px rgba(3, 17, 45, 0.18);
  --shadow-sm: 0 12px 30px rgba(13, 37, 78, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: 180ms ease;
}

.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(15, 31, 60, 0.08);
  box-shadow: 0 8px 28px rgba(8, 24, 55, 0.07);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}

.scrolled .brand img {
  width: 44px;
  height: 44px;
}

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

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scrolled .brand-copy small {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: currentColor;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.91rem;
  font-weight: 750;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.card-link svg,
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

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

.button:hover svg,
.card-link:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.84rem;
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 10px 28px rgba(231, 164, 49, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-400);
  box-shadow: 0 14px 34px rgba(231, 164, 49, 0.28);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-ghost svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 148px 0 38px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(34, 78, 142, 0.5), transparent 35%),
    linear-gradient(132deg, var(--navy-950) 0%, var(--navy-900) 52%, #0b3263 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding-bottom: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--gold-400);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 1.03;
}

.hero h1 em {
  position: relative;
  color: var(--gold-400);
  font-style: normal;
}

.hero-copy > p {
  max-width: 565px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.11rem;
  line-height: 1.72;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  height: 525px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 180px 24px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 165px 16px 16px 16px;
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 63, 0.22), transparent 32%);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 225px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(3, 17, 45, 0.22);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: 52px;
  left: -36px;
}

.floating-card-bottom {
  right: -25px;
  bottom: 36px;
}

.floating-card > span:last-child {
  display: grid;
  gap: 2px;
}

.floating-card strong {
  font-size: 0.86rem;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-700);
  background: var(--blue-100);
  border-radius: 50%;
}

.floating-icon svg {
  width: 21px;
  height: 21px;
}

.avatars {
  display: flex;
}

.avatars span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--navy-700);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.avatars span + span {
  margin-left: -10px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 1rem;
}

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

.hero-orbit-one {
  top: 50px;
  right: -220px;
  width: 650px;
  height: 650px;
}

.hero-orbit-two {
  top: 190px;
  right: -80px;
  width: 370px;
  height: 370px;
  border-color: rgba(240, 185, 77, 0.12);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.scroll-cue svg {
  width: 17px;
  height: 17px;
}

.section {
  padding: 118px 0;
}

.section h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.1;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

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

.service-card {
  display: flex;
  min-height: 325px;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  border-color: rgba(18, 60, 118, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card-featured {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.service-card-featured::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  background: rgba(240, 185, 77, 0.08);
  border: 1px solid rgba(240, 185, 77, 0.16);
  border-radius: 50%;
  content: "";
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--navy-700);
  background: var(--blue-100);
  border-radius: 12px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card-featured .service-icon {
  color: var(--navy-950);
  background: var(--gold-500);
}

.card-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-featured .card-kicker {
  color: var(--gold-400);
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

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

.service-card-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 18px 0 0;
  gap: 5px;
  color: var(--navy-700);
  background: none;
  border: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card-featured .card-link {
  color: var(--gold-400);
}

.services-note {
  margin: 34px 0 0;
  color: var(--muted);
  text-align: center;
}

.services-note a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.process::after {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 105px;
}

.process-intro {
  align-self: center;
}

.process-intro > p {
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-400);
  font-weight: 700;
}

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

.process-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 28px 0;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-steps li:first-child {
  padding-top: 0;
}

.process-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step-number {
  padding-top: 4px;
  color: var(--gold-400);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-steps h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  padding: 0 24px 28px 0;
}

.about-panel {
  position: relative;
  z-index: 1;
  min-height: 500px;
  padding: 58px 48px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(7, 26, 63, 0.92), rgba(11, 40, 87, 0.98)),
    var(--navy-900);
  border-radius: 20px 150px 20px 20px;
  box-shadow: var(--shadow-lg);
}

.about-panel::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px 138px 14px 14px;
  content: "";
}

.about-mark {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 130px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 30px 30px 30px 4px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.about-panel p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.2rem;
}

.about-panel strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 360px;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.18;
}

.about-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 42%;
  background: var(--gold-500);
  border-radius: 0 0 18px 0;
}

.about-copy > p {
  color: var(--muted);
  line-height: 1.72;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.values-row {
  display: grid;
  margin-top: 34px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.values-row span {
  display: grid;
  grid-template-columns: 118px 1fr;
  padding: 15px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.values-row strong {
  color: var(--navy-700);
}

.quote-section {
  padding: 100px 0;
  color: var(--white);
  background: var(--surface);
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  padding: 70px;
  gap: 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 78, 142, 0.48), transparent 32%),
    var(--navy-900);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.quote-copy {
  align-self: center;
}

.quote-copy > p {
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.quote-contact {
  display: grid;
  gap: 16px;
}

.quote-contact > span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-contact svg {
  width: 23px;
  height: 23px;
  color: var(--gold-400);
}

.quote-contact > span > span {
  display: grid;
  gap: 2px;
}

.quote-contact small {
  color: rgba(255, 255, 255, 0.55);
}

.quote-contact strong {
  font-size: 0.88rem;
  font-weight: 500;
}

.quote-form {
  display: grid;
  padding: 32px;
  gap: 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.81rem;
  font-weight: 700;
}

.form-row label span {
  color: var(--muted);
  font-weight: 400;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input,
.form-row select {
  height: 48px;
}

.form-row textarea {
  min-height: 86px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(18, 60, 118, 0.1);
}

.button-full {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.form-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  text-align: center;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 110px;
}

.faq-intro > p {
  margin: 22px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.text-link-dark {
  color: var(--navy-700);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  gap: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: var(--surface);
  border-radius: 50%;
}

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

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

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

.faq-list details p {
  max-width: 660px;
  margin: -6px 50px 24px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer {
  padding: 70px 0 22px;
  color: var(--white);
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  padding-bottom: 55px;
  gap: 100px;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand > p {
  max-width: 300px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 0.7fr;
  gap: 42px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: var(--gold-400);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.83rem;
  overflow-wrap: anywhere;
}

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

.footer-links svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  gap: 9px;
  color: var(--white);
  background: var(--green);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(11, 61, 38, 0.26);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 34px;
  }

  .hero-image-wrap {
    height: 480px;
  }

  .floating-card-top {
    left: -15px;
  }

  .floating-card-bottom {
    right: -8px;
  }

  .about-grid,
  .process-grid,
  .quote-shell {
    gap: 55px;
  }

  .quote-shell {
    padding: 55px;
  }

  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled {
    height: 70px;
  }

  .site-header {
    background: rgba(4, 18, 45, 0.94);
    backdrop-filter: blur(16px);
  }

  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 24px 20px 30px;
    gap: 4px;
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(4, 18, 45, 0.13);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a:not(.button) {
    padding: 13px 4px;
  }

  .main-nav .nav-cta {
    margin-top: 12px;
  }

  .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 {
    min-height: auto;
    padding: 124px 0 34px;
  }

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

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

  .hero h1 {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .hero-image-wrap {
    height: 520px;
  }

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

  .process-grid,
  .about-grid,
  .quote-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 65px;
  }

  .about-grid {
    gap: 65px;
  }

  .about-visual {
    max-width: 580px;
    width: 100%;
  }

  .quote-shell {
    gap: 48px;
  }

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

  .faq-grid {
    gap: 50px;
  }

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

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

  .brand img,
  .scrolled .brand img {
    width: 43px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy small {
    font-size: 0.54rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-trust {
    display: grid;
    gap: 12px;
  }

  .hero-image-wrap {
    height: 410px;
    border-radius: 100px 18px 18px 18px;
  }

  .hero-image-wrap::after {
    inset: 10px;
    border-radius: 92px 12px 12px 12px;
  }

  .hero-image-wrap img {
    object-position: 66% center;
  }

  .floating-card {
    min-width: 0;
    padding: 10px 12px;
  }

  .floating-card-top {
    top: 26px;
    left: -2px;
  }

  .floating-card-bottom {
    right: -2px;
    bottom: 20px;
  }

  .floating-card strong {
    font-size: 0.76rem;
  }

  .floating-card small {
    font-size: 0.64rem;
  }

  .hero-bottom {
    margin-top: 34px;
  }

  .hero-bottom p {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section h2 {
    font-size: 2.25rem;
  }

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

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

  .process-grid,
  .about-grid {
    gap: 48px;
  }

  .about-visual {
    padding: 0 14px 18px 0;
  }

  .about-panel {
    min-height: 430px;
    padding: 38px 30px;
    border-radius: 16px 100px 16px 16px;
  }

  .about-panel::after {
    border-radius: 10px 88px 10px 10px;
  }

  .about-mark {
    margin-bottom: 95px;
  }

  .about-panel strong {
    font-size: 1.65rem;
  }

  .values-row span {
    grid-template-columns: 105px 1fr;
  }

  .quote-section {
    padding: 20px 0;
    background: var(--navy-900);
  }

  .quote-shell {
    width: min(calc(100% - 28px), var(--container));
    padding: 66px 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .quote-contact strong {
    overflow-wrap: anywhere;
  }

  .faq-list summary {
    font-size: 0.92rem;
  }

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

  .footer-bottom {
    display: grid;
    gap: 6px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
