:root {
  --navy: #213448;
  --ocean: #547792;
  --sky: #94B4C1;
  --pearl: #EEEEEE;
  --white: #FFFFFF;
  --text-body: #374151;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --success: #16a34a;
  --bg-soft: #F8FAFC;
  --hcl-green: #16a34a;
  --planeta-blue: #1d4ed8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(33,52,72,.07);
  --shadow-md: 0 6px 24px rgba(33,52,72,.12);
  --shadow-lg: 0 16px 48px rgba(33,52,72,.15);
  --transition: .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; }
.logo-text { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--ocean); font-family: 'Inter', sans-serif; }
.topbar-nav { display: flex; align-items: center; gap: 8px; }
.topbar-link { font-size: 13px; font-weight: 500; color: var(--text-light); padding: 6px 12px; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.topbar-link:hover { color: var(--navy); background: var(--pearl); }
.topbar-cta {
  background: var(--navy);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}
.topbar-cta:hover { background: var(--ocean); }

/* ── HERO ── */
.hero {
  background: linear-gradient(155deg, #EFF6FF 0%, #F0F9FF 40%, var(--white) 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148,180,193,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84,119,146,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(84,119,146,.12);
  color: var(--ocean);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: var(--ocean); }
.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--ocean); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(33,52,72,.2); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--ocean); background: #F0F9FF; }

/* Hero card */
.hero-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.hero-visual-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.quick-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.quick-step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.step-content p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; }
.trust-item svg { opacity: .7; }
.trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,.2); }

/* ── SECTION BASE ── */
.section { padding: 72px 0; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ocean); margin-bottom: 8px; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.section-sub { font-size: 17px; color: var(--text-light); max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.sep { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.how-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.how-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--sky);
  opacity: .5;
  line-height: 1;
  margin-bottom: 16px;
}
.how-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.how-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── PLANS SECTION ── */
.plans-section { background: var(--bg-soft); }
.brand-block { margin-bottom: 56px; }
.brand-block:last-child { margin-bottom: 0; }
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.brand-identity { display: flex; align-items: center; gap: 14px; }
.brand-logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.brand-logo-hcl { background: var(--navy); }
.brand-logo-planeta { background: #1d4ed8; }
.brand-name-big { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); }
.brand-tagline { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.brand-badge-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: #DCFCE7;
  color: #166534;
  letter-spacing: .03em;
}
.brand-badge-tag.blue { background: #DBEAFE; color: #1e40af; }

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

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--sky); }
.plan-card.featured {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(84,119,146,.12), var(--shadow-md);
}
.plan-card.featured-planeta { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.12), var(--shadow-md); }

.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocean);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-popular.p-blue { background: #3b82f6; }

.plan-name { font-size: 13px; font-weight: 700; color: var(--ocean); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.plan-name.p-blue { color: #3b82f6; }
.plan-desc { font-size: 13px; color: var(--text-light); margin-bottom: 20px; line-height: 1.5; }

.plan-price-block { margin-bottom: 24px; }
/* HCL value prop strip */
.hcl-strip {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 18px 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 4px 0;
}
.hcl-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 160px;
  padding: 6px 16px;
}
.hcl-strip-item span { font-size: 13px; color: var(--navy); line-height: 1.4; }
.hcl-strip-item span small { font-size: 11px; color: var(--text-light); font-weight: 400; display: block; }
.hcl-strip-item span strong { font-weight: 700; }
.hcl-strip-icon { font-size: 22px; flex-shrink: 0; }
.hcl-strip-sep { width: 1px; height: 40px; background: #BFDBFE; flex-shrink: 0; }

.plan-price-mes { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.plan-price-original { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-bottom: 2px; }
.plan-price {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.plan-price sup { font-size: 16px; font-weight: 600; vertical-align: top; margin-top: 4px; }
.plan-price sub { font-size: 13px; font-weight: 400; color: var(--text-light); }
.plan-discount {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
  letter-spacing: .04em;
}

.plan-for {
  background: #F0F9FF;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ocean);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.plan-for.p-blue { background: #EFF6FF; color: #1d4ed8; }

.plan-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.4;
}
.feat-check { color: var(--success); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.feat-strong { font-weight: 600; color: var(--navy); }

.plan-cta {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  margin-top: auto;
}
.plan-cta:hover { background: var(--ocean); transform: translateY(-1px); }
.plan-cta.p-blue { background: #1d4ed8; }
.plan-cta.p-blue:hover { background: #1e40af; }

/* ── COMPARATOR BANNERS ── */
.comp-banners-section { background: var(--white); }
.comp-banners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.comp-banner {
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.comp-banner:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.comp-banner.godaddy { background: #FFFBEB; border-color: #FCD34D; }
.comp-banner.hostgator { background: #FFF7ED; border-color: #FDBA74; }
.comp-banner.hostinger { background: #F5F3FF; border-color: #C4B5FD; }

.banner-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.banner-provider-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.godaddy .banner-provider-icon { background: #FEF08A; }
.hostgator .banner-provider-icon { background: #FED7AA; }
.hostinger .banner-provider-icon { background: #DDD6FE; }

.banner-provider-name { font-size: 16px; font-weight: 700; color: var(--navy); }
.banner-provider-sub { font-size: 12px; color: var(--text-light); }

.banner-hook {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 18px;
}
.banner-hook strong { color: var(--navy); }

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.godaddy .banner-tag { background: #FEF9C3; color: #713F12; }
.hostgator .banner-tag { background: #FFEDD5; color: #7C2D12; }
.hostinger .banner-tag { background: #EDE9FE; color: #4C1D95; }

.banner-cta {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
  margin-top: auto;
}
.banner-cta:hover { opacity: .85; transform: translateY(-1px); }
.godaddy .banner-cta { background: #78350F; color: var(--white); }
.hostgator .banner-cta { background: #9A3412; color: var(--white); }
.hostinger .banner-cta { background: #5B21B6; color: var(--white); }

/* ── WHY SECTION ── */
.why-section { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.faq-q { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148,180,193,.12) 0%, transparent 65%);
}
.cta-final h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}
.cta-final h2 em { font-style: normal; color: var(--sky); }
.cta-final p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-white {
  background: var(--white);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-white:hover { opacity: .92; transform: translateY(-2px); }
.btn-cta-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.25);
  transition: background var(--transition), color var(--transition);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-light); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-light); transition: color var(--transition); }
.footer-links a:hover { color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .comp-banners-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .plans-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
  .trust-sep { display: none; }
  .topbar-nav { display: none; }
  .brand-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 48px 0; }
}