:root {
  --ink: #071a2c;
  --navy: #0b2d4f;
  --blue: #174f87;
  --cyan: #82ddd3;
  --cyan-strong: #32c6b8;
  --gold: #efb735;
  --gold-light: #ffdc78;
  --gold-dark: #a86c08;
  --ice: #e9f5f7;
  --mist: #f3f7f8;
  --white: #ffffff;
  --muted: #586b7b;
  --line: #d9e5e9;
  --shadow-sm: 0 12px 36px rgba(5, 31, 54, 0.08);
  --shadow-lg: 0 28px 80px rgba(5, 31, 54, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 26, 44, 0.95);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(2, 15, 28, 0.22);
}

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

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 720;
}

.desktop-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  transform: scaleX(0);
  background: var(--cyan);
  transition: transform 160ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 19px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(50, 198, 184, 0.22);
}

.button-primary:hover {
  background: #a1eee6;
  box-shadow: 0 16px 36px rgba(50, 198, 184, 0.3);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(7, 26, 44, 0.2);
}

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

.button-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  border-color: var(--blue);
}

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

.button-reserve {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 58%, #d99a1f 100%);
  color: #211703;
  box-shadow: 0 14px 34px rgba(239, 183, 53, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.button-reserve:hover {
  border-color: #ffe59b;
  background: linear-gradient(135deg, #ffe8a6 0%, #f7c752 58%, var(--gold) 100%);
  color: #211703;
  box-shadow: 0 18px 42px rgba(239, 183, 53, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button-reserve:focus-visible {
  outline-color: var(--gold-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: var(--cyan-strong);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.5vw, 4.4rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

p {
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 820;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 82px);
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: -14vw;
  bottom: -36vw;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(130, 221, 211, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(130, 221, 211, 0.04), 0 0 0 140px rgba(130, 221, 211, 0.03);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 70px 90px 0;
}

.hero-copy h1 {
  max-width: 780px;
}

.hero-copy .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
}

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

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 0 4%;
  z-index: 1;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(7, 26, 44, 0.22) 28%, transparent 56%), linear-gradient(0deg, rgba(7, 26, 44, 0.44), transparent 42%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 270px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 18px;
  background: rgba(7, 26, 44, 0.76);
  backdrop-filter: blur(16px);
}

.hero-note strong {
  display: block;
  font-size: 1.1rem;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.trust-bar {
  background: var(--cyan);
}

.trust-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 28px;
  border-left: 1px solid rgba(7, 26, 44, 0.22);
  font-weight: 780;
  line-height: 1.25;
}

.trust-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-number {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.section {
  padding-block: 110px;
}

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

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

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

.section-heading p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.split-copy {
  max-width: 590px;
}

.split-copy .lead {
  margin-bottom: 28px;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--cyan);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

.kicker-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
}

.kicker-list li::before {
  content: "✓";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 79, 135, 0.3);
  box-shadow: var(--shadow-sm);
}

.service-index {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-card p {
  color: var(--muted);
}

.service-card .text-link {
  margin-top: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
}

.process-card {
  min-height: 320px;
  padding: 36px;
  background: var(--ink);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 74px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 900;
}

.process-card p {
  color: rgba(255, 255, 255, 0.65);
}

.wide-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 7vw, 76px);
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.wide-cta::after {
  content: "AR";
  position: absolute;
  right: -20px;
  bottom: -90px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 19rem;
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.wide-cta > * {
  position: relative;
  z-index: 1;
}

.wide-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.wide-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.wide-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 116px 92px;
  background: var(--ink);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(130, 221, 211, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(130, 221, 211, 0.04), 0 0 0 140px rgba(130, 221, 211, 0.025);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.detail-stack {
  display: grid;
  gap: 20px;
}

.detail-card {
  display: grid;
  grid-template-columns: 92px 1fr 0.8fr;
  align-items: start;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 38px;
  background: var(--white);
}

.detail-number {
  color: var(--cyan-strong);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.detail-points {
  margin: 0;
  padding-left: 20px;
  color: var(--navy);
}

.detail-points li + li {
  margin-top: 8px;
}

.info-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 7vw, 72px);
  background: var(--ice);
}

.info-band p {
  color: var(--muted);
}

.method-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.method-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--line);
}

.timeline-card {
  position: relative;
  padding-top: 76px;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--cyan-strong);
  box-shadow: 0 0 0 1px var(--line);
  color: var(--ink);
  font-weight: 900;
}

.timeline-card p {
  color: var(--muted);
}

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

.principle-card {
  border-radius: var(--radius-md);
  padding: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.principle-card p {
  color: rgba(255, 255, 255, 0.66);
}

.team-hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.team-portrait {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ice);
}

.team-portrait img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center 30%;
}

.team-copy .lead {
  margin-bottom: 28px;
}

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

.value-card {
  border-top: 4px solid var(--cyan-strong);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-card p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
}

.contact-panel {
  border-radius: var(--radius-md);
  padding: clamp(30px, 5vw, 52px);
}

.contact-panel-dark {
  background: var(--ink);
  color: var(--white);
}

.contact-panel-light {
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.contact-details strong {
  color: var(--navy);
}

.contact-details a {
  color: var(--blue);
  font-weight: 720;
}

.contact-details a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-placeholder {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 24px;
  border-radius: 20px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(7, 26, 44, 0.92), rgba(23, 79, 135, 0.78)),
    url("equipo-horizontal.webp") center/cover;
  color: var(--white);
}

.map-placeholder p {
  max-width: 380px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 24px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 0;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 740px;
  padding-bottom: 22px;
  color: var(--muted);
}

.site-footer {
  padding-block: 70px 26px;
  background: #041321;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 70px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #20bb68;
  color: var(--white);
  box-shadow: 0 16px 38px rgba(7, 26, 44, 0.3);
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease;
}

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

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

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

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav .button {
    padding-inline: 14px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-copy {
    padding-right: 38px;
  }

  .detail-card {
    grid-template-columns: 70px 1fr;
  }

  .detail-points {
    grid-column: 2;
  }

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

  .method-timeline::before {
    display: none;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 82px 0 auto;
    z-index: 45;
    display: grid;
    visibility: hidden;
    transform: translateY(-12px);
    opacity: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 26px 20px 32px;
    background: var(--ink);
    color: var(--white);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 4px;
    font-size: 1.08rem;
    font-weight: 750;
  }

  .mobile-nav .button {
    margin-top: 18px;
    border-bottom: 0;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .team-hero-grid,
  .contact-layout,
  .wide-cta,
  .info-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 78px 0 58px;
  }

  .hero-visual {
    min-height: 520px;
    margin-inline: -20px;
  }

  .hero-visual img {
    clip-path: none;
  }

  .hero-visual::before {
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 26, 44, 0.6), transparent 50%);
  }

  .trust-grid,
  .process-grid,
  .values-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    padding-block: 14px;
  }

  .trust-item,
  .trust-item:first-child {
    min-height: 58px;
    border-top: 1px solid rgba(7, 26, 44, 0.16);
    border-left: 0;
    padding: 10px 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .process-card {
    min-height: auto;
  }

  .process-step {
    margin-bottom: 38px;
  }

  .wide-cta-actions {
    align-items: flex-start;
  }

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

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

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

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

  .brand img {
    width: 148px;
  }

  .mobile-nav {
    inset: 72px 0 auto;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .section {
    padding-block: 76px;
  }

  .page-hero {
    padding-block: 86px 70px;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 390px;
    margin-inline: -14px;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .service-grid,
  .method-timeline,
  .values-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 290px;
    padding: 28px;
  }

  .image-frame::before {
    top: -10px;
    right: -8px;
  }

  .image-frame img {
    min-height: 420px;
    border-radius: var(--radius-md);
  }

  .detail-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }

  .detail-points {
    grid-column: 1;
  }

  .timeline-card {
    padding: 0 0 28px 70px;
  }

  .timeline-dot {
    top: 0;
  }

  .contact-details li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

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

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