:root {
  --bg: #07090d;
  --bg-soft: #0c1218;
  --text: #f4f1e8;
  --muted: #9ea7b4;
  --gold: #c7b08a;
  --gold-strong: #e0c79c;
  --teal: #61c8c7;
  --teal-strong: #8de2da;
  --shadow-gold: 0 0 60px rgba(199, 176, 138, 0.18);
  --shadow-teal: 0 0 60px rgba(97, 200, 199, 0.12);
  --radius-lg: 22px;
  --container: 1200px;
  --nav-h: 78px;
  --grid: linear-gradient(rgba(97,200,199,0.06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(97,200,199,0.06) 1px, transparent 1px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(97, 200, 199, 0.10), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(199, 176, 138, 0.10), transparent 28%),
    linear-gradient(180deg, #05070a 0%, #07090d 42%, #091018 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grid);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  pointer-events: none;
  opacity: 0.4;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,13,0.15), rgba(7,9,13,0.55));
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 15, 0.58);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(199,176,138,0.10), rgba(97,200,199,0.08));
  border: 1px solid rgba(199,176,138,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
  flex-shrink: 0;
}

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

.brand-copy strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  font-size: 0.96rem;
  color: #cfd5df;
  position: relative;
  transition: color 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.menu a:hover { color: white; }
.menu a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  padding: 56px 0 40px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.hero-left {
  max-width: 680px;
  padding-top: 0;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.glow.gold { background: rgba(199,176,138,0.18); }
.glow.teal { background: rgba(97,200,199,0.16); }
.glow-1 { width: 320px; height: 320px; top: 4%; left: 4%; }
.glow-2 { width: 360px; height: 360px; right: 0; bottom: 8%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(199,176,138,0.18);
  background: rgba(255,255,255,0.03);
  color: var(--gold-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: 0 0 16px rgba(97,200,199,0.5);
}

.title {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 9.5ch;
}

.title .accent {
  background: linear-gradient(90deg, var(--gold-strong), #f2e5cc 45%, var(--teal-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
  max-width: 620px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary {
  color: #0a0d12;
  background: linear-gradient(135deg, var(--gold-strong), #f0dbc0);
  box-shadow: 0 20px 45px rgba(199,176,138,0.18);
}

.btn-secondary {
  border: 1px solid rgba(97,200,199,0.24);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.hero-stats,
.services-grid,
.process-grid,
.case-grid,
.packages-grid {
  display: grid;
  gap: 20px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  gap: 16px;
}

/* ALIANZAS */
.hero-alliances {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.alliances-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alliances-head span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-strong);
  letter-spacing: 0.04em;
}

.alliances-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.alliances-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 28px 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(199,176,138,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 40px rgba(0,0,0,0.18);
}

.alliances-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(45deg, transparent 46%, rgba(97,200,199,0.08) 47%, rgba(97,200,199,0.08) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(199,176,138,0.08) 47%, rgba(199,176,138,0.08) 53%, transparent 54%);
  background-size: 70px 70px;
}

.alliances-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.alliance-seal {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.seal-inner {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.04), rgba(0,0,0,0.94)),
    linear-gradient(145deg, rgba(199,176,138,0.05), rgba(97,200,199,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.seal-inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(199,176,138,0.12);
}

.seal-inner::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(97,200,199,0.10);
  border-radius: 10px;
  transform: rotate(45deg);
}

.alliance-seal:hover .seal-inner {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(199,176,138,0.24);
  box-shadow: 0 0 24px rgba(97,200,199,0.08), 0 16px 34px rgba(0,0,0,0.24);
}

.seal-featured .seal-inner {
  background:
    radial-gradient(circle at 30% 30%, rgba(199,176,138,0.12), rgba(0,0,0,0.94)),
    linear-gradient(145deg, rgba(199,176,138,0.08), rgba(97,200,199,0.05));
  border-color: rgba(199,176,138,0.18);
}

.seal-inner img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}

.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.packages-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.stat-card,
.service-card,
.process-card,
.case-card,
.faq-item,
.contact-card,
.package-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover,
.service-card:hover,
.process-card:hover,
.case-card:hover,
.faq-item:hover,
.contact-card:hover,
.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,176,138,0.18);
  box-shadow: var(--shadow-gold), var(--shadow-teal);
}

.stat-card,
.service-card,
.process-card,
.case-card,
.contact-card,
.package-card {
  padding: 26px;
}

.stat-card {
  min-height: 150px;
}

.stat-card h3,
.service-card h3,
.process-card h3,
.case-card h3,
.contact-card h3,
.package-card h3 {
  margin: 0 0 12px;
}

.stat-card p,
.service-card p,
.process-card p,
.case-card p,
.contact-card p,
.package-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  padding: 110px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 16px 0 16px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  border: 1px solid rgba(199,176,138,0.18);
  background: linear-gradient(180deg, rgba(199,176,138,0.08), rgba(97,200,199,0.06));
  margin-bottom: 22px;
  font-size: 1.3rem;
}

.service-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-strong);
  font-weight: 600;
}

.process-number {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-strong);
  margin-bottom: 12px;
  display: inline-block;
}

.case-tag,
.package-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--teal-strong);
  background: rgba(97,200,199,0.08);
  border: 1px solid rgba(97,200,199,0.12);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.package-card.featured {
  border-color: rgba(199,176,138,0.24);
  box-shadow: var(--shadow-gold);
}

.package-text {
  margin-bottom: 18px !important;
}

.package-list {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.packages-section {
  background: rgba(255,255,255,0.02);
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -12px;
  padding-top: 0;
}

.orbital-shell {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform: none;
}

.orbital-ring,
.orbital-ring::before,
.orbital-ring::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.orbital-ring {
  border: 1px solid rgba(199,176,138,0.16);
  animation: spin 20s linear infinite;
}

.orbital-ring::before {
  content: "";
  inset: 28px;
  border: 1px dashed rgba(97,200,199,0.18);
  animation: spinReverse 14s linear infinite;
}

.orbital-ring::after {
  content: "";
  inset: 62px;
  border: 1px solid rgba(255,255,255,0.05);
}

.logo-core {
  position: relative;
  width: 68%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(199,176,138,0.14), rgba(7,9,13,0.55) 58%), #030508;
  border: 1px solid rgba(199,176,138,0.16);
  display: grid;
  place-items: center;
  box-shadow: 0 0 90px rgba(97,200,199,0.08), inset 0 0 40px rgba(199,176,138,0.08);
  overflow: hidden;
}

.logo-core::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: conic-gradient(from 180deg, transparent, rgba(97,200,199,0.08), transparent, rgba(199,176,138,0.12), transparent);
  animation: spin 12s linear infinite;
}

.logo-core img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.55));
  animation: float 5s ease-in-out infinite;
  border-radius: 50%;
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(10,14,20,0.84);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  font-size: 0.92rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.28);
  animation: float 4s ease-in-out infinite;
}

.floating-badge strong {
  display: block;
  color: var(--gold-strong);
  font-size: 1rem;
  margin-bottom: 4px;
}

.badge-1 {
  top: 6%;
  left: -6%;
}

.badge-2 {
  right: -12%;
  top: 36%;
  animation-delay: 0.8s;
}

.badge-3 {
  bottom: 4%;
  left: 2%;
  animation-delay: 1.6s;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: white;
  font: inherit;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq-question span:first-child {
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  background: rgba(199,176,138,0.08);
  border: 1px solid rgba(199,176,138,0.12);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-point strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-strong);
}

form {
  display: grid;
  gap: 16px;
}

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

.field-row > div:only-child {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: #d5dae1;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6,8,12,0.85);
  color: white;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(97,200,199,0.3);
  box-shadow: 0 0 0 4px rgba(97,200,199,0.10);
  transform: translateY(-1px);
}

textarea {
  min-height: 146px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  min-height: 24px;
}

.form-note.success {
  color: #9fe7c8;
}

.form-note.error {
  color: #ffb3b3;
}

.footer {
  padding: 28px 0 46px;
  color: #99a3af;
}

.footer-line {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d7dde6;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: white;
  border-color: rgba(199,176,138,0.28);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
  z-index: 60;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 700;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 44px rgba(0,0,0,0.35);
}

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

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-wrap,
  .packages-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 44px 0 36px;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
  }

  .title {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
  }

  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 0;
    padding-top: 0;
  }

  .orbital-shell {
    width: min(100%, 340px);
    transform: none;
  }

  .hero-alliances {
    margin-top: 28px;
    justify-items: center;
  }

  .alliances-head {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .menu {
    position: fixed;
    top: calc(var(--nav-h) + 10px);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(9, 12, 18, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding: 34px 0 34px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .title {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
    line-height: 0.98;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy,
  .subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .btn-row {
    justify-content: center;
  }

  .hero-stats,
  .services-grid,
  .process-grid,
  .case-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
    margin-top: 0;
    padding-top: 0;
  }

  .orbital-shell {
    width: min(100%, 270px);
    transform: none;
  }

  .logo-core {
    width: 72%;
  }

  .floating-badge {
    font-size: 0.72rem;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .floating-badge strong {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }

  .badge-1 {
    top: 5%;
    left: -2%;
  }

  .badge-2 {
    top: 34%;
    right: -20%;
  }

  .badge-3 {
    bottom: 3%;
    left: 2%;
  }

  .hero-alliances {
    margin-top: 26px;
    justify-items: center;
  }

  .alliances-head {
    text-align: center;
  }

  .alliances-panel {
    width: min(100%, 320px);
    padding: 22px 16px;
  }

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

  .seal-inner {
    width: 96px;
    height: 96px;
  }

  .section {
    padding: 86px 0;
  }

  .social-links {
    justify-content: center;
  }

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

.home-focus {
  padding-top: 36px;
}

.home-cta {
  padding-top: 10px;
}

.home-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-cta-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.home-cta-card p {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .home-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .home-focus {
    padding-top: 10px;
  }

  .home-cta {
    padding-top: 0;
  }

  .home-cta-card {
    text-align: center;
    align-items: center;
  }

  .home-cta-card p {
    max-width: 100%;
  }
}

.page-hero {
  padding-bottom: 24px;
}

.page-hero-head {
  max-width: 900px;
}

.page-title {
  margin: 16px 0 16px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.accent-text {
  background: linear-gradient(90deg, var(--gold-strong), #f2e5cc 45%, var(--teal-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-main,
.process-section,
.solutions-section,
.faq-short-section,
.services-cta {
  padding-top: 24px;
}

.service-meta {
  margin-top: 18px;
  color: var(--gold-strong);
  font-size: 0.88rem;
  line-height: 1.6;
}

.services-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.services-cta-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.services-cta-card p {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .services-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .page-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
    line-height: 0.98;
  }

  .services-main,
  .process-section,
  .solutions-section,
  .faq-short-section,
  .services-cta {
    padding-top: 8px;
  }

  .services-cta-card {
    text-align: center;
    align-items: center;
  }

  .services-cta-card p {
    max-width: 100%;
  }
}

.clients-main,
.trust-section,
.clients-cta,
.contact-page-section {
  padding-top: 24px;
}

.clients-wall {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(199,176,138,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 40px rgba(0,0,0,0.18);
  padding: 28px 24px;
}

.clients-wall-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(45deg, transparent 46%, rgba(97,200,199,0.08) 47%, rgba(97,200,199,0.08) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(199,176,138,0.08) 47%, rgba(199,176,138,0.08) 53%, transparent 54%);
  background-size: 70px 70px;
}

.clients-wall-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.client-totem {
  text-align: center;
}

.client-totem h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.client-totem p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.client-totem-inner {
  width: 136px;
  height: 136px;
  margin: 0 auto;
  border-radius: 28px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.04), rgba(0,0,0,0.94)),
    linear-gradient(145deg, rgba(199,176,138,0.05), rgba(97,200,199,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.client-totem-inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(199,176,138,0.12);
}

.client-totem-inner::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(97,200,199,0.10);
  border-radius: 12px;
  transform: rotate(45deg);
}

.client-totem:hover .client-totem-inner {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(199,176,138,0.24);
  box-shadow: 0 0 24px rgba(97,200,199,0.08), 0 16px 34px rgba(0,0,0,0.24);
}

.client-totem-featured .client-totem-inner {
  background:
    radial-gradient(circle at 30% 30%, rgba(199,176,138,0.12), rgba(0,0,0,0.94)),
    linear-gradient(145deg, rgba(199,176,138,0.08), rgba(97,200,199,0.05));
  border-color: rgba(199,176,138,0.18);
}

.client-totem-inner img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}

.contact-extra-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1080px) {
  .clients-wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .clients-main,
  .trust-section,
  .clients-cta,
  .contact-page-section {
    padding-top: 8px;
  }

  .clients-wall {
    padding: 22px 16px;
  }

  .clients-wall-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .client-totem-inner {
    width: 116px;
    height: 116px;
  }

  .contact-extra-links {
    justify-content: center;
  }
}

.home-focus {
  padding-top: 28px;
}

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

.home-cta {
  padding-top: 0;
}

.home-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-cta-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.home-cta-card p {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .home-focus {
    padding-top: 8px;
  }

  .home-cta-card {
    text-align: center;
    align-items: center;
  }

  .home-cta-card p {
    max-width: 100%;
  }
}

.faq-page-section {
  padding-top: 24px;
}

@media (max-width: 820px) {
  .faq-page-section {
    padding-top: 8px;
  }
}

.client-link-card {
  display: block;
  cursor: pointer;
}

.client-link-card h3,
.client-link-card p {
  transition: color 0.3s ease;
}

.client-link-card:hover h3 {
  color: var(--gold-strong);
}

.client-link-card:hover p {
  color: var(--text);
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.price-row h3 {
  margin: 0;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 176, 138, 0.08);
  border: 1px solid rgba(199, 176, 138, 0.16);
  color: var(--gold-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.price-tag-package {
  background: rgba(97, 200, 199, 0.08);
  border: 1px solid rgba(97, 200, 199, 0.16);
  color: var(--teal-strong);
}

.pricing-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .price-row {
    align-items: center;
    text-align: center;
  }

  .price-tag,
  .price-tag-package {
    margin: 0 auto;
  }

  .pricing-note {
    text-align: center;
  }
}

.package-price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.package-price-block h3 {
  margin: 0;
}

.price-old {
  color: rgba(244, 241, 232, 0.52);
  font-size: 0.96rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(224, 199, 156, 0.65);
}

.launch-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(224, 199, 156, 0.10);
  border: 1px solid rgba(224, 199, 156, 0.22);
  color: var(--gold-strong);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.monthly-price {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.monthly-price strong {
  color: var(--teal-strong);
}

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

.maintenance-note strong {
  color: var(--gold-strong);
}

@media (max-width: 820px) {
  .package-price-block {
    align-items: center;
    text-align: center;
  }

  .launch-price {
    margin: 0 auto;
  }
}