:root {
  --bg: #f4f1ea;
  --bg-deep: #ebe4d6;
  --surface: #fffcf7;
  --surface-2: #ffffff;
  --ink: #0c1f36;
  --ink-soft: #3a4d63;
  --muted: #6d7c8f;
  --line: #d8d0c2;
  --line-soft: rgba(216, 208, 194, 0.55);
  --accent: #c9a227;
  --accent-soft: #f3e4b0;
  --accent-dark: #8f7110;
  --success: #1b6b58;
  --success-soft: #d8efe8;
  --navy: #102a46;
  --navy-2: #173456;
  --shadow: 0 20px 50px rgba(12, 31, 54, 0.08);
  --shadow-lg: 0 30px 80px rgba(12, 31, 54, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1160px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
  --gold: #d4a017;
  --gold-2: #e8b923;
  --dark: #07111f;
  --dark-2: #0b1829;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: #fff;
  background: var(--dark);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  display: none;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header — dark premium */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

.page-home .site-header.is-solid {
  position: fixed;
  background: rgba(7, 17, 31, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.logo-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.logo-text span {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer .logo-text strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer .logo-text span {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer .logo-mark {
  color: var(--gold-2);
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1 1 auto;
  justify-content: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: 0.2s var(--ease);
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.header-link i {
  color: var(--gold-2);
  width: 1.15rem;
  height: 1.15rem;
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.15rem;
}

.header-link:hover,
.header-link:focus,
.header-link:active {
  color: #fff;
  background: none;
  border: none;
  box-shadow: none;
  transform: none;
  outline: none;
}

.header-link:hover i,
.header-link:focus i,
.header-link:active i {
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1rem;
  line-height: 1;
}

/* Hero banner — reference style */

.hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 2.2rem;
  color: #fff;
  overflow: hidden;
  background: var(--dark);
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  background-color: #0a1628;
  background-image: linear-gradient(120deg, #0a1628 0%, #13233a 45%, #1a2a22 100%);
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

/* Drop hero photo into /images/hero.jpg — class has-image is added automatically */
.hero-banner__bg.has-image {
  background-image: url("../images/hero.jpg");
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 31, 0.94) 0%,
    rgba(10, 26, 48, 0.82) 28%,
    rgba(12, 34, 58, 0.45) 55%,
    rgba(12, 34, 58, 0.12) 78%,
    rgba(12, 34, 58, 0) 100%
  );
}

.hero-banner__content,
.hero-banner .container {
  position: relative;
  z-index: 1;
}

.hero-banner__content {
  width: min(var(--container), calc(100% - 2rem));
  max-width: none;
  margin: 0 auto 2.4rem;
  text-align: left;
}

.hero-banner__content > * {
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin: 0 0 1.2rem;
  color: #fff;
}

.hero-lead {
  margin: 0 0 1.8rem;
  max-width: 54ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  margin-bottom: 1.5rem;
}

.hero-cta-text--short {
  display: none;
}

@media (max-width: 399px) {
  .hero-cta-text--full {
    display: none;
  }

  .hero-cta-text--short {
    display: inline;
  }
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #141004;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(212, 160, 23, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(212, 160, 23, 0.34);
}

.btn-outline-light {
  background: #1a3157;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  border-radius: 12px;
}

.btn-outline-light:hover {
  background: #223d6a;
  transform: translateY(-2px);
}

.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-location > i {
  margin-top: 0.2rem;
  color: var(--gold-2);
  flex: 0 0 auto;
  font-size: 1.1rem;
}

.hero-location strong,
.hero-location span {
  display: block;
}

.hero-location strong {
  font-size: 0.98rem;
}

.hero-location span {
  margin-top: 0.15rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(8, 16, 28, 0.55);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature:last-child {
  border-right: none;
}

.hero-feature__icon {
  color: var(--gold-2);
  flex: 0 0 auto;
  margin-top: 0.15rem;
  font-size: 1.25rem;
  width: 1.4rem;
  text-align: center;
}

.hero-feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.hero-feature strong {
  color: var(--gold-2);
  font-weight: 800;
}

/* Dark main content (home) */

.dark-main {
  position: relative;
  background:
    radial-gradient(circle at 80% 8%, rgba(212, 160, 23, 0.08), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #0a1628 40%, #07111f 100%);
  color: #fff;
  min-height: 50vh;
}

.dark-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}

.dark-main > * {
  position: relative;
  z-index: 1;
}

.dark-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.dark-section--soft {
  background: rgba(255, 255, 255, 0.015);
}

.dark-section__head {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.dark-section__head h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-bottom: 0.85rem;
}

.dark-section__head p {
  margin: 0 auto;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.68);
}

.dark-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 185, 35, 0.35);
  background: rgba(232, 185, 35, 0.1);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-gold {
  color: var(--gold-2);
}

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

.svc-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 18px;
  background: rgba(16, 32, 54, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 185, 35, 0.28);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.svc-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold-2);
  background: rgba(232, 185, 35, 0.1);
  border: 1px solid rgba(232, 185, 35, 0.18);
  font-size: 1.05rem;
}

.svc-card__price {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(232, 185, 35, 0.12);
  border: 1px solid rgba(232, 185, 35, 0.22);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.svc-card h3 {
  color: #fff;
  margin-bottom: 0.55rem;
}

.svc-card p {
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 1.1rem;
  flex: 1 1 auto;
  font-size: 0.95rem;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.92rem;
}

.svc-card__link i {
  font-size: 0.78rem;
  transition: transform 0.2s var(--ease);
}

.svc-card:hover .svc-card__link i {
  transform: translateX(3px);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.problem-item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(16, 32, 54, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.problem-item__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold-2);
  background: rgba(232, 185, 35, 0.08);
  border: 1px solid rgba(232, 185, 35, 0.22);
  font-size: 1.05rem;
}

.problem-item h3 {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.problem-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.dark-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem 1.3rem;
  border-radius: 16px;
  background: rgba(12, 28, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-cta__text {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.dark-cta__text i {
  color: var(--gold-2);
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  border-radius: 14px;
  background: rgba(232, 185, 35, 0.1);
  border: 1px solid rgba(232, 185, 35, 0.22);
}

.dark-cta__text p {
  margin: 0;
  max-width: 56ch;
}

.dark-cta .btn-gold {
  flex: 0 0 auto;
  border-radius: 12px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  position: relative;
  margin-bottom: 1.6rem;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  border-top: 1px dashed rgba(232, 185, 35, 0.35);
  pointer-events: none;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.2rem;
}

.process-step__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-2);
  background: #0d1b2e;
  border: 1px solid rgba(232, 185, 35, 0.45);
  box-shadow: 0 0 0 6px rgba(7, 17, 31, 0.95);
  font-size: 1.1rem;
}

.process-step__num {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-step h3 {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-card {
  padding: 1.25rem 1.3rem;
  border-radius: 16px;
  background: rgba(16, 32, 54, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-card h3 {
  color: #fff;
  margin-bottom: 0.45rem;
}

.faq-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}


/* Typography */

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.8rem);
  max-width: 13.5ch;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 54ch;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
}

/* Buttons */

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.btn i {
  font-size: 1rem;
  flex: 0 0 auto;
}

.btn-primary {
  background: linear-gradient(180deg, #173456, var(--ink));
  color: #fff;
  box-shadow: 0 14px 28px rgba(12, 31, 54, 0.22);
}

.btn-primary:hover,
.btn-accent:hover,
.btn-whatsapp:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 252, 247, 0.8);
  border-color: var(--line);
  color: var(--ink);
}

.btn-accent {
  background: linear-gradient(180deg, #dfc15a, var(--accent));
  color: #1a1408;
  box-shadow: 0 14px 28px rgba(201, 162, 39, 0.28);
}

.btn-whatsapp {
  background: linear-gradient(180deg, #24856d, var(--success));
  color: #fff;
  box-shadow: 0 14px 28px rgba(27, 107, 88, 0.28);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Surfaces */

.card,
.panel,
.hero-card,
.visual-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.96));
  border: 1px solid rgba(216, 208, 194, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.panel {
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.card::after,
.panel::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:hover::after,
.service-card:hover::after {
  opacity: 1;
}

.card,
.service-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* Hero */

.hero {
  padding: 4.2rem 0 2.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.28);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 750;
  margin-bottom: 1.1rem;
}

.eyebrow-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(27, 107, 88, 0.14);
}

.hero-copy h1 {
  margin-bottom: 1.1rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-points li .check {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--success-soft);
  color: var(--success);
  flex: 0 0 auto;
  font-size: 0.7rem;
}

.hero-stage {
  position: relative;
  min-height: 100%;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.18), transparent 30%),
    linear-gradient(160deg, #102a46 0%, #0c1f36 48%, #134536 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.4rem;
  padding-bottom: 15.5rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.blueprint {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.blueprint svg {
  width: 100%;
  height: 100%;
}

.stamp {
  position: absolute;
  right: 1.2rem;
  top: 5.2rem;
  width: 108px;
  height: 108px;
  border: 3px solid rgba(201, 162, 39, 0.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(12deg);
  background: rgba(12, 31, 54, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 5px rgba(201, 162, 39, 0.18);
  z-index: 2;
}

.stamp span {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.hero-card {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.94));
}

.hero-card.floating {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.hero-card h2,
.hero-card h3 {
  font-size: 1.15rem;
}

.price-list {
  display: grid;
  gap: 0.7rem;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(216, 208, 194, 0.7);
  font-size: 0.92rem;
}

.price-list strong {
  white-space: nowrap;
  color: var(--success);
  font-weight: 800;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.stat {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 24px rgba(12, 31, 54, 0.04);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Sections */

.section {
  padding: 3.8rem 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(235, 228, 214, 0.45));
  border-block: 1px solid var(--line-soft);
  pointer-events: none;
}

.section-alt > .container {
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.section-head p,
.muted,
.card p,
.panel p,
.faq-item p,
.hero-card p {
  color: var(--ink-soft);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

/* Icons */

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(232, 185, 35, 0.1);
  color: var(--gold-2);
  border: 1px solid rgba(232, 185, 35, 0.22);
  font-size: 1.15rem;
}

.icon-badge.green {
  background: linear-gradient(160deg, rgba(27, 107, 88, 0.16), rgba(12, 31, 54, 0.05));
  border-color: rgba(27, 107, 88, 0.18);
  color: var(--success);
}

.icon-badge.navy {
  background: linear-gradient(160deg, rgba(12, 31, 54, 0.12), rgba(12, 31, 54, 0.04));
  color: var(--ink);
}

.service-card .price,
.card .price {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-weight: 800;
  font-size: 0.92rem;
}

.service-card .link,
.card .link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.service-card .link::after,
.card .link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.service-card:hover .link::after,
.card:hover .link::after {
  transform: translateX(3px);
}

.tag {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(12, 31, 54, 0.05);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
  margin-bottom: 0.85rem;
}

/* Steps */

.steps {
  counter-reset: step;
}

.steps .card {
  position: relative;
  padding-top: 3.2rem;
}

.steps .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.15rem;
  left: 1.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
}

.steps .card .icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.95rem;
}

/* Trust */

.trust-panel {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 34%),
    linear-gradient(160deg, #102a46, #0c1f36);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.trust-panel h2,
.trust-panel p {
  color: #fff;
}

.trust-panel p {
  opacity: 0.82;
}

.trust-list,
.check-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li,
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.trust-list li::before,
.check-list li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2 6.4 11l6-6.5' stroke='%231b6b58' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.75rem no-repeat,
    var(--success-soft);
}

.trust-panel .trust-list li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2 6.4 11l6-6.5' stroke='%23f3e4b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.75rem no-repeat,
    rgba(255, 255, 255, 0.1);
}

.check-list a {
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.check-list a:hover {
  border-bottom-color: var(--ink);
}

/* Consult band + footer */

.consult-band {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  color: #fff;
  background: var(--dark);
}

.consult-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1628, #13233a);
  background-size: cover;
  background-position: center;
}

.consult-band__bg.has-image {
  background-image: url("../images/hero.jpg");
}

.consult-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.92) 0%, rgba(5, 12, 22, 0.78) 55%, rgba(5, 12, 22, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 12, 22, 0.35), rgba(5, 12, 22, 0.75));
}

.consult-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.consult-band__copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.consult-band__copy p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.72);
}

.consult-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(10, 22, 40, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.consult-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.consult-form label {
  display: grid;
  gap: 0.4rem;
}

.consult-form label span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.consult-form input:focus,
.consult-form textarea:focus {
  border-color: rgba(232, 185, 35, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.consult-form textarea {
  resize: vertical;
  min-height: 110px;
}

.consult-form .btn-gold {
  width: 100%;
  border-radius: 12px;
  margin-top: 0.2rem;
}

/* Inner pages */

.page-hero {
  padding: 2.6rem 0 2rem;
  position: relative;
  color: #fff;
}

.page-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.45);
}

.page-hero .breadcrumbs a:hover {
  color: #fff;
}

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

.page-hero .dark-badge {
  margin-bottom: 1rem;
}

.page-hero .icon-badge {
  background: rgba(232, 185, 35, 0.1);
  border-color: rgba(232, 185, 35, 0.22);
  color: var(--gold-2);
}

.page-hero .eyebrow,
.page-hero .price-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(232, 185, 35, 0.12);
  border: 1px solid rgba(232, 185, 35, 0.28);
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 800;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  color: #fff;
  max-width: 18ch;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.page-body {
  padding-bottom: 3.5rem;
}

.dark-panel {
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  background: rgba(16, 32, 54, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.dark-panel + .dark-panel {
  margin-top: 1rem;
}

.dark-panel h2,
.dark-panel h3,
.side-card h2,
.side-card h3 {
  color: #fff;
}

.dark-panel p,
.side-card p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.dark-panel .dark-badge,
.side-card .dark-badge {
  margin-bottom: 0.85rem;
}

.side-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(12, 28, 48, 0.95);
  border: 1px solid rgba(232, 185, 35, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.side-card .price-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(232, 185, 35, 0.12);
  border: 1px solid rgba(232, 185, 35, 0.28);
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.side-card .actions {
  flex-direction: column;
}

.side-card .actions .btn {
  width: 100%;
}

.side-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  font-size: 0.92rem;
}

.side-links a:hover {
  color: #fff;
  border-color: rgba(232, 185, 35, 0.28);
  background: rgba(232, 185, 35, 0.08);
}

.side-links a i {
  color: var(--gold-2);
  font-size: 0.75rem;
}

.dark-main .check-list li,
.dark-panel .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.dark-main .check-list li::before,
.dark-panel .check-list li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2 6.4 11l6-6.5' stroke='%23e8b923' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.75rem no-repeat,
    rgba(232, 185, 35, 0.12);
}

.dark-main .note {
  color: rgba(255, 255, 255, 0.45);
}

.price-table-wrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(16, 32, 54, 0.88);
}

.price-table th,
.price-table td {
  padding: 1.05rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-table th {
  background: rgba(8, 18, 32, 0.95);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.price-table td {
  color: rgba(255, 255, 255, 0.78);
}

.price-table td a {
  color: #fff;
  font-weight: 700;
}

.price-table td a:hover {
  color: var(--gold-2);
}

.price-table td strong {
  color: var(--gold-2);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-line + .contact-line {
  margin-top: 0.75rem;
}

.contact-line .icon-badge {
  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(232, 185, 35, 0.1);
  border-color: rgba(232, 185, 35, 0.22);
  color: var(--gold-2);
  font-size: 1rem;
}

.contact-line strong {
  display: block;
  color: #fff;
  margin-bottom: 0.15rem;
}

.contact-line a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.contact-line a:hover {
  color: var(--gold-2);
}

.inner-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.inner-process .process-step {
  text-align: left;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(16, 32, 54, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.inner-process .process-step__icon {
  margin: 0 0 0.9rem;
  box-shadow: none;
}

.inner-process .process-step h3 {
  font-size: 1.05rem;
}

.inner-process .process-step p {
  font-size: 0.92rem;
}

.sticky-card {
  position: sticky;
  top: 96px;
}

.stack > * + * {
  margin-top: 1rem;
}

.faq-item {
  padding: 1.15rem 1.25rem;
}

.faq-item h3 {
  margin-bottom: 0.4rem;
}

/* Table */

.table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 640px;
}

th,
td {
  padding: 1.05rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(216, 208, 194, 0.55);
}

th {
  background: linear-gradient(180deg, #173456, var(--ink));
  color: #fff;
  font-size: 0.92rem;
}

td a {
  font-weight: 700;
}

td a:hover {
  color: var(--success);
}

td strong {
  color: var(--success);
}

/* Contacts */

.contact-box {
  display: grid;
  gap: 1rem;
}

.contact-box a {
  font-weight: 750;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(12, 31, 54, 0.03);
  border: 1px solid var(--line-soft);
}

.contact-row .icon-badge {
  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

/* Footer */

.site-footer {
  padding: 3.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
  background: #050d18;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 1.15fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand > p {
  margin: 0 0 1.2rem;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.95rem;
  transition: 0.2s var(--ease);
}

.footer-social a:hover {
  color: var(--gold-2);
  border-color: rgba(232, 185, 35, 0.45);
  background: rgba(232, 185, 35, 0.08);
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a,
.footer-contacts li > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contacts i {
  color: var(--gold-2);
  width: 1rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 5.8rem;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #fff;
}

.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #24856d, var(--success));
  color: #fff;
  box-shadow: 0 16px 34px rgba(27, 107, 88, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.sticky-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(27, 107, 88, 0.42);
}

.sticky-whatsapp i {
  font-size: 1.65rem;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.reveal {
  animation: rise 0.7s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .header-link span {
    display: none;
  }

  .header-link i {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
    flex-basis: 1.25rem;
  }

  .nav {
    gap: 0;
  }

  .nav a {
    padding: 0.45rem 0.5rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-panel {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 0.7rem 1rem 1.1rem;
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: flex-start;
  }

  .header-panel.open {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .nav a {
    padding: 0.85rem 0.7rem;
  }

  .header-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }

  .header-link {
    justify-content: center;
    padding: 0.7rem 0.2rem;
  }

  .header-link span {
    display: inline;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .hero-feature:nth-child(2n) {
    border-right: none;
  }

  .hero-feature:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .content-grid,
  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid,
  .section-head,
  .svc-grid,
  .problem-grid,
  .process-track,
  .faq-grid,
  .consult-band__inner,
  .consult-form__row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-grid,
  .problem-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .sticky-card {
    position: static;
  }

  h1,
  .page-hero h1,
  .hero-title {
    max-width: none;
  }

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

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

  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon num"
      "icon title"
      "icon text";
    column-gap: 0.9rem;
    text-align: left;
    padding: 0.9rem;
    border-radius: 14px;
    background: rgba(16, 32, 54, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .process-step__icon {
    grid-area: icon;
    margin: 0;
  }

  .process-step__num {
    grid-area: num;
    align-self: end;
  }

  .process-step h3 {
    grid-area: title;
  }

  .process-step p {
    grid-area: text;
  }

  .dark-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .dark-cta .btn-gold {
    width: 100%;
  }
}

@media (min-width: 701px) and (max-width: 960px) {
  .svc-grid,
  .problem-grid,
  .faq-grid,
  .inner-process {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-feature:last-child {
    border-bottom: none;
  }

  .hero-banner {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
  }

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

  .header-link span {
    display: inline;
  }
}
