:root {
  --bg: #080918;
  --bg-soft: #0f1024;
  --surface: #15162d;
  --surface-2: #1a1b34;
  --gold: #f4b72d;
  --gold-soft: #ffdc7b;
  --text: #f8f8fb;
  --muted: #a7a8ba;
  --line: rgba(255, 255, 255, 0.1);
  --success: #6fdfad;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold);
  color: #10101a;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  background: rgba(8, 9, 24, 0.9);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

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

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

.brand-logo {
  display: block;
  width: 178px;
  height: 58px;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(2.2);
  mix-blend-mode: screen;
}

.footer-brand .brand-logo {
  width: 205px;
  height: 92px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 650;
}

.main-nav>a:not(.button) {
  color: #d5d5df;
  transition: color .2s;
}

.main-nav>a:not(.button):hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 4px 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid var(--gold);
  border-radius: 11px;
  background: var(--gold);
  color: #12131f;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 183, 45, .24);
}

.button-sm {
  min-height: 40px;
  padding: 0 17px;
  font-size: 12px;
}

.button-outline {
  color: var(--gold);
  background: transparent;
}

.package-card:not(.featured) .button-outline {
  border: 2px solid #9b6800;
  color: #6f4a00;
  background: #fff8e8;
  box-shadow: 0 6px 16px rgba(111, 74, 0, .08), inset 0 0 0 1px rgba(255, 255, 255, .8);
}

.package-card:not(.featured) .button-outline:hover {
  color: #12131f;
  background: var(--gold);
  border-color: #9b6800;
}

.button-full {
  width: 100%;
}

.hero {
  min-height: 780px;
  padding: 145px 0 35px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 78% 20%, rgba(68, 50, 133, .36), transparent 34%), linear-gradient(180deg, #090a1a, var(--bg));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(244, 183, 45, .08);
  filter: blur(80px);
  left: -180px;
  top: 300px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .19em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
  max-width: 690px;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  color: #c1c2cf;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 34px 0 38px;
}

.hero-visual {
  position: relative;
  max-width: 500px;
  justify-self: end;
}

.image-shell {
  position: relative;
  border-radius: 190px 190px 22px 22px;
  padding: 10px;
  border: 1px solid rgba(244, 183, 45, .28);
  background: rgba(255, 255, 255, .025);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-shell img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 180px 180px 16px 16px;
}

.image-shell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 180px 180px 16px 16px;
  background: linear-gradient(to top, rgba(8, 9, 24, .65), transparent 42%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  left: -55px;
  bottom: 40px;
  z-index: 2;
  width: 225px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(13, 14, 31, .88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card span,
.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.floating-card strong {
  display: block;
  color: var(--gold);
  font-size: 21px;
  margin: 2px 0;
}

.orbit-badge {
  position: absolute;
  right: -23px;
  top: 44px;
  z-index: 3;
  width: 82px;
  height: 82px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: #11121e;
  background: var(--gold);
  border: 7px solid var(--bg);
  transform: rotate(7deg);
}

.orbit-badge strong {
  font-size: 20px;
  line-height: 1;
}

.orbit-badge span {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: #0c0d1e;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: var(--line);
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-list>span {
  min-width: 0;
  min-height: 72px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0c0d1e;
  text-align: center;
}

.trust-list strong {
  color: var(--text);
}

.trust-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.trust-list i {
  display: none;
}

.section {
  padding: 110px 0;
}

.section-head {
  margin-bottom: 55px;
}

.section-head.split {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
}

.section-head.centered {
  max-width: 710px;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-head p,
.faq-intro>p {
  color: var(--muted);
  margin-bottom: 0;
}

.opportunity {
  background: #f0eee9;
  color: #10111d;
}

.opportunity .section-head p {
  color: #5f6069;
}

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

.metric-card {
  padding: 34px;
  min-height: 270px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid #dfdcd5;
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, transparent 50%, rgba(244, 183, 45, .18) 50%);
  right: 0;
  top: 0;
}

.metric-number {
  color: #171824;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}

.metric-unit {
  color: #b47a00;
  font-size: 23px;
  font-weight: 850;
}

.metric-card h3 {
  margin: 50px 0 5px;
  font-size: 17px;
}

.metric-card p {
  color: #73747d;
  font-size: 13px;
  margin-bottom: 0;
}

.services {
  background: #0b0c1c;
}

.services .section-head p {
  max-width: 620px;
  margin: 18px auto 0;
}

.service-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.service-feature {
  min-height: 570px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 7, 18, .92), transparent 55%);
}

.service-caption {
  position: absolute;
  z-index: 2;
  inset: auto 27px 25px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.service-caption>span {
  color: var(--gold);
  font-size: 13px;
}

.service-caption strong,
.service-caption small {
  display: block;
}

.service-caption strong {
  font-size: 19px;
}

.service-caption small {
  color: #c0c1cc;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-item {
  display: grid;
  grid-template-columns: 36px 1fr 34px;
  gap: 12px;
  align-items: center;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .2s, transform .2s;
}

.service-item:hover {
  border-color: rgba(244, 183, 45, .5);
  transform: translateX(4px);
}

.service-item>span {
  color: var(--gold);
  font-size: 12px;
}

.service-item h3 {
  margin-bottom: 3px;
  font-size: 18px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-item b {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.packages {
  background: #efede8;
  color: #11121e;
}

.mode-toggle {
  justify-self: end;
  display: flex;
  padding: 5px;
  border-radius: 12px;
  background: #ddd9d0;
}

.mode-toggle button {
  border: 0;
  border-radius: 9px;
  padding: 10px 15px;
  background: transparent;
  color: #66656b;
  font-weight: 750;
  cursor: pointer;
}

.mode-toggle .active {
  color: white;
  background: #171827;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .16);
}

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

.package-card {
  position: relative;
  padding: 28px;
  border: 1px solid #dbd7ce;
  border-radius: var(--radius);
  background: #faf9f6;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  color: white;
  background: #121326;
  border-color: #2a2b45;
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(15, 16, 31, .2);
}

.popular {
  position: absolute;
  right: 18px;
  top: -12px;
  padding: 6px 10px;
  border-radius: 7px;
  background: var(--gold);
  color: #151622;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.package-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-top span {
  color: #a67300;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.featured .package-top span {
  color: var(--gold);
}

.package-top small {
  color: #777;
}

.featured .package-top small {
  color: #a9aabc;
}

.price {
  padding: 28px 0 22px;
  border-bottom: 1px solid rgba(120, 120, 120, .2);
}

.price>small {
  display: block;
  color: #85848b;
  font-size: 11px;
}

.price strong {
  display: block;
  font-size: 43px;
  letter-spacing: -.055em;
  line-height: 1.15;
}

.price sup {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 5px;
}

.price em {
  color: #99979d;
  font-style: normal;
  font-size: 12px;
  text-decoration: line-through;
}

.package-card ul {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  flex: 1;
}

.package-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13px;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b47a00;
  font-weight: 900;
}

.featured li::before {
  color: var(--gold);
}

.package-card .button {
  width: 100%;
}

.gallery-proof {
  background: linear-gradient(180deg, #0a0b1b, #0d0e20);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 255px;
  gap: 15px;
}

.evidence-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.evidence-item.evidence-feature {
  grid-row: span 2;
}

.evidence-item:last-child {
  grid-column: 1 / -1;
}

.evidence-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.evidence-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 16, .9), transparent 58%);
}

.evidence-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.evidence-item figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 22px 19px;
}

.evidence-item strong,
.evidence-item span {
  display: block;
}

.evidence-item strong {
  font-size: 15px;
}

.evidence-item span {
  margin-top: 2px;
  color: #c2c3ce;
  font-size: 11px;
}

/* Keep the portrait gallery photos close to their natural ratio on desktop. */
@media (min-width: 1081px) {
  .evidence-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(330px, 31vw, 390px);
  }

  .evidence-item.evidence-feature,
  .evidence-item:last-child {
    grid-column: auto;
    grid-row: auto;
  }
}

.chat-testimonials {
  color: #111827;
  background: #ece9e2;
}

.chat-testimonials .section-head p {
  max-width: 690px;
  margin: 18px auto 0;
  color: #66666d;
}

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

.wa-capture {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d7d4cc;
  border-radius: 19px;
  background: #efeae2;
  box-shadow: 0 18px 45px rgba(20, 24, 31, .12);
  display: flex;
  flex-direction: column;
}

.wa-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  color: white;
  background: #075e54;
}

.wa-header img {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  background: #ddd;
}

.wa-header div {
  min-width: 0;
  flex: 1;
}

.wa-header strong,
.wa-header small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-header strong {
  font-size: 13px;
}

.wa-header small {
  font-size: 10px;
  opacity: .78;
  font-weight: 400;
}

.wa-back {
  font-size: 29px;
  line-height: 1;
}

.wa-actions {
  font-size: 18px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.wa-body {
  min-height: 430px;
  flex: 1;
  padding: 18px 17px;
  background-color: #e9e3db;
  background-image: radial-gradient(rgba(83, 94, 82, .08) 1px, transparent 1px), radial-gradient(rgba(83, 94, 82, .05) 1px, transparent 1px);
  background-size: 24px 24px, 28px 28px;
  background-position: 0 0, 12px 14px;
}

.wa-day {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 5px 9px;
  border-radius: 6px;
  color: #5b6765;
  background: #d8ece8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  font-size: 9px;
  font-weight: 700;
}

.wa-bubble {
  position: relative;
  width: fit-content;
  max-width: 83%;
  margin: 0 0 9px;
  padding: 9px 48px 18px 11px;
  border-radius: 8px;
  color: #202423;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
  font-size: 12px;
  line-height: 1.48;
}

.wa-bubble.incoming {
  background: #fff;
  border-top-left-radius: 2px;
}

.wa-bubble.outgoing {
  margin-left: auto;
  background: #d9fdd3;
  border-top-right-radius: 2px;
}

.wa-bubble time {
  position: absolute;
  right: 7px;
  bottom: 4px;
  color: #6d7774;
  font-size: 8px;
  white-space: nowrap;
}

.wa-bubble time b {
  color: #48a6d9;
  letter-spacing: -.14em;
}

.wa-compose {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  color: #66706d;
  background: #f4f3f0;
}

.wa-input {
  flex: 1;
  padding: 8px 13px;
  border-radius: 999px;
  background: white;
  font-size: 11px;
}

.wa-compose b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #00a884;
  font-size: 13px;
}

.faq {
  background: #efede8;
  color: #11121e;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 85px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-item {
  border-bottom: 1px solid #d4d0c7;
}

.faq-item button {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 780;
  cursor: pointer;
}

.faq-item button b {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dedad1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s;
}

.faq-answer p {
  overflow: hidden;
  color: #6c6b71;
  font-size: 14px;
  margin: 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.faq-extra {
  display: none;
}

.accordion.expanded .faq-extra {
  display: block;
}

.faq-more {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #c8c2b6;
  border-radius: 12px;
  color: #3e3d43;
  background: #e4e0d7;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}

.faq-more:hover {
  border-color: #a66f00;
  background: #f7e7bc;
  transform: translateY(-1px);
}

.faq-more b {
  color: #a66f00;
  font-size: 17px;
}

.contact {
  background: #0a0b1b;
}

.contact-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #14152b;
}

.contact-visual {
  min-height: 590px;
  position: relative;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 24, .85), transparent 55%);
}

.contact-overlay {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
}

.contact-overlay span,
.contact-overlay strong {
  display: block;
}

.contact-overlay span {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .11em;
}

.contact-overlay strong {
  font-size: 21px;
}

.contact-form-wrap {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap h2 {
  margin-bottom: 15px;
}

.contact-form-wrap>p {
  color: var(--muted);
  font-size: 14px;
}

.contact-benefits {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact-benefits span {
  color: #d7d8e1;
  font-size: 13px;
}

.contact-benefits span::first-letter {
  color: var(--gold);
}

.contact-whatsapp {
  width: 100%;
  max-width: 410px;
  background: #25d366;
  border-color: #25d366;
  color: #07150d;
}

.site-footer {
  padding: 65px 0 20px;
  background: #070815;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 60px;
}

.footer-grid p {
  color: var(--muted);
  font-size: 12px;
  margin: 13px 0 0;
}

.footer-grid>div>strong {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-grid a:not(.brand) {
  color: var(--gold);
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #6f7185;
  font-size: 10px;
}

.floating-action {
  position: fixed;
  z-index: 88;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
  transition: opacity .22s, transform .22s, box-shadow .22s;
}

.floating-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .4);
}

.floating-whatsapp {
  bottom: 24px;
  min-height: 58px;
  gap: 10px;
  padding: 0 20px 0 16px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: #25d366;
  color: #07150d;
  font-size: 12px;
  font-weight: 850;
}

.floating-whatsapp svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.floating-copy {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.1;
}

.floating-copy small {
  font-size: 9px;
  font-weight: 700;
  opacity: .72;
}

.floating-copy strong {
  font-size: 12px;
  font-weight: 900;
}

.scroll-top {
  bottom: 91px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  color: white;
  background: rgba(15, 16, 36, .92);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.scroll-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 25px 20px 35px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 9, 24, .97);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .brand-logo {
    width: 158px;
    height: 54px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid,
  .contact-shell {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .section-head.split {
    gap: 35px;
  }

  .metric-card {
    padding: 26px;
  }

  .service-layout {
    grid-template-columns: .9fr 1.1fr;
  }

  .trust-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .trust-list>span {
    grid-column: span 2;
  }

  .trust-list>span:nth-of-type(n + 4) {
    grid-column: span 3;
  }

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

  .package-card {
    width: 100%;
    padding: 26px;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card:last-child {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .price strong {
    font-size: 36px;
  }

  .contact-form-wrap {
    padding: 38px;
  }

  .faq-grid {
    gap: 50px;
  }

  .chat-grid {
    gap: 16px;
  }

  .evidence-grid {
    grid-auto-rows: 225px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .floating-copy {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(calc(100% - 32px), 700px);
    --radius: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    height: 68px;
  }

  .main-nav {
    inset: 68px 0 auto;
    max-height: calc(100dvh - 68px);
  }

  .brand-logo {
    width: 142px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 25px;
  }

  .hero-grid,
  .section-head.split,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

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

  .hero-visual {
    max-width: 430px;
    margin-top: 15px;
    justify-self: center;
  }

  .image-shell img {
    height: 485px;
  }

  .floating-card {
    left: 8px;
  }

  .orbit-badge {
    right: 8px;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list>span,
  .trust-list>span:nth-of-type(n + 4) {
    grid-column: span 1;
  }

  .trust-list>span:last-of-type {
    grid-column: 1 / -1;
  }

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

  .section-head.split {
    align-items: start;
  }

  .section-head.split p {
    margin-top: -12px;
  }

  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-card {
    min-height: 210px;
  }

  .metric-number {
    font-size: 50px;
  }

  .metric-card h3 {
    margin-top: 35px;
  }

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

  .service-feature {
    min-height: 480px;
  }

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

  .package-card,
  .package-card:last-child {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    grid-column: auto;
  }

  .mode-toggle {
    justify-self: start;
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .evidence-item.evidence-feature {
    grid-row: span 2;
  }

  .evidence-item:last-child {
    grid-column: 1 / -1;
  }

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

  .wa-body {
    min-height: 390px;
  }

  .faq-intro {
    position: static;
  }

  .contact-visual {
    min-height: 440px;
  }

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

  .scroll-top {
    right: 16px;
    bottom: 82px;
    width: 43px;
    height: 43px;
  }

  .site-footer {
    padding-bottom: 60px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 40px);
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .hero {
    padding: 96px 0 24px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    margin: 28px 0 34px;
  }

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

  .hero-visual {
    width: 100%;
  }

  .image-shell img {
    height: 390px;
  }

  .floating-card {
    left: 8px;
    bottom: 18px;
    width: 185px;
    padding: 13px 15px;
  }

  .floating-card strong {
    font-size: 18px;
  }

  .orbit-badge {
    top: 34px;
    right: 6px;
    width: 64px;
    height: 64px;
    border-width: 5px;
  }

  .orbit-badge strong {
    font-size: 16px;
  }

  .trust-strip {
    padding: 14px 0;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list>span,
  .trust-list>span:nth-of-type(n + 4),
  .trust-list>span:last-of-type {
    min-height: 46px;
    padding: 11px 14px;
    grid-column: auto;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

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

  .metric-card {
    min-height: 175px;
    padding: 24px;
  }

  .metric-number {
    font-size: 52px;
  }

  .metric-card h3 {
    margin-top: 28px;
  }

  .service-feature {
    min-height: 370px;
  }

  .service-item {
    grid-template-columns: 26px 1fr;
    padding: 17px;
  }

  .service-item>b {
    display: none;
  }

  .mode-toggle {
    width: 100%;
  }

  .mode-toggle button {
    flex: 1;
    padding-inline: 10px;
    font-size: 12px;
  }

  .package-card,
  .package-card:last-child {
    padding: 22px;
  }

  .package-top {
    align-items: flex-start;
    gap: 12px;
  }

  .package-top small {
    white-space: nowrap;
  }

  .price {
    padding: 24px 0 20px;
  }

  .price strong {
    font-size: 36px;
  }

  .package-card li {
    padding-block: 7px;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .evidence-item.evidence-feature,
  .evidence-item:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .chat-grid {
    gap: 18px;
  }

  .wa-body {
    min-height: 0;
    padding: 14px 12px;
  }

  .wa-bubble {
    max-width: 92%;
    font-size: 11.5px;
  }

  .faq-item button {
    padding: 18px 0;
    font-size: 14px;
  }

  .contact-shell {
    border-radius: 20px;
  }

  .contact-visual {
    min-height: 360px;
  }

  .contact-form-wrap {
    padding: 30px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

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