/* =============================================
   NEOLO 2026 — CSS Central
   Paleta: #B3DC1F (teal) · #beeea2 (lime) · #4c4c4c (texto)
   Fuentes: system-ui (zero latencia, zero CLS)
   ============================================= */

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

:root {
  --teal:      #B3DC1F;
  --teal-dark: #009e84;
  --lime:      #beeea2;
  --lime-dark: #a8e088;
  --text:      #1a1a2e;
  --text-muted:#5c6272;
  --border:    #e2e8f0;
  --bg-light:  #f8fffe;
  --white:     #ffffff;
  --danger:    #e53e3e;
  --gold:      #d97706;
  --radius:    10px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --font: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --header-h: 64px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: visible;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 34px; width: auto; display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.header-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.header-nav a:hover, .header-nav a.active {
  color: var(--teal);
  background: rgba(0,188,156,.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-outline {
  font-size: .85rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: border-color .15s, color .15s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-primary {
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 7px;
  background: var(--teal);
  color: var(--white);
  white-space: nowrap;
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-icon-only { padding: 6px; background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; border-radius: 7px; }
.btn-icon-only:hover { background: transparent; transform: none; border-color: var(--teal); color: var(--teal); }

/* Country selector */
.country-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s;
  user-select: none;
  line-height: 1;
}
.country-selector:hover { border-color: var(--teal); }
.country-selector .country-flag { font-size: 1.15rem; line-height: 1; }
.country-selector::after { content: '▾'; font-size: .6rem; color: var(--text-muted); }

.country-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 520px;
  padding: 8px 0 12px;
  z-index: 1200;
}
.country-dropdown .country-group-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 8px;
}
.country-selector.open .country-dropdown { display: block; }

.country-group-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 10px 16px 4px;
  border-top: 1px solid var(--border);
}
.country-group-label:first-child { border-top: none; padding-top: 4px; }
.country-dropdown a.current { color: var(--teal); font-weight: 700; }

.country-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: .875rem;
  color: var(--text);
  transition: background .12s;
}
.country-dropdown a:hover { background: var(--bg-light); }
.country-dropdown a .flag { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  transition: background .12s;
}
.mobile-menu a:hover { background: var(--bg-light); color: var(--teal); }


/* --- Mobile menu top action + country --- */
.mobile-top-action {
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--teal);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.mobile-contact-btn:hover { background: #009e83; }
.mobile-country-wrap {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-country-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 0 4px;
}
.mobile-country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px 0;
}
.mobile-country-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1.2rem;
  text-decoration: none;
  background: var(--bg-light);
  transition: border-color .12s, background .12s;
}
.mobile-country-list a:hover { border-color: var(--teal); background: #f0fdf9; }
.mobile-country-list a.current { border-color: var(--teal); background: #f0fdf9; }
/* --- Page offset for fixed header --- */
.page-body { padding-top: var(--header-h); }

/* --- Hero Section --- */
.hero {
  background: #FBFBF8;
  padding: 80px 20px 70px;
  text-align: center;
}
/* Light hero (default — sin hero-bg-*): texto oscuro */
.hero:not([class*="hero-bg-"]) h1 { color: var(--text); }
.hero:not([class*="hero-bg-"]) .hero-sub { color: var(--text-muted); }
.hero:not([class*="hero-bg-"]) .trust-item { color: var(--text-muted); }
.hero:not([class*="hero-bg-"]) .hero-badge {
  background: rgba(179,220,31,.10);
  color: var(--teal);
  border: 1px solid var(--teal);
  backdrop-filter: none;
}
.hero:not([class*="hero-bg-"]) .btn-hero-primary {
  background: var(--teal);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(179,220,31,.4);
}
.hero:not([class*="hero-bg-"]) .btn-hero-primary:hover { box-shadow: 0 8px 28px rgba(179,220,31,.5); }
.hero:not([class*="hero-bg-"]) .btn-hero-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,.18);
}
.hero:not([class*="hero-bg-"]) .btn-hero-secondary:hover { background: rgba(0,0,0,.06); }
.hero:not([class*="hero-bg-"]) .hero-rating {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.1);
  backdrop-filter: none;
}
.hero:not([class*="hero-bg-"]) .hero-rating strong { color: var(--text); }
.hero:not([class*="hero-bg-"]) .hero-rating-sep { color: var(--border); }
.hero:not([class*="hero-bg-"]) .hero-rating-count { color: var(--text-muted); }
.hero:not([class*="hero-bg-"]) .hero-logo-img { filter: none; opacity: 1; }
/* Hero background variants */
.hero-bg-dark    { background: linear-gradient(145deg, #0f1f35 0%, #006b57 100%); }
.hero-bg-purple  { background: linear-gradient(145deg, #1e1248 0%, #064e3b 100%); }
.hero-bg-slate   { background: linear-gradient(145deg, #1e293b 0%, #0f766e 100%); }
.hero-bg-ocean   { background: linear-gradient(145deg, #0c2340 0%, #065f46 100%); }
.hero-bg-forest  { background: linear-gradient(145deg, #134e2b 0%, #B3DC1F 100%); }
.hero-bg-teal    { background: linear-gradient(145deg, #009e82 0%, #007a65 100%); }
.hero-bg-carbon  { background: linear-gradient(145deg, #0a0f0e 0%, #0d261d 100%); }
.hero-bg-midnight { background: linear-gradient(145deg, #09090b 0%, #052e16 100%); }
.hero-bg-ember   { background: linear-gradient(145deg, #7c2d12 0%, #064e3b 100%); }
.hero-bg-sunrise { background: linear-gradient(145deg, #9a3412 0%, #14532d 100%); }
.hero-bg-jade    { background: linear-gradient(145deg, #064e3b 0%, #B3DC1F 100%); }
.hero-bg-royal   { background: linear-gradient(145deg, #0f2358 0%, #065f46 100%); }

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-partner-logo {
  margin-bottom: 18px;
}
.hero-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.25);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--text);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.92);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas .btn-hero-primary {
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--text);
  color: var(--white);
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero-ctas .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

.hero-ctas .btn-hero-secondary {
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
  transition: background .15s;
}
.hero-ctas .btn-hero-secondary:hover { background: rgba(255,255,255,.3); }

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 500;
}
.trust-item .icon { font-size: 1.1rem; color: var(--teal); }
.hero:not([class*="hero-bg-"]) .trust-item .icon { color: var(--text); }
.trust-item .icon svg { width: 18px; height: 18px; vertical-align: middle; }
.trust-item strong { font-weight: 700; }

/* Stars */
.stars { color: #ffc107; letter-spacing: 1px; }

/* --- Section base --- */
.section {
  padding: 72px 20px;
}
.section-alt { background: var(--bg-light); }

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header .pricing-currency-note {
  font-size: 13px;
  color: var(--text-muted);
  opacity: .45;
  margin-top: 4px;
}

/* --- Pricing --- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--border);
  border-radius: 40px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle button {
  font-size: .875rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 36px;
  background: transparent;
  color: var(--text-muted);
  transition: all .18s;
  position: relative;
}
.pricing-toggle button.active {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}

.pricing-toggle .discount-badge {
  font-size: .65rem;
  font-weight: 700;
  background: var(--teal);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  vertical-align: middle;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid--1 {
  grid-template-columns: minmax(0, 400px);
  justify-content: center;
}
.pricing-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.pricing-grid--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pricing-grid--5 .plan-card {
  padding: 24px 16px;
}
.pricing-grid--5 .plan-name {
  font-size: 18px;
}
.pricing-grid--5 .plan-price {
  font-size: 32px;
}
.pricing-grid--5 .plan-feature {
  font-size: 13px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  min-width: 0;
  container-type: inline-size;
}
.pricing-card .plan-cta:not(.plan-cta--top) { margin-top: auto; }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 40px rgba(0,188,156,.2);
}

.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-name {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card.featured .plan-name { color: var(--teal); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price .currency { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); margin-top: 6px; }
.plan-price .amount { font-size: clamp(1.2rem, 11cqi, 2.8rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.plan-price .period { font-size: .85rem; color: var(--text-muted); }

.plan-original {
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 6px;
}
.plan-renewal {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 4px;
  text-align: left;
}

.plan-storage {
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  overflow-wrap: break-word;
  word-break: break-word;
}

.plan-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text);
}
.plan-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-features li.feat-disabled {
  opacity: .38;
  text-decoration: line-through;
}
.plan-features li.feat-disabled::before {
  content: '✕';
  color: #aaa;
  font-weight: 400;
}

.plan-cta {
  display: block;
  text-align: center;
  font-size: .83rem;
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 9px;
  background: var(--border);
  color: var(--text);
  white-space: nowrap;
  transition: all .18s;
}
.plan-cta:hover { background: var(--text); color: var(--white); }
.pricing-card.featured .plan-cta { background: var(--teal); color: var(--white); }
.pricing-card.featured .plan-cta:hover { background: var(--text); color: var(--white); }
.plan-cta--top { margin-top: 12px; margin-bottom: 12px; } 

.pricing-footer {
  text-align: center;
  margin-top: 32px;
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-footer span { display: flex; align-items: center; gap: 6px; }

/* --- Performance metrics --- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow .2s;
}
.metric-card:hover { box-shadow: var(--shadow); }

.metric-icon { font-size: 2rem; margin-bottom: 12px; display: flex; justify-content: center; align-items: center; color: var(--teal); }
.metric-icon svg { display: block; }
.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.metric-label { font-size: .85rem; color: var(--text-muted); font-weight: 500; }

/* --- Comparison table --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  background: var(--bg-light);
}

.compare-table th.col-neolo {
  background: rgba(0,188,156,.08);
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.compare-table .val-neolo {
  font-weight: 700;
  color: var(--teal);
}

/* ── comparison icons ─────────────────────────────────────────────────── */
.cmp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cmp-check  { background: var(--teal); color: #fff; }
.cmp-cross  { background: #f3f4f6;     color: #9ca3af; }
.cmp-partial{ background: #fef3c7;     color: #d97706; }
.cmp-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.cmp-label {
  font-size: .82rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.val-neolo .cmp-label { color: var(--teal); font-weight: 600; }

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(0,188,156,.03); }

/* --- Platform cards (tienda online comparativa) --- */
.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}
.platform-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.platform-card.pc-featured {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(0,188,156,.12);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.pc-subtitle {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}
.pc-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.pc-features li {
  font-size: .85rem;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
}
.pc-features li:last-child { border-bottom: none; }
.pc-check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pc-cta { width: 100%; text-align: center; margin-top: auto; }
@media (max-width: 900px) {
  .platform-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .platform-cards-grid { grid-template-columns: 1fr; }
}

/* --- Domain search + table --- */
/* --- domain_hero search --- */
.hero-domain-search { width: 100%; max-width: 660px; margin: 32px auto 0; }
.hero-search-wrap { max-width: 660px; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.hero-search-wrap:focus-within { border-color: rgba(255,255,255,.7); }
.hero-search-wrap .domain-search-input { color: #fff; }
.hero-search-wrap .domain-search-input::placeholder { color: rgba(255,255,255,.6); }
.hero-search-wrap .domain-search-icon { color: rgba(255,255,255,.6); }
/* when hero has no bg (light), use normal styling */
.hero:not([class*="hero-bg"]) .hero-search-wrap { background: var(--bg-white); border-color: var(--border); }
.hero:not([class*="hero-bg"]) .hero-search-wrap .domain-search-input { color: var(--text); }
.hero:not([class*="hero-bg"]) .hero-search-wrap .domain-search-input::placeholder { color: var(--text-muted); }
.hero:not([class*="hero-bg"]) .hero-search-wrap .domain-search-icon { color: var(--text-muted); }

/* --- domain_trust cards --- */
.section--tight { padding-top: 32px; padding-bottom: 48px; }
.dtrust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dtrust-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.dtrust-card--link:hover {
  box-shadow: 0 8px 28px rgba(0,188,156,.15);
  transform: translateY(-3px);
}
.dtrust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,188,156,.15) 0%, rgba(0,188,156,.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.dtrust-body { flex: 1; min-width: 0; }
.dtrust-title { display: block; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.dtrust-desc { font-size: .875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.dtrust-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.dtrust-link-label { font-size: .8rem; font-weight: 600; color: var(--teal); }
.dtrust-arrow { color: var(--teal); display: flex; }
@media (max-width: 680px) {
  .dtrust-grid { grid-template-columns: 1fr; }
}

/* --- steps block --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(0,188,156,.15) 100%);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,188,156,.3);
}
.step-title { display: block; font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-desc { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
@media (max-width: 680px) {
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .step-item { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .step-num { margin-bottom: 0; }
}

/* --- whois_compare --- */
.whois-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.whois-card { border-radius: 16px; overflow: hidden; border: 1.5px solid; }
.whois-card--bad  { border-color: #fca5a5; }
.whois-card--good { border-color: #6ee7b7; }
.whois-card-header { padding: 12px 20px; font-size: .85rem; font-weight: 700; }
.whois-card--bad  .whois-card-header { background: #fef2f2; }
.whois-card--good .whois-card-header { background: #f0fdf4; }
.whois-status { display: flex; align-items: center; gap: 6px; }
.whois-status--bad  { color: #dc2626; }
.whois-status--good { color: #16a34a; }
.whois-data {
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  font-size: .78rem;
  padding: 20px;
  margin: 0;
  line-height: 1.8;
  white-space: pre;
  overflow-x: auto;
}
.whois-data--bad  { background: #fff5f5; color: #7f1d1d; }
.whois-data--good { background: #f0fdf4; color: #14532d; }
@media (max-width: 640px) { .whois-grid { grid-template-columns: 1fr; } }

/* --- free_price --- */
.free-price-wrap {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, rgba(0,188,156,.07) 0%, rgba(0,188,156,.02) 100%);
  border: 1.5px solid rgba(0,188,156,.25);
  border-radius: 20px;
}
.free-price-badge {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -.02em;
  line-height: 1;
  margin: 10px 0 14px;
}
.free-price-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.free-price-sub { font-size: .9rem; color: var(--text-muted); margin: 0 auto 24px; max-width: 500px; line-height: 1.6; }

/* ── site_showcase ────────────────────────────────────────────────────── */
.site-showcase-section { padding: 72px 0; }
.site-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.site-showcase-text .section-label { display: block; margin-bottom: 12px; }
.site-showcase-text h2 { font-size: 1.7rem; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.site-showcase-sub { color: var(--text-muted); font-size: .97rem; line-height: 1.65; margin-bottom: 20px; }
.site-showcase-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.comparison-cta { text-align: center; margin-top: 32px; }
.site-showcase-link { display: block; }
.site-showcase-img img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.site-showcase-link:hover img {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,0,0,.18);
}
@media (max-width: 768px) {
  .site-showcase-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-showcase-text { order: 2; }
  .site-showcase-img  { order: 1; }
}

/* ── panel_showcase ───────────────────────────────────────────────────── */
.ps-section { background: var(--bg-white); }
.ps-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.ps-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.ps-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ps-feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,188,156,.15), rgba(0,188,156,.06));
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.ps-feature-icon svg { width: 20px; height: 20px; }
.ps-feature-body h3 { font-size: .93rem; font-weight: 700; color: var(--text); margin: 0 0 4px; }
.ps-feature-body p  { font-size: .82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.ps-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,.13);
}
@media (max-width: 900px) {
  .ps-inner { grid-template-columns: 1fr; gap: 36px; }
  .ps-image { order: -1; }
  .ps-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ps-features { grid-template-columns: 1fr; }
}

.domain-search-form { margin-bottom: 40px; }
.domain-search-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 8px 8px 8px 20px;
  max-width: 620px;
  margin: 0 auto;
  gap: 8px;
  transition: border-color .2s;
}
.domain-search-wrap:focus-within { border-color: var(--teal); }
.domain-search-icon { font-size: 1.1rem; flex-shrink: 0; }
.domain-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: var(--text);
  min-width: 0;
}
.domain-search-input::placeholder { color: var(--text-muted); }
.domain-search-btn { flex-shrink: 0; border-radius: 9px !important; }

.domain-table-wrap { overflow-x: auto; max-width: 620px; margin: 0 auto; }
.domain-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.domain-table th, .domain-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.domain-table th { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); background: var(--bg-light); }
.domain-table td.dt-tld { font-weight: 700; font-family: monospace; font-size: .95rem; color: var(--teal); }
.domain-table td.dt-country { color: var(--text-muted); font-size: .85rem; }
.domain-table td.dt-price { font-weight: 600; }
.domain-table td.dt-price .dt-year { font-size: .75rem; color: var(--text-muted); font-weight: 400; }
.domain-table td:last-child { text-align: right; }
.domain-table tr:last-child td { border-bottom: none; }
.domain-table tr:hover td { background: rgba(0,188,156,.03); }
.btn-outline { background: transparent; border: 1.5px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }

/* --- Server table (dedicated servers) --- */
.server-table-wrap { width: 100%; }
.server-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
.server-table th, .server-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.server-table th {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  background: var(--bg-light);
}
.server-table td.st-plan { font-weight: 700; color: var(--teal); font-size: .9rem; }
.server-table td.st-price { font-weight: 700; font-size: .9rem; }
.server-table td.st-price .st-period { font-size: .72rem; color: var(--text-muted); font-weight: 400; margin-left: 2px; }
.server-table .st-custom-price { font-weight: 700; color: var(--teal); }
.server-table tr.st-row--custom td { background: rgba(0,188,156,.03); }
.server-table td:last-child { text-align: right; }
.server-table tr:last-child td { border-bottom: none; }
.server-table tr:hover td { background: rgba(0,188,156,.04); }
.server-support-note { margin-top: 16px; font-size: .88rem; color: var(--teal); font-weight: 600; }
/* Mobile: card layout */
@media (max-width: 767px) {
  .server-table thead { display: none; }
  .server-table, .server-table tbody, .server-table tr, .server-table td { display: block; width: 100%; box-sizing: border-box; }
  .server-table tr { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 14px; padding: 4px 0; background: #fff; }
  .server-table tr.st-row--custom { border-color: var(--teal); }
  .server-table td { white-space: normal; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; padding: 8px 14px; gap: 8px; }
  .server-table td:last-child { border-bottom: none; justify-content: center; text-align: center; padding: 12px 14px; }
  .server-table td[data-label]:not([data-label=""])::before { content: attr(data-label); font-weight: 600; color: var(--text-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; flex-shrink: 0; }
  .server-table td.st-plan { font-size: 1rem; justify-content: center; font-weight: 800; background: var(--bg-light); border-radius: 10px 10px 0 0; }
  .server-table td.st-plan::before { display: none; }
}

/* --- Trademark table --- */
.trademark-table-wrap { overflow-x: auto; }
.trademark-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.trademark-table th, .trademark-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.trademark-table th {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  background: var(--bg-light);
}
.trademark-table td.tm-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.trademark-table td.tm-search { color: var(--teal); font-weight: 600; }
.trademark-table td:last-child { text-align: right; }
.trademark-table tr:last-child td { border-bottom: none; }
.trademark-table tr:hover td { background: rgba(0,188,156,.03); }
.btn-sm { font-size: .82rem; padding: 8px 18px; }

/* --- Features grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .18s;
}
.feature-card:hover { box-shadow: var(--shadow); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,188,156,.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-body h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.feature-body p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-upsell-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--teal);
  border: none;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: background .18s;
}
.pricing-upsell-banner:hover { background: var(--teal-dark); }
.pricing-upsell-arrow {
  font-size: 1.1rem;
  transition: transform .18s;
}
.pricing-upsell-banner:hover .pricing-upsell-arrow { transform: translateX(4px); }
.pricing-upsell-banner--static { cursor: default; pointer-events: none; }

/* --- FAQ --- */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  padding: 20px 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .15s;
}
.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .2s, border-color .15s, background .15s;
  color: var(--text-muted);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding-bottom: 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 72px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 10px;
  background: var(--white);
  color: var(--teal);
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* --- Guarantee block --- */
.section-guarantee {
  background: var(--white);
  padding: 72px 20px;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0fdf9 0%, #e6faf4 100%);
  border: 2px solid rgba(0,188,156,.25);
  border-radius: 24px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}

.guarantee-inner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(0,188,156,.07);
  pointer-events: none;
}

.guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 12px 36px rgba(0,188,156,.35);
  flex-shrink: 0;
  margin: 0 auto;
  line-height: 1;
  color: var(--white);
  font-weight: 800;
}

.guarantee-badge .badge-number {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -.03em;
}

.guarantee-badge .badge-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .9;
  text-align: center;
  line-height: 1.3;
}

.guarantee-body { }
.guarantee-body .section-label { margin-bottom: 10px; display: block; }

.guarantee-body h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.guarantee-body > p {
  font-size: .975rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.guarantee-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.guarantee-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.guarantee-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* --- Payment methods block --- */
.section-payment-methods { background: var(--bg-light); }

.pm-group { margin-bottom: 28px; }
.pm-group-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; text-align: center;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  cursor: default;
}
.payment-method:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,188,156,.12);
  transform: translateY(-2px);
}
.payment-method.local { background: var(--white); }
.pm-icon { font-size: 1.4rem; line-height: 1; }
.pm-name { white-space: nowrap; }

/* --- Specs técnicas block --- */
.specs-tecnicas {}

.specs-preview-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px 24px;
  margin-bottom: 20px;
}
.specs-preview-list li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 0; font-size: .9rem; color: var(--text-body);
}
.specs-check { color: var(--teal); font-weight: 700; flex-shrink: 0; font-size: 1rem; }

.specs-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1.5px solid var(--teal); color: var(--teal);
  padding: 9px 22px; border-radius: 8px; font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: background .15s; margin-bottom: 24px;
}
.specs-toggle:hover { background: rgba(0,188,156,.08); }
.specs-toggle-icon { transition: transform .2s; font-style: normal; }

.specs-full { display: none; animation: fadeIn .2s ease; }
.specs-full.open { display: block; }

.specs-group { margin-bottom: 28px; }
.specs-group h3 {
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--teal); margin-bottom: 12px;
  padding-bottom: 6px; border-bottom: 1.5px solid var(--border);
}
.specs-group ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px 24px;
}
.specs-group li {
  font-size: .84rem; padding: 5px 0 5px 18px; position: relative;
  color: var(--text-body); line-height: 1.4;
}
.specs-group li::before { content: '—'; position: absolute; left: 0; color: #94a3b8; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* --- Highlight block (Care, Academy, etc.) --- */
.highlight-section {
  background: var(--white);
  padding: 80px 20px;
}
.highlight-section + .highlight-section {
  background: var(--bg-light);
}

.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.highlight-flip .highlight-inner {
  grid-template-columns: 1fr 1fr;
}
.highlight-flip .highlight-visual { order: 2; }
.highlight-flip .highlight-content { order: 1; }

.highlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-image {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  display: block;
}

.highlight-icon-wrap {
  width: 220px;
  height: 220px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(0,188,156,.1), rgba(190,238,162,.2));
  border: 2px solid rgba(0,188,156,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  line-height: 1;
  box-shadow: 0 16px 48px rgba(0,188,156,.12);
}

.highlight-content .section-label { margin-bottom: 12px; display: block; }

.highlight-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.highlight-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.highlight-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.highlight-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
.hl-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,188,156,.12);
  color: var(--teal);
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .highlight-inner,
  .highlight-flip .highlight-inner { grid-template-columns: 1fr; gap: 36px; }
  .highlight-flip .highlight-visual { order: -1; }
  .highlight-flip .highlight-content { order: 0; }
  .highlight-icon-wrap { width: 140px; height: 140px; font-size: 4rem; border-radius: 24px; }
}

@media (max-width: 680px) {
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; gap: 28px; }
  .guarantee-badge { margin: 0 auto; }
  .guarantee-list { grid-template-columns: 1fr; align-items: flex-start; text-align: left; }
}

/* --- Footer --- */
.site-footer {
  background: #0f1923;
  color: #94a3b8;
  padding: 60px 20px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.footer-brand .logo { filter: brightness(0) invert(1); height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: .82rem; line-height: 1.6; color: #64748b; }

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #e2e8f0;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: .79rem;
  color: #64748b;
  padding: 2px 0;
  transition: color .15s;
}
.footer-col a + h4 { margin-top: 28px; }
.footer-col a:hover { color: var(--teal); }
.footer-sub-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin: 16px 0 4px; padding: 0; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal { font-size: .78rem; color: #475569; }
.footer-legal a { color: #64748b; margin-left: 12px; }
.footer-legal a:hover { color: var(--teal); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: #64748b;
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }

/* --- Nav Dropdowns --- */
.nav-item {
  position: relative;
}
.nav-item > a,
.nav-item > button {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item:focus-within > a,
.nav-item:focus-within > button { color: var(--teal); background: rgba(0,188,156,.07); }
.nav-arrow {
  font-size: .6rem;
  opacity: .55;
  transition: transform .2s;
  line-height: 1;
  margin-top: 1px;
}
.nav-item:hover .nav-arrow,
.nav-item:focus-within .nav-arrow { transform: rotate(180deg); }
.nav-item-direct { text-decoration: none; }

/* Mega dropdown full-width */
.mega-dropdown {
  position: fixed;
  left: 0; right: 0;
  top: var(--header-h);
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 500;
}
/* (no topbar, always same offset) */
.nav-item:hover .mega-dropdown,
.nav-item:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 32px;
  display: flex;
  gap: 0;
}
.mega-desc {
  flex: 0 0 260px;
  padding-right: 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mega-desc strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.mega-desc p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.mega-links {
  flex: 1;
  padding-left: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 12px;
  align-content: start;
  min-width: 0;
}
.mega-links a {
  display: block;
  font-size: .82rem;
  font-weight: 400;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--text);
  transition: background .1s, color .1s;
  text-decoration: none;
}
.mega-links a:hover { background: #f0fdf9; color: var(--teal); }
.mega-links a.active { color: var(--teal); font-weight: 600; }

/* Rich nav items (title + desc, icon slot reserved for future SVG) */
/* Nav item SVG icons */
.mlt-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--bg-light); border-radius: 8px; flex-shrink: 0; color: var(--teal); margin-top: 1px; }
.mlt-icon svg { display: block; }
.mega-link-rich {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  transition: color .1s;
  min-width: 0;
}
.mega-link-rich:hover .mlt-title,
.mega-link-rich.active .mlt-title { color: var(--teal); }
.mlt-text { display: flex; flex-direction: column; min-width: 0; }
.mlt-title {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2px;
}
.mlt-desc {
  display: block;
  font-size: .77rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Full-width layout (no mega-desc): rich items + platform section */
.mega-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px;
}
.mega-rich-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 40px;
}
.mega-platform-section {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}
.mega-plat-header {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.mega-plat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 40px;
}

/* --- Hero Rating (minimalista) --- */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  padding: 6px 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-rating-stars {
  color: #ffc107;
  font-size: .95rem;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-rating strong {
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
}
.hero-rating-sep { color: rgba(255,255,255,.35); font-size: .8rem; }
.hero-rating-count {
  color: rgba(255,255,255,.75);
  font-size: .78rem;
}

/* --- Pricing Tooltips --- */
.plan-features li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.feat-tooltip {
  position: relative;
  display: inline;
  border-bottom: 1.5px dashed var(--teal);
  cursor: pointer;
  user-select: none;
}
.feat-tooltip .tooltip-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #1a1a2e;
  color: white;
  font-size: .72rem;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  min-width: 180px;
  max-width: 260px;
  z-index: 400;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  text-align: left;
  pointer-events: none;
}
.feat-tooltip .tooltip-box::after {
  content: '';
  position: absolute;
  top: 100%; left: 14px;
  border: 5px solid transparent;
  border-top-color: #1a1a2e;
}
.feat-tooltip.open .tooltip-box { display: block; }

/* Mobile: mobile-category headers */
.mobile-category {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 14px 16px 4px;
}
.mobile-menu .mobile-sub {
  font-size: .9rem;
  padding: 8px 24px;
  color: var(--text-muted);
}
.mobile-menu .mobile-sub:hover { color: var(--teal); background: var(--bg-light); }

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.visually-hidden { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* --- Riesgo cero / Guarantee --- */
.section-guarantee {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.guarantee-badge-wrap {
  flex-shrink: 0;
}
.guarantee-badge-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}
.guarantee-body {
  flex: 1;
}
.guarantee-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 4px 0 10px;
}
.guarantee-body p {
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.6;
  margin: 0;
}
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.guarantee-list li {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.guarantee-check {
  color: var(--teal);
  font-weight: 800;
  font-size: 1rem;
}
.guarantee-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.trust-stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.trust-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.trust-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}



/* ── Reviews block ───────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-meta strong { font-size: .88rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-loc { font-size: .75rem; color: var(--text-muted); }
.review-stars { color: #f59e0b; font-size: .95rem; letter-spacing: 1px; flex-shrink: 0; }
.review-title { font-size: .88rem; font-weight: 700; color: var(--text); margin: 0; }
.review-text { font-size: .86rem; color: var(--text-secondary); line-height: 1.55; margin: 0; flex: 1; }
.review-date { font-size: .75rem; color: var(--text-muted); margin-top: auto; }
.reviews-source {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding-top: 8px;
  font-size: .85rem; color: var(--text-muted);
}
.reviews-source a { color: var(--teal); font-weight: 600; text-decoration: none; }
.reviews-source a:hover { text-decoration: underline; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── Growth stages block ─────────────────────────────────────────────────── */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.growth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}
.growth-card-hd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.growth-stage-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.growth-card-hd h3 { font-size: 1rem; font-weight: 800; margin: 0 0 4px; color: var(--text); }
.growth-card-hd p { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
.growth-products { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.growth-products li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.growth-products li a:hover { background: rgba(0,188,156,.08); color: var(--teal); }
.growth-products li a span { font-size: 1rem; flex-shrink: 0; }
.growth-products li a .gs-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
.growth-products li a .gs-icon svg { display: block; }
@media (max-width: 900px) { .growth-grid { grid-template-columns: 1fr; } }

/* ── Guide Topics block ──────────────────────────────────────────────────── */
.gt-section { background: var(--bg-light); }
.gt-meta {
  text-align: center;
  color: var(--text-muted);
  font-size: .88rem;
  margin: -8px 0 32px;
}

/* TOC */
.gt-toc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.gt-toc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: .82rem;
  transition: background .12s, color .12s;
}
.gt-toc-item:hover { background: rgba(0,188,156,.08); color: var(--teal); }
.gt-toc-n { font-size: .7rem; font-weight: 700; color: var(--text-muted); min-width: 22px; }
.gt-toc-icon { font-size: 1rem; }
.gt-toc-lbl { line-height: 1.3; }

/* Topic sections */
.gt-topics { display: flex; flex-direction: column; gap: 48px; }
.gt-topic {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 36px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.gt-topic-hd {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.gt-topic-n {
  font-size: .7rem;
  font-weight: 800;
  color: var(--teal);
  background: rgba(0,188,156,.1);
  border-radius: 6px;
  padding: 3px 7px;
  white-space: nowrap;
  margin-top: 4px;
}
.gt-topic-icon { font-size: 1.6rem; line-height: 1; margin-top: 2px; }
.gt-topic-title { font-size: 1.15rem; font-weight: 800; color: var(--text); margin: 0 0 4px; }
.gt-topic-sub { font-size: .9rem; color: var(--text-muted); margin: 0; font-style: italic; }
.gt-topic-body { font-size: .93rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }

/* Info boxes */
.gt-box {
  border-radius: 10px;
  padding: 16px 20px;
  margin: 14px 0;
  border-left: 4px solid;
}
.gt-box p { font-size: .88rem; color: inherit; margin: 6px 0 0; line-height: 1.6; }
.gt-box ul { margin: 8px 0 0 16px; }
.gt-box li { font-size: .88rem; margin-bottom: 4px; line-height: 1.5; }
.gt-box-header { display: flex; align-items: center; gap: 8px; }
.gt-box-header strong { font-size: .9rem; font-weight: 700; }

.gt-box--warn   { background: #fff8f0; border-color: #f97316; color: #7c2d12; }
.gt-box--warn   .gt-box-header strong { color: #c2410c; }
.gt-box--stop   { background: #fef2f2; border-color: #ef4444; color: #7f1d1d; }
.gt-box--stop   .gt-box-header strong { color: #b91c1c; }
.gt-box--alert  { background: #fff1f2; border-color: #f43f5e; color: #881337; }
.gt-box--alert  .gt-box-header strong { color: #be123c; }
.gt-box--action { background: #f0fdf4; border-color: #22c55e; color: #14532d; }
.gt-box--action .gt-box-header strong { color: #15803d; }
.gt-box--tip    { background: #eff6ff; border-color: #3b82f6; color: #1e3a5f; }
.gt-box--tip    .gt-box-header strong { color: #1d4ed8; }
.gt-box--fact   { background: #faf5ff; border-color: #a855f7; color: #3b0764; }
.gt-box--fact   .gt-box-header strong { color: #7e22ce; }

/* Bullets */
.gt-bullets { margin: 12px 0 0 20px; }
.gt-bullets li { font-size: .9rem; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.5; }

/* Product card inside topic */
.gt-product-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
}
.gt-prod-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.gt-prod-body strong { font-size: .93rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 4px; }
.gt-prod-body p { font-size: .86rem; color: var(--text-muted); margin: 0 0 8px; line-height: 1.5; }
.gt-prod-body a { font-size: .86rem; font-weight: 600; color: var(--teal); text-decoration: none; }
.gt-prod-body a:hover { text-decoration: underline; }

/* Checklist */
.gt-checklist {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 36px;
  margin-top: 48px;
}
.gt-checklist h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.gt-checklist ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 32px; list-style: none; margin: 0; padding: 0; }
.gt-checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: .88rem; color: var(--text-secondary); line-height: 1.4; }
.gt-check { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Products section */
.gt-products-section { margin-top: 48px; }
.gt-products-section h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.gt-products-section > p { font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; }
.gt-products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* Responsive */
@media (max-width: 900px) {
  .gt-toc { grid-template-columns: repeat(2, 1fr); }
  .gt-checklist ul { grid-template-columns: 1fr; }
  .gt-products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gt-toc { grid-template-columns: 1fr 1fr; }
  .gt-topic { padding: 22px 18px; }
  .gt-checklist { padding: 22px 18px; }
}
@media (max-width: 400px) {
  .gt-toc { grid-template-columns: 1fr; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1100px) {
  .header-nav, .header-actions .btn-outline, .header-actions .country-selector { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --header-h: 58px; }

  .guarantee-inner { flex-direction: column; text-align: center; gap: 24px; }
  .guarantee-badge-img { width: 110px; height: 110px; }
  .guarantee-list { justify-content: center; }
  .guarantee-stats { gap: 16px 0; }
  .trust-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .trust-stat:last-child { border-bottom: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { order: -1; }

  .compare-table { font-size: .8rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }

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

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar { gap: 16px; }

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

}

@media (max-width: 480px) {
  .pricing-toggle { flex-wrap: wrap; width: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { padding: 56px 16px 52px; }
}

/* --- Services / Paths Grid (Home) --- */
.section-services-grid {
  padding: 72px 24px;
  background: var(--bg-light);
}
.section-services-grid .section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
.section-services-grid .section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.path-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.path-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.path-icon {
  font-size: 2rem;
  line-height: 1;
}
.path-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.path-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.path-cta {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: background .15s;
}
.path-cta:hover { background: var(--teal-dark); }
.path-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.path-include-link {
  font-size: .76rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 3px 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: color .15s, border-color .15s;
}
.path-include-link:hover { color: var(--teal); border-color: var(--teal); }

@media (max-width: 900px) {
  .paths-grid { grid-template-columns: 1fr; gap: 16px; }
  .path-card { padding: 24px 20px; }
}
@media (max-width: 600px) {
  .section-services-grid { padding: 48px 16px; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .hero-ctas, .cta-banner { display: none; }
}

/* ── PRICING TABLE ───────────────────────────────────────── */
.pt-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.pt-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
.pt-table thead tr {
  background: #f5f7fa;
}
.pt-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.pt-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.pt-table tbody tr:last-child td { border-bottom: none; }
.pt-row--featured {
  background: linear-gradient(90deg, #f6ffdb 0%, #fff 60%);
}
.pt-plan-cell {
  font-weight: 700;
  color: #1a2332;
  font-size: 15px;
  white-space: nowrap;
}
.pt-badge {
  display: inline-block;
  margin-left: 8px;
  background: #9DC626;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.pt-spec-cell {
  color: #374151;
  white-space: nowrap;
}
.pt-price-cell strong {
  font-size: 18px;
  font-weight: 900;
  color: #1a2332;
}
.pt-row--featured .pt-price-cell strong { color: #5a8a0c; }
.pt-period {
  font-size: 12px;
  color: #9ca3af;
  margin-left: 2px;
}
.pt-cta {
  display: inline-block;
  padding: 9px 20px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.pt-cta:hover { background: #e5e7eb; }
.pt-cta--featured {
  background: #9DC626;
  color: #fff;
}
.pt-cta--featured:hover { background: var(--text); color: #fff; }

/* ── PANEL PRICING COMPARE ───────────────────────────────── */
.ppc-section { background: #f5f7fa; }
.ppc-tables {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.ppc-panel {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.ppc-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.ppc-panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b5db3c, #9DC626);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.ppc-panel-icon svg { width: 22px; height: 22px; }
.ppc-panel-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 2px;
}
.ppc-panel-header p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.ppc-price-table {
  width: 100%;
  border-collapse: collapse;
}
.ppc-price-table th {
  padding: 10px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.ppc-price-table td {
  padding: 13px 24px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.ppc-price-table tbody tr:last-child td { border-bottom: none; }
.ppc-price-val {
  font-weight: 700;
  color: #1a2332;
}
.ppc-vs {
  align-self: center;
  font-size: 16px;
  font-weight: 900;
  color: #9ca3af;
  flex-shrink: 0;
}
.ppc-comparison-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 16px;
}
.ppc-cmp-wrapper { overflow-x: auto; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.ppc-cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
.ppc-cmp-table thead tr { background: #f5f7fa; }
.ppc-cmp-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 2px solid #e5e7eb;
}
.ppc-cmp-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.ppc-cmp-table tbody tr:last-child td { border-bottom: none; }
.ppc-cmp-feat { color: #374151; font-weight: 600; }
.ppc-cmp-val { color: #1a2332; }
@media (max-width: 700px) {
  .ppc-tables { flex-direction: column; }
  .ppc-vs { align-self: center; margin: 0; }
}

/* ── TEXT EXPLAINER ──────────────────────────────────────── */
.te-section { background: #fff; }
.te-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.te-text .section-label { display: block; margin-bottom: 12px; }
.te-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1a2332;
  margin: 0 0 16px;
  line-height: 1.2;
}
.te-text p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 14px;
}
.te-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.te-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 22px;
}
.te-card--highlight {
  background: linear-gradient(135deg, #f6ffdb, #eefacd);
  border-color: #c6e653;
}
.te-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b5db3c, #9DC626);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 10px;
}
.te-card-icon svg { width: 18px; height: 18px; }
.te-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 6px;
}
.te-card p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .te-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── STACKS GRID ─────────────────────────────────────────── */
.sg-section { background: #f5f7fa; }
.sg-categories { display: flex; flex-direction: column; gap: 40px; }
.sg-cat-label {
  font-size: 11px;
  font-weight: 700;
  color: #7fa81e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}
.sg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.sg-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  transition: box-shadow .15s, border-color .15s;
}
.sg-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #c6e653;
}
.sg-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b5db3c, #9DC626);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 10px;
}
.sg-item-icon svg { width: 18px; height: 18px; }
.sg-item-name {
  font-size: 12px;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.3;
}
.sg-item-sub {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

/* ── RESELLER CALCULATOR ─────────────────────────────────── */
.rc-section { background: #f5f7fa; }
.rc-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
}
.rc-plan-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #b5db3c, #9DC626);
  border-radius: 12px;
  padding: 14px 22px;
  margin-bottom: 36px;
}
.rc-plan-name {
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}
.rc-plan-detail {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.rc-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.rc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.rc-slider-header label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}
.rc-slider-value {
  font-size: 22px;
  font-weight: 900;
  color: #7fa81e;
  min-width: 52px;
  text-align: right;
}
.rc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
  cursor: pointer;
}
.rc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #9DC626;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(157,198,38,0.4);
  transition: transform .15s ease;
}
.rc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.rc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: #9DC626;
  cursor: pointer;
}
.rc-slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 5px;
}
.rc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rc-result-card {
  text-align: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 16px;
}
.rc-result-card.rc-result-profit {
  background: linear-gradient(160deg, #f6ffdb, #eefacd);
  border-color: #c6e653;
  box-shadow: 0 4px 16px rgba(157,198,38,0.12);
}
.rc-result-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.rc-result-value {
  font-size: 30px;
  font-weight: 900;
  color: #1a2332;
  line-height: 1;
  margin-bottom: 6px;
}
.rc-result-profit .rc-result-value { color: #5a8a0c; }
.rc-result-sub {
  font-size: 12px;
  color: #9ca3af;
}
.rc-result-profit .rc-result-sub {
  font-size: 13px;
  font-weight: 700;
  color: #7fa81e;
}
.rc-currency-note {
  margin-top: 16px;
  font-size: 12px;
  color: #9ca3af;
  text-align: right;
}
@media (max-width: 680px) {
  .rc-card { padding: 24px 18px; }
  .rc-sliders { grid-template-columns: 1fr; gap: 24px; }
  .rc-results { grid-template-columns: 1fr; }
  .rc-result-card { padding: 20px 16px; }
  .rc-currency-note { text-align: left; }
}

/* ---- template_gallery ---- */
.tg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tg-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.tg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tg-card.tg-hidden { display: none; }
.tg-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.tg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 188, 156, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  border-radius: var(--radius);
}
.tg-card:hover .tg-overlay { opacity: 1; }
.tg-overlay a {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
}
.tg-overlay a:hover { background: rgba(255,255,255,.15); }
.tg-more-wrap {
  text-align: center;
  margin-top: 36px;
}
@media (max-width: 860px) {
  .tg-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .tg-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---- earnings_calculator ---- */
.ec-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.ec-slider-header {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.ec-slider-wrap {
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 10px;
}
.ec-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.ec-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,188,156,.4);
}
.ec-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,188,156,.4);
}
.ec-ticks {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
}
.ec-ticks span {
  position: absolute;
  transform: translateX(-50%);
  font-size: .78rem;
  color: var(--text-muted);
}
.ec-plans-label {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 14px;
}
.ec-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.ec-plan-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  font-family: inherit;
}
.ec-plan-btn strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color .15s;
}
.ec-plan-btn span {
  font-size: .82rem;
  color: var(--text-muted);
}
.ec-plan-btn.active {
  border-color: var(--primary);
}
.ec-plan-btn.active strong { color: var(--primary); }
.ec-results {
  background: rgba(0,188,156,.07);
  border-radius: var(--radius);
  padding: 28px 24px 20px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
  text-align: center;
  margin-bottom: 12px;
  align-items: center;
}
.ec-result-item { padding: 0 8px; }
.ec-result-item + .ec-result-item { border-left: 1px solid rgba(0,188,156,.2); }
.ec-result-value { font-weight: 800; line-height: 1.1; margin-bottom: 4px; }
.ec-result-sm { font-size: 1.8rem; color: var(--text-dark); }
.ec-result-lg { font-size: 2.6rem; color: var(--primary); }
.ec-result-label { font-size: .82rem; color: var(--text-muted); }
.ec-threshold-msg {
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin: 14px 0 0;
}
.ec-note {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin: 20px 0 0;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .ec-card { padding: 24px 16px; }
  .ec-plans { grid-template-columns: 1fr; }
  .ec-results { grid-template-columns: 1fr; gap: 16px; }
  .ec-result-item + .ec-result-item { border-left: none; border-top: 1px solid rgba(0,188,156,.2); padding-top: 16px; }
  .ec-result-sm { font-size: 1.5rem; }
  .ec-result-lg { font-size: 2.1rem; }
}

/* ---- timeline ---- */
.timeline { position: relative; padding: 0; list-style: none; max-width: 740px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 68px; top: 8px; bottom: 8px; width: 2px; background: var(--accent); opacity: .2; }
.tl-item { display: flex; gap: 24px; padding: 0 0 44px; position: relative; align-items: flex-start; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year { flex-shrink: 0; width: 56px; text-align: right; font-size: .85rem; font-weight: 700; color: var(--accent); padding-top: 3px; letter-spacing: .02em; }
.tl-dot { flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); margin-top: 3px; position: relative; z-index: 1; box-shadow: 0 0 0 5px rgba(0,188,156,.12); }
.tl-body { flex: 1; }
.tl-title { font-weight: 700; font-size: 1rem; margin: 0 0 5px; color: var(--text); }
.tl-desc { font-size: .93rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
@media (max-width: 640px) {
  .timeline::before { left: 44px; }
  .tl-year { width: 36px; font-size: .78rem; }
  .tl-dot { width: 14px; height: 14px; }
}

/* ---- hero split layout (with reviews column) ---- */
.hero--split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}
.hero--split .hero-main { display: flex; flex-direction: column; align-items: flex-start; }
.hero--split .hero-ctas { justify-content: flex-start; }
.hero--split .trust-bar { justify-content: flex-start; }
.hero--split .hero-rating { text-align: left; }
.hero-reviews-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 520px;
  overflow: hidden;
}
.hero-cr-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hero-cr-stars { color: #fbbf24; font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 0.35rem; }
.hero-cr-text { font-size: 0.8rem; line-height: 1.5; margin: 0 0 0.5rem; color: var(--text-muted); }
.hero-cr-footer { display: flex; align-items: center; gap: 0.5rem; }
.hero-cr-name { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.hero-cr-source { font-size: 0.7rem; opacity: 0.55; }
@media (max-width: 860px) {
  .hero--split .hero-inner { grid-template-columns: 1fr; }
  .hero-reviews-col { display: none; }
}

/* =============================================
   LEGAL PAGE (/tos/)
   ============================================= */
.legal-page { padding: 3rem 0 5rem; }
.legal-content { max-width: 860px; }
.legal-section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 3.5rem 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--teal);
}
.legal-section-title:first-child { margin-top: 0; }
.legal-body { color: var(--text-muted); line-height: 1.75; }
.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
}
.legal-body p { margin: 0 0 0.85rem; }
.legal-body ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}
.legal-body ul li { margin-bottom: 0.4rem; }
@media (max-width: 768px) {
  .legal-section-title { font-size: 1.35rem; }
  .legal-page { padding: 2rem 0 4rem; }
}
.legal-page-h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 2.5rem;
}
@media (max-width: 768px) {
  .legal-page-h1 { font-size: 1.75rem; margin-bottom: 2rem; }
}
