:root{
  --primary:#673de6;
  --primary-dark:#4c29b4;
  --secondary:#8b5cf6;
  --accent:#14d7c1;
  --accent-soft:#dff9f4;
  --dark:#0b0b1f;
  --text:#111827;
  --muted:#4b5563;
  --line:rgba(17,24,39,.1);
  --line-soft:rgba(255,255,255,.1);
  --surface:#ffffff;
  --surface-soft:#f7f9ff;
  --shadow:0 18px 44px rgba(15,23,42,.08);
  --page-gutter:clamp(18px,3vw,52px);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff 0%,#f8f9ff 38%,#eff3ff 100%);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%;height:auto}
button,input,textarea,select{font:inherit}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.container{width:100%;margin:0 auto;padding-inline:var(--page-gutter)}
.section{padding:clamp(26px,3.8vw,44px) 0}
.section[id]{scroll-margin-top:112px}
.grid{display:grid;gap:24px}
.card{
  position:relative;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.78);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  color:#3657e5;
  background:linear-gradient(135deg,rgba(54,87,229,.12),rgba(20,215,193,.12));
  border:1px solid rgba(54,87,229,.16);
  border-radius:999px;
  box-shadow:0 10px 22px rgba(54,87,229,.08);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.section-header{display:grid;gap:10px;margin-bottom:20px}
.section-header.is-balanced{justify-items:center;text-align:center}
.section-header.is-balanced .eyebrow{width:100%;justify-content:flex-start}
.section-header h1,.section-header h2{margin:0;line-height:1.04;letter-spacing:-.03em}
.section-header p{margin:0;max-width:980px;color:var(--muted)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:12px 22px;
  border:0;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#07101f;
  background:linear-gradient(135deg,#20e4cf,#14d7c1);
  box-shadow:0 12px 24px rgba(20,215,193,.22);
}
.btn-secondary{
  color:var(--primary);
  background:rgba(103,61,230,.08);
  border:1px solid rgba(103,61,230,.14);
}
.btn-ghost{
  color:#fff;
  background:transparent;
  border:1px solid rgba(255,255,255,.22);
}
.btn-full{width:100%}

.topbar{
  background:linear-gradient(180deg,#0a1020 0%,#10172b 100%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:44px;
}
.topbar-group{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.topbar-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:4px 0;
  color:rgba(255,255,255,.84);
  font-size:.84rem;
  font-weight:700;
}
.topbar-link.is-accent{color:#fff}
.topbar-link svg{width:16px;height:16px;fill:currentColor;flex-shrink:0}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.97);
  border-bottom:0;
  backdrop-filter:blur(16px);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:74px;
}
.brand{display:flex;align-items:center}
.brand-logo-image{width:clamp(176px,20vw,228px)}
.nav-wrap{display:flex;align-items:center;gap:18px}
.nav-links{display:flex;align-items:center;gap:24px}
.nav-links a{
  position:relative;
  padding:6px 0;
  color:#283347;
  font-size:.94rem;
  font-weight:800;
  letter-spacing:.01em;
}
.nav-links a.active::after,
.nav-links a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-24px;
  height:3px;
  background:var(--primary);
}
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border:1px solid rgba(17,24,39,.12);
  border-radius:8px;
  background:#fff;
  color:#101326;
}

.hero{padding:0 0 6px;margin-top:-1px}
.hero-bleed{width:100%}
.hero-stage{
  position:relative;
  overflow:hidden;
  width:100%;
  border:1px solid rgba(54,87,229,.08);
  border-left:0;
  border-right:0;
  background:linear-gradient(135deg,#ffffff 0%,#f4f7ff 100%);
}
.hero-pane{display:block}
.hero-pane[hidden]{display:none}
.hero-pane-inner{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:40px;
  align-items:center;
  min-height:541px;
  padding:32px var(--page-gutter);
}
.hero-copy{display:grid;gap:18px}
.hero-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  color:#fff;
  background:#1f80ff;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.hero-title{margin:0;font-size:clamp(2.55rem,4.6vw,4.4rem);line-height:.98;letter-spacing:-.05em}
.hero-description{margin:0;max-width:760px;font-size:1.08rem;color:#334155}
.hero-description strong{color:#0f172a}
.hero-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.hero-benefit{display:grid;grid-template-columns:20px 1fr;gap:12px;align-items:start}
.hero-benefit-icon{width:20px;height:20px;color:#1f80ff;margin-top:4px}
.hero-benefit-title{display:block;margin-bottom:3px;font-size:1rem;font-weight:800}
.hero-benefit-text{display:block;color:#475569;font-size:.95rem}
.hero-actions,.hero-proof,.cookies-options,.cookies-actions,.whois-tlds{display:flex;gap:12px;flex-wrap:wrap}
.hero-proof{
  display:grid;
  grid-template-columns:repeat(3,max-content);
  align-items:center;
  gap:24px;
  padding-top:16px;
  border-top:1px solid rgba(15,23,42,.08);
}
.hero-proof-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.92rem;
  font-weight:700;
  color:#0f172a;
  white-space:nowrap;
}
.hero-proof-icon{width:20px;height:20px;color:#1f80ff}
.hero-art{display:flex;align-items:center;justify-content:flex-end}
.hero-media{
  position:relative;
  width:min(100%,520px);
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-media-shell{
  width:100%;
  height:100%;
  padding:26px;
  border-radius:32px;
  background:radial-gradient(circle at top right,rgba(31,128,255,.18),transparent 34%),linear-gradient(180deg,#fdfefe 0%,#edf4ff 100%);
  box-shadow:0 34px 80px rgba(31,128,255,.12);
}
.hero-media-placeholder{
  width:100%;
  height:100%;
  min-height:368px;
  display:grid;
  place-items:center;
  gap:10px;
  text-align:center;
  color:#35506b;
  border:2px dashed rgba(31,128,255,.24);
  border-radius:28px;
  background:
    linear-gradient(135deg,rgba(31,128,255,.08),rgba(20,215,193,.08)),
    repeating-linear-gradient(45deg,rgba(31,128,255,.05) 0 12px,transparent 12px 24px);
}
.hero-media-placeholder span{
  display:block;
  font-size:1.25rem;
  font-weight:900;
}
.hero-media-placeholder small{
  display:block;
  max-width:240px;
  color:#52708c;
  font-size:.95rem;
  font-weight:700;
}
.hero-media-uptime{
  position:absolute;
  top:28px;
  right:-10px;
  min-width:140px;
  padding:18px 16px;
  text-align:center;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 40px rgba(15,23,42,.12);
}
.hero-media-uptime small{
  display:block;
  margin-bottom:10px;
  color:#4b5563;
  font-weight:700;
}
.hero-media-uptime strong{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:88px;
  height:88px;
  margin:auto;
  border:5px solid #21b37e;
  border-radius:50%;
  color:#0f172a;
  font-size:1.2rem;
  font-weight:900;
}
.hero-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 var(--page-gutter) 22px;
}
.hero-dots{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.hero-dot{
  width:12px;
  height:12px;
  border:0;
  border-radius:999px;
  background:rgba(31,128,255,.22);
  cursor:pointer;
}
.hero-dot.is-active{background:#1f80ff}
.hero-nav{display:flex;gap:10px}
.hero-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#0f172a;
  cursor:pointer;
}

.whois-strip{padding-top:2px}
.whois-card{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(135deg,#0d1329,#161d39);
  color:#fff;
  box-shadow:0 28px 56px rgba(11,11,31,.18);
}
.whois-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}
.whois-brand{display:flex;align-items:center;gap:14px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.whois-brand-mark{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
}
.whois-copy small,.whois-aside small{display:block;color:rgba(255,255,255,.7)}
.whois-aside{text-align:right;font-weight:800}
.whois-aside span{display:block;font-size:1.2rem}
.whois-form{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:14px}
.whois-input-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:70px;
  padding:12px 18px;
  background:#fff;
  border-radius:16px;
  border:2px solid rgba(255,255,255,.16);
}
.whois-input-wrap svg{width:26px;height:26px;color:#6b7280;flex-shrink:0}
.whois-input-wrap input{
  flex:1;
  min-height:44px;
  padding:0;
  border:0;
  background:transparent;
  color:#111827;
}
.whois-input-wrap input:focus{outline:0}
.whois-submit{min-width:180px}
.whois-tlds span{
  padding:8px 12px;
  background:rgba(255,255,255,.08);
  border-radius:999px;
  font-weight:700;
}

.benefits-grid,.plans-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.benefit-card,.pricing-card,.contact-panel,.contact-form-wrap,.faq-info,.testimonial-card{padding:28px}
.benefit-card h3,.testimonial-card h3,.contact-panel h2,.contact-form-wrap h2{margin:0 0 10px}
.benefit-card p,.contact-panel p,.contact-form-wrap p,.testimonial-card p{margin:0;color:var(--muted)}

.showcase-card{
  display:grid;
  grid-template-columns:minmax(320px,.95fr) minmax(0,1.05fr);
  gap:34px;
  align-items:center;
  padding:34px;
}
.showcase-card.reverse{grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr)}
.showcase-copy h2{margin:0 0 14px;line-height:1.06;letter-spacing:-.03em}
.showcase-copy p{margin:0 0 14px;color:var(--muted)}
.showcase-list{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:10px}
.showcase-list li{display:flex;align-items:flex-start;gap:10px;color:#143046;font-weight:600}
.showcase-list li::before{
  content:"";
  width:18px;
  height:18px;
  margin-top:3px;
  border-radius:6px;
  background:linear-gradient(135deg,#10b981,#0f8d63);
}
.showcase-links{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px}
.showcase-link{display:inline-flex;align-items:center;gap:8px;font-weight:800;color:#0f5e78}
.showcase-visual{
  position:relative;
  min-height:400px;
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(103,61,230,.1);
  background:linear-gradient(135deg,rgba(16,185,129,.1),rgba(103,61,230,.08));
}
.showcase-visual::before{
  content:"";
  position:absolute;
  inset:28px;
  border:3px solid rgba(16,185,129,.28);
  border-radius:22px;
}
.showcase-portrait{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(68%,280px);
  height:82%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  color:#5b6280;
  text-align:center;
  font-weight:800;
  border-radius:24px 24px 0 0;
  border:2px dashed rgba(103,61,230,.2);
  background:linear-gradient(180deg,rgba(103,61,230,.15),rgba(17,24,39,.05));
}
.showcase-portrait::before{
  content:"Imagen personalizada";
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.82);
}
.showcase-grid-lines{
  position:absolute;
  inset:18px;
  border-radius:24px;
  background:
    linear-gradient(rgba(16,185,129,.12) 0 0) 0 25%/100% 3px no-repeat,
    linear-gradient(rgba(16,185,129,.12) 0 0) 0 75%/100% 3px no-repeat;
}
.showcase-chip,.showcase-panel,.showcase-caption{
  position:absolute;
  background:#fff;
  box-shadow:0 14px 28px rgba(15,23,42,.12);
}
.showcase-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:16px;
  color:#0f2742;
  font-weight:800;
}
.showcase-chip strong,.showcase-chip small{display:block}
.showcase-chip small{color:#536178;font-weight:700}
.showcase-chip.icon{
  width:58px;
  height:58px;
  justify-content:center;
  background:linear-gradient(135deg,#10b981,#17c39a);
  color:#fff;
}
.showcase-chip.top-left{top:28px;left:24px}
.showcase-chip.center-left{left:26px;bottom:72px}
.showcase-chip.right{right:22px;top:114px}
.showcase-caption{
  left:22px;
  top:22px;
  padding:9px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#10b981,#2dcda5);
  color:#fff;
  font-weight:900;
}
.showcase-panel{
  left:22px;
  bottom:24px;
  max-width:190px;
  padding:14px 16px;
  border-radius:18px;
  color:#15324c;
}
.showcase-panel strong,.showcase-panel span{display:block}
.showcase-panel span{color:#536178}

.migration-banner{
  padding:52px clamp(24px,5vw,50px);
  text-align:center;
  color:#fff;
  background:linear-gradient(135deg,#4521ad 0%,#673de6 52%,#8b5cf6 100%);
  border-radius:26px;
  box-shadow:0 28px 60px rgba(103,61,230,.28);
}
.migration-banner p{
  margin:0 0 12px;
  color:rgba(255,255,255,.82);
  font-size:1.02rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.migration-banner h2{margin:0 auto 16px;max-width:960px;font-size:clamp(2.15rem,4vw,3.35rem);line-height:1.01}
.migration-banner strong{display:block;max-width:820px;margin:0 auto 24px;color:#eef3ff}

.pricing-section .section-header p{max-width:900px}
.pricing-panel{display:grid;gap:22px}
.billing-toolbar{
  display:flex;
  justify-content:center;
  margin-bottom:8px;
}
.billing-switch{
  display:inline-grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px;
  padding:6px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 12px 24px rgba(15,23,42,.08);
  border:1px solid rgba(17,24,39,.08);
}
.billing-switch button{
  min-width:118px;
  min-height:46px;
  padding:0 18px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#223049;
  font-weight:800;
  cursor:pointer;
}
.billing-switch button.is-active{
  color:#fff;
  background:linear-gradient(135deg,#2f136f,#5d1c8b);
  box-shadow:0 10px 18px rgba(47,19,111,.24);
}
.pricing-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:32px 24px 26px;
}
.pricing-card.is-featured{
  padding-top:54px;
  border:2px solid rgba(25,122,173,.48);
  background:linear-gradient(180deg,#ffffff 0%,#f3fbff 100%);
  box-shadow:0 26px 56px rgba(22,111,162,.16);
}
.pricing-badge{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:136px;
  min-height:38px;
  padding:8px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#ffd66e,#ffe8a6);
  color:#183a56;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.02em;
  white-space:nowrap;
}
.pricing-card-header{
  display:grid;
  gap:10px;
  margin-bottom:18px;
  padding-top:2px;
  text-align:center;
}
.plan-name{margin:0;font-size:1.52rem;line-height:1.12;color:#0f5674}
.plan-description{margin:0;color:var(--muted)}
.price{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:10px;
  text-align:center;
}
.plan-price-amount,
.price strong,
.price{
  font-size:clamp(2rem,3.5vw,2.7rem);
  font-weight:900;
  line-height:1;
  color:#12364c;
}
.plan-price-period,.price small{
  font-size:1rem;
  font-weight:800;
  color:#26435a;
}
.plan-price-note{
  min-height:1.35em;
  margin-bottom:12px;
  text-align:center;
  font-size:.9rem;
  font-weight:800;
  color:#5c34d6;
}
.plans-actions{
  display:flex;
  justify-content:center;
  margin-top:28px;
}
.plans-actions .btn{min-width:220px}
.feature-list{
  list-style:none;
  padding:0;
  margin:18px 0 22px;
  display:grid;
  gap:10px;
  flex:1;
}
.feature-list li{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:10px;
  align-items:start;
}
.feature-list li::before{
  content:"";
  width:18px;
  height:18px;
  margin-top:4px;
  border-radius:50%;
  background:linear-gradient(135deg,#16c79a,#0f9f7b);
}
.dark-section{
  background:radial-gradient(circle at top left,rgba(139,92,246,.22),transparent 22%),var(--dark);
  color:#f9fafb;
}
.dark-section .section-header p{color:rgba(249,250,251,.72)}
.dark-section .card{background:rgba(255,255,255,.96)}
.section-actions{display:flex;justify-content:center;margin-top:28px}

.testimonial-stage{position:relative;overflow:hidden}
.testimonial-card{max-width:880px;margin:0 auto;text-align:left}
.testimonial-stars{margin-bottom:14px;color:#f59e0b;letter-spacing:.18em}
.testimonial-card blockquote{margin:0 0 22px;font-size:1.14rem}
.testimonial-person{display:flex;align-items:center;gap:16px}
.testimonial-avatar{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  flex-shrink:0;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(103,61,230,.16),rgba(16,185,129,.18));
  border:2px solid rgba(103,61,230,.14);
}
.testimonial-avatar span{font-size:1.1rem;font-weight:900;color:#2f3b63}
.testimonial-avatar-note{font-size:.86rem;color:#69758d}
.testimonial-meta strong{display:block}
.testimonial-dots{display:flex;justify-content:center;gap:10px;margin-top:16px}
.testimonial-dots button{
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:transparent;
  cursor:pointer;
}
.testimonial-dots button::before{
  content:"";
  display:block;
  width:12px;
  height:12px;
  margin:auto;
  border-radius:50%;
  background:rgba(103,61,230,.2);
}
.testimonial-dots button.active::before{background:var(--primary)}

.faq-layout,.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:20px}
.faq-info{
  background:linear-gradient(180deg,#ffffff,#eef2ff);
  border:1px solid rgba(103,61,230,.12);
}
.faq-info h2{margin:0 0 14px;color:#12283a}
.faq-info p,.faq-info li{color:#42506a}
.accordion{display:grid;gap:14px}
.accordion-item{
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
}
.accordion-button{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  border:0;
  background:none;
  color:#12364c;
  text-align:left;
  font-weight:800;
  cursor:pointer;
}
.accordion-button span{color:#12364c}
.accordion-body{display:none;padding:0 22px 22px;color:#475569;background:#fff}
.accordion-item.active .accordion-body{display:block}

.contact-point{
  margin-top:12px;
  padding:18px;
  border-radius:16px;
  background:rgba(103,61,230,.06);
  border:1px solid rgba(103,61,230,.1);
}
.contact-point p{margin:6px 0 0}
.contact-form{display:grid;gap:16px}
.form-row{display:grid;grid-template-columns:1fr;gap:16px}
.form-group{display:grid;gap:8px}
.form-group label{font-weight:800}
.form-control{
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(17,24,39,.12);
  border-radius:14px;
  background:#fff;
}
.form-control:focus{outline:0;border-color:rgba(103,61,230,.52);box-shadow:0 0 0 4px rgba(103,61,230,.1)}
.form-hint{font-size:.9rem;color:var(--muted)}
.field-error{min-height:1.2em;font-size:.86rem;color:#c62828}
.turnstile-wrap{
  padding:14px;
  border:1px dashed rgba(103,61,230,.26);
  border-radius:16px;
  background:rgba(103,61,230,.03);
}
.form-feedback{display:none;padding:14px 16px;border-radius:14px;font-weight:800}
.form-feedback.show{display:block}
.form-feedback.success{background:rgba(16,185,129,.1);color:#065f46}
.form-feedback.error{background:rgba(239,68,68,.12);color:#991b1b}

.site-footer{
  padding:42px 0 24px;
  background:linear-gradient(180deg,#0a0a17,#0d1025);
  color:rgba(249,250,251,.86);
}
.footer-grid{display:grid;grid-template-columns:1.25fr .92fr .88fr .95fr;gap:24px;align-items:start}
.footer-brand-card,.footer-card,.footer-feature-band{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  border-radius:20px;
  box-shadow:0 18px 36px rgba(0,0,0,.12);
}
.footer-brand-card{padding:28px}
.footer-card{padding:24px}
.footer-brand-card h3,.footer-card h4,.footer-feature-copy h4,.footer-book-card h4{margin:0 0 14px}
.footer-brand-card p,.footer-card p,.footer-card li,.footer-feature-copy p{color:rgba(249,250,251,.72)}
.footer-mini-brand{display:grid;gap:16px;margin-bottom:18px}
.footer-logo-image{width:min(100%,228px)}
.footer-trust-pills,.payments-inline{display:flex;flex-wrap:wrap;gap:10px}
.footer-trust-pills span,.payment-pill,.book-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:700;
}
.payment-pill{
  gap:10px;
  padding:10px 14px;
}
.payment-pill svg{
  width:20px;
  height:20px;
  fill:currentColor;
  flex-shrink:0;
}
.footer-links,.social-links,.footer-contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.footer-links a,.social-links a{color:rgba(249,250,251,.82)}
.social-links a{display:inline-flex;align-items:center;gap:10px}
.social-links svg{width:18px;height:18px;fill:currentColor}
.footer-contact-line strong{display:block;margin-bottom:2px;color:#fff}
.footer-feature-band{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:18px;
  margin-top:22px;
  padding:22px;
}
.footer-book-card{
  padding:20px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.footer-book-card p{margin:0 0 14px;color:rgba(249,250,251,.72)}
.book-pill{padding:12px 16px;border-radius:16px}
.book-pill img{width:min(100%,220px)}
.footer-bottom{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding-top:18px;
  margin-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-bottom-meta{
  display:flex;
  align-items:center;
  gap:10px 14px;
  flex-wrap:wrap;
  color:rgba(249,250,251,.84);
  font-weight:700;
  justify-self:start;
}
.footer-ip-label{color:rgba(249,250,251,.66)}
.footer-ip-value{color:#fff}
.footer-bottom-copy{color:rgba(249,250,251,.92);justify-self:center;text-align:center}
.footer-bottom-spacer{justify-self:end}
.footer-divider{color:rgba(249,250,251,.34)}
.footer-visitor-flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  height:28px;
  padding:0 8px;
  background:rgba(255,255,255,.12);
  border-radius:999px;
  font-size:1.08rem;
}

.cookies-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:1200;
  display:none;
  padding:20px;
  color:#fff;
  background:rgba(11,11,31,.96);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
}
.cookies-banner.show{display:block}
.cookies-banner p{margin:0 0 10px}
.cookies-options label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
}
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1190;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%,#5af18d,#25d366 62%);
  box-shadow:0 18px 32px rgba(37,211,102,.32);
  animation:whatsappPulse 2.2s ease-in-out infinite;
}
.whatsapp-float img{width:30px;height:30px}
@keyframes whatsappPulse{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-3px) scale(1.04)}}

.legal-page main{padding-bottom:40px}
.legal-shell{padding:34px 0 60px}
.legal-stack{display:grid;gap:18px}
.legal-hero,.legal-card{
  padding:32px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:var(--shadow);
}
.legal-hero h1,.legal-card h2{margin:0 0 12px;line-height:1.06;letter-spacing:-.03em}
.legal-hero p,.legal-card p{margin:0;color:var(--muted)}
.legal-back-link{display:inline-flex;align-items:center;gap:8px;margin-top:16px;font-weight:800;color:var(--primary)}

.hero-dot:focus-visible,.hero-arrow:focus-visible,.btn:focus-visible,.nav-toggle:focus-visible,.billing-switch button:focus-visible{
  outline:3px solid rgba(31,128,255,.22);
  outline-offset:3px;
}

@media (max-width:1180px){
  .footer-grid,.footer-feature-band,.showcase-card,.showcase-card.reverse,.faq-layout,.contact-grid{grid-template-columns:1fr}
  .hero-pane-inner{grid-template-columns:1fr}
  .hero-benefits,.benefits-grid,.plans-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-art{justify-content:center}
  .hero-proof{grid-template-columns:1fr;gap:12px}
}

@media (max-width:860px){
  .topbar-inner{padding:10px 0;align-items:flex-start;flex-direction:column}
  .topbar-group{width:100%}
  .topbar-group-contacts{justify-content:flex-start}
  .topbar-link{min-height:34px}
  .nav-toggle{display:inline-flex}
  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:20px var(--page-gutter);
    background:#fff;
    border-bottom:1px solid rgba(17,24,39,.08);
  }
  .nav-links.open{display:flex}
  .nav-cta{display:none}
  .navbar{position:relative}
  .whois-top,.whois-form{grid-template-columns:1fr;flex-direction:column;align-items:flex-start}
  .whois-aside{text-align:left}
  .hero-art{display:none}
  .footer-bottom{grid-template-columns:1fr}
  .footer-bottom-copy,.footer-bottom-meta,.footer-bottom-spacer{justify-self:start;text-align:left}
}

@media (max-width:720px){
  .section{padding:34px 0}
  .hero-pane-inner{min-height:auto;padding:24px 18px}
  .hero-title{font-size:clamp(2rem,10vw,3rem)}
  .hero-benefits,.benefits-grid,.plans-grid,.form-row{grid-template-columns:1fr}
  .hero-controls{padding:0 18px 22px}
  .showcase-card{padding:24px}
  .showcase-visual{min-height:340px}
  .showcase-portrait{width:min(74%,240px);height:74%}
  .showcase-chip.center-left{bottom:26px}
  .showcase-chip.right{top:auto;bottom:122px}
  .showcase-panel{left:18px;right:18px;max-width:none}
  .migration-banner{padding:40px 22px}
  .testimonial-person{align-items:flex-start}
  .footer-divider{display:none}
  .billing-switch{width:100%}
  .billing-switch button{min-width:0}
}
