/* ═══════════════════════════════════════════════════════
   EU COMPANY FORMATION — MAIN STYLESHEET
   Fallback fonts active immediately; Google Fonts load
   asynchronously. Uses CSS custom properties throughout.
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

/* ── CSS Custom Properties ───────────────────────────── */
:root {
  /* Colors */
  --navy:          #0D1B2A;
  --navy-light:    #162234;
  --navy-medium:   #1E2D3F;
  --gold:          #C8973F;
  --gold-light:    #DBA84E;
  --gold-pale:     #F5EDD8;
  --cream:         #FAFAF7;
  --white:         #FFFFFF;
  --gray-50:       #F4F4F0;
  --gray-100:      #E8E8E2;
  --gray-200:      #D1D1C8;
  --gray-400:      #9A9A90;
  --gray-500:      #6A6A62;
  --gray-700:      #3A3A32;
  --whatsapp:      #25D366;
  --whatsapp-dark: #1DB954;
  --warning-bg:    #FFF8EC;
  --warning-text:  #9A7020;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --section-py:    6rem;
  --section-py-sm: 3.5rem;
  --container-px:  1.5rem;

  /* Borders */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.06);
  --shadow-md:  0 4px 16px rgba(13,27,42,0.1), 0 2px 6px rgba(13,27,42,0.06);
  --shadow-lg:  0 12px 40px rgba(13,27,42,0.14), 0 4px 12px rgba(13,27,42,0.08);
  --shadow-xl:  0 24px 64px rgba(13,27,42,0.18), 0 8px 20px rgba(13,27,42,0.1);

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ── Utility ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-light  { background-color: var(--gray-50); }

/* ── Scroll Reveal Animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay   { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn:active { transform: translateY(1px); }

/* Sizes */
.btn-sm  { padding: 0.45rem 1rem;  font-size: 0.85rem; }
.btn-md  { padding: 0.65rem 1.3rem; font-size: 0.9rem; }
.btn-lg  { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* Variants */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
}
.btn-gold:hover {
  background-color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(200,151,63,0.35);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white);
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
}
.btn-navy:hover {
  background-color: var(--navy-light);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: rgba(250,250,247,0.9);
  border: 1.5px solid rgba(250,250,247,0.4);
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
}
.btn-outline:hover {
  border-color: rgba(250,250,247,0.8);
  background-color: rgba(250,250,247,0.08);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
}
.btn-outline-navy:hover {
  border-color: var(--navy);
  background-color: var(--navy);
  color: var(--white);
}

/* ── Logo ────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.logo-accent { color: var(--gold); }
.logo-text-light { color: var(--gray-200); }
.logo-accent-light { color: var(--gold-light); }

/* ── Badge ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
}
.badge-gold {
  background-color: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(200,151,63,0.25);
}
.badge-outline {
  background-color: transparent;
  color: rgba(250,250,247,0.7);
  border: 1px solid rgba(250,250,247,0.3);
}

/* ════════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition-slow);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(13,27,42,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.nav-links {
  display: none;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-500);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
}
.nav-link:hover {
  color: var(--navy);
  background-color: var(--gray-50);
}
.nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
@media (min-width: 768px) {
  .nav-actions { display: flex; }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold); }
.nav-phone:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger:hover { background-color: var(--gray-100); }
.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}
.mobile-link:hover { background-color: var(--gray-50); }
.mobile-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--navy);
  overflow: hidden;
  padding: 5rem 0 6rem;
}
@media (min-width: 768px) { .hero { padding: 7rem 0 8rem; } }

/* Subtle geometric pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 20%, rgba(200,151,63,0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(200,151,63,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 420px;
    gap: 4rem;
  }
}

.hero-content { max-width: 600px; }

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subheading {
  font-size: 1.05rem;
  color: rgba(250,250,247,0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-ctas .btn-whatsapp,
.hero-ctas .btn-outline {
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(250,250,247,0.6);
  letter-spacing: 0.01em;
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

/* Hero Card Stack */
.hero-visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 280px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 300px;
}
.hero-card-back {
  background: var(--navy-medium);
  border: 1px solid rgba(200,151,63,0.2);
  top: 0;
  right: 0;
  transform: rotate(4deg);
  box-shadow: var(--shadow-lg);
}
.hero-card-front {
  background: var(--white);
  border: 1px solid var(--gray-100);
  bottom: 0;
  left: 0;
  box-shadow: var(--shadow-xl);
}
.hc-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.hc-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gray-200);
}
.hc-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}
.hc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}
.hc-country {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hc-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.hc-price strong { color: var(--gold); }
.hc-includes {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.hc-includes span {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.hc-cta-bar {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow-light { color: rgba(200,151,63,0.75); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title-light { color: var(--white); }
.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-subtitle-light { color: rgba(250,250,247,0.6); }

/* ════════════════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════════════════ */
.why-section {
  padding: var(--section-py) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.why-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.why-card-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.why-card-text strong { color: var(--navy); font-weight: 600; }

/* ════════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════════ */
.services-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-featured {
  background: var(--navy);
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: var(--shadow-xl);
}
.service-card-featured:hover {
  box-shadow: 0 28px 72px rgba(13,27,42,0.22), 0 8px 24px rgba(200,151,63,0.15);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
}

.service-card-header {
  padding: 2rem 2rem 1.25rem;
}
.option-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.service-card-featured .option-number { color: rgba(255,255,255,0.12); }
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.service-card-featured .service-card-title { color: var(--white); }
.service-card-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.55;
}
.service-card-featured .service-card-subtitle { color: rgba(250,250,247,0.6); }

.service-card-body {
  padding: 0 2rem;
  flex: 1;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-100);
}
.service-card-featured .feature-list { border-top-color: rgba(255,255,255,0.12); }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.service-card-featured .feature-list li { color: rgba(250,250,247,0.85); }
.feature-list li svg { flex-shrink: 0; margin-top: 2px; }

.feature-list-warning {
  color: var(--warning-text) !important;
}
.feature-list-note {
  color: var(--gray-500) !important;
}
.feature-list li strong { font-weight: 600; color: inherit; }

.service-card-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card-featured .service-card-footer { border-top-color: rgba(255,255,255,0.12); }

.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.price-from {
  font-size: 0.82rem;
  color: var(--gray-400);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.service-card-featured .price-amount { color: var(--gold-light); }
.price-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  width: 100%;
  line-height: 1.4;
}
.service-card-featured .price-note { color: rgba(250,250,247,0.45); }

/* ════════════════════════════════════════════════════════
   REQUIREMENTS SECTION
════════════════════════════════════════════════════════ */
.requirements-section {
  padding: var(--section-py) 0;
}
.requirements-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .requirements-inner { grid-template-columns: 380px 1fr; gap: 4rem; }
}
.requirements-text .section-title { text-align: left; }
.requirements-text .section-subtitle { text-align: left; margin: 0 0 1.75rem; }

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.req-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.req-item:first-child { padding-top: 0; }
.req-item:last-child { border-bottom: none; }

.req-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.req-item-payment .req-icon {
  background: rgba(13,27,42,0.06);
  color: var(--navy);
}

.req-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.req-desc {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-section {
  padding: var(--section-py) 0;
  background: var(--navy);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
}
@media (min-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
  }
}

.step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
@media (min-width: 900px) {
  .step { padding: 2rem 1.5rem; }
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,151,63,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.84rem;
  color: rgba(250,250,247,0.55);
  line-height: 1.65;
}

.step-arrow {
  display: none;
  color: var(--gold);
  opacity: 0.4;
}
@media (min-width: 900px) {
  .step-arrow { display: block; flex-shrink: 0; }
}

/* ════════════════════════════════════════════════════════
   PRICING TABLE
════════════════════════════════════════════════════════ */
.pricing-section {
  padding: var(--section-py) 0;
}

.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
}

.pricing-table thead tr {
  background: var(--navy);
}
.pricing-table thead th {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  vertical-align: bottom;
  color: rgba(250,250,247,0.7);
  font-weight: 400;
  font-size: 0.8rem;
}
.pt-feature-col {
  text-align: left !important;
  width: 180px;
}
.pt-option-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,151,63,0.7);
  margin-bottom: 0.3rem;
}
.pt-option-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.pt-badge-wrap {
  display: block;
  margin-bottom: 0.4rem;
}
.pt-popular-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.pt-opt2 {
  background: rgba(200,151,63,0.07);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.pt-featured {
  background: rgba(200,151,63,0.07) !important;
}
thead .pt-opt2 {
  background: rgba(200,151,63,0.12);
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table tbody tr:hover td,
.pricing-table tbody tr:hover th {
  background-color: var(--gray-50);
}
.pricing-table tbody tr:hover .pt-featured,
.pricing-table tbody tr:hover .pt-opt2 {
  background-color: rgba(200,151,63,0.1) !important;
}

.pricing-table tbody th,
.pricing-table tbody td {
  padding: 0.9rem 1.25rem;
  text-align: center;
  vertical-align: middle;
  color: var(--gray-700);
}
.pricing-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
}

.pt-yes { color: var(--whatsapp); font-size: 1.1rem; font-weight: 700; }
.pt-no  { color: var(--gray-400); font-size: 1.1rem; }
.pt-featured strong { color: var(--gold); font-size: 1.1rem; }
.pt-featured small  { display: block; font-size: 0.75rem; color: var(--gray-400); margin-top: 0.15rem; }

.pt-cta-row td { padding: 1.25rem; }
.pt-cta-row .pt-featured { background: rgba(200,151,63,0.1); }

.pricing-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--gray-400);
  text-align: center;
}

/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--navy-light);
}

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-light); }
.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 1.5rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: rgba(250,250,247,0.65);
  line-height: 1.75;
}
.faq-answer strong { color: rgba(250,250,247,0.9); font-weight: 600; }

/* ════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-py) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr 420px; gap: 4rem; }
}

.contact-lead {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.contact-ctas .btn { font-size: 1rem; padding: 0.85rem 1.8rem; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,63,0.15);
  background: var(--white);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: 1fr 2fr; gap: 3rem; }
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(250,250,247,0.4);
  line-height: 1.65;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(250,250,247,0.6);
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--gold-light); }
.footer-contact-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

.footer-nav-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.45);
  margin-bottom: 0.85rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(250,250,247,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(250,250,247,0.35);
  white-space: nowrap;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(250,250,247,0.28);
  line-height: 1.55;
  max-width: 550px;
}

/* ════════════════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .whatsapp-float { display: none; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero { padding: 4rem 0 5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 319px) {
  html { font-size: 14px; }
  .container { padding: 0 1rem; }
}

/* Ultra-wide */
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
  html { font-size: 17px; }
}

/* ── Print ───────────────────────────────────────────── */
@media print {
  .site-header,
  .whatsapp-float,
  .hero-bg-pattern,
  .btn-whatsapp { display: none; }
  body { color: #000; background: #fff; }
  a::after { content: " (" attr(href) ")"; }
}

/* ── Focus for keyboard nav ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Selection color ─────────────────────────────────── */
::selection {
  background: var(--gold-pale);
  color: var(--navy);
}
