/* ============================================================
   MARGARITA HOSTING — DESIGN SYSTEM 2026
   Light theme · Modern · SEO-friendly
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:           #f8f9fc;
  --bg2:          #ffffff;
  --surface:      rgba(0,0,0,0.03);
  --surface-b:    rgba(0,0,0,0.07);
  --accent:       #0ea5e9;       /* sky-500 */
  --accent-dark:  #0369a1;       /* sky-700 */
  --accent2:      #6366f1;       /* indigo-500 */
  --accent3:      #10b981;       /* emerald-500 */
  --text:         #0f172a;       /* slate-900 */
  --text-muted:   #64748b;       /* slate-500 */
  --text-dim:     #94a3b8;       /* slate-400 */
  --border:       #e2e8f0;       /* slate-200 */
  --card:         #ffffff;
  --card-shadow:  0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 8px 30px rgba(14,165,233,0.18);
  --radius:       20px;
  --radius-sm:    12px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent2));
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,249,252,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .18s, background .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-display) !important;
  box-shadow: 0 4px 14px rgba(14,165,233,0.35) !important;
  transition: transform .18s, box-shadow .18s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(14,165,233,0.45) !important; background: linear-gradient(135deg, var(--accent), var(--accent2)) !important; }

/* hamburger */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; transition: .25s; }
@media(max-width:820px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg2);
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; width: 100%; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp .7s both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--accent3);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent3);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 860px;
  margin: 0 auto 22px;
  animation: fadeUp .8s .07s both;
}
.grad {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeUp .9s .14s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s .2s both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 1s .35s both;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 18px rgba(14,165,233,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(14,165,233,0.5); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-block { display: block; text-align: center; width: 100%; }

/* ─── SECTION LABELS ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-item svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); border-color: rgba(14,165,233,0.25); }
.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(99,102,241,0.1));
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ─── FEATURES GRID ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
@media(max-width:900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .features-grid { grid-template-columns: 1fr; } }

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: start;
}
@media(max-width:900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.plan-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12), var(--card-shadow-hover);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.plan-price .cur { font-size: 20px; font-weight: 700; color: var(--text-muted); padding-top: 6px; }
.plan-price .amt {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.plan-price .per { font-size: 14px; color: var(--text-muted); }
.plan-desc { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.plan-features { margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-muted);
}
.plan-features li:last-child { border: none; }
.plan-features .chk { color: var(--accent3); font-size: 14px; flex-shrink: 0; font-weight: 700; }
.plan-features strong { color: var(--text); }

/* ─── REVIEWS ────────────────────────────────────────────── */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--card-shadow);
  transition: transform .2s, border-color .2s;
}
.review-card:hover { transform: translateX(4px); border-color: rgba(14,165,233,0.25); }
.review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 11px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.review-role { font-size: 12px; color: var(--text-muted); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(14,165,233,0.3); }
.faq-q {
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: var(--text);
}
.faq-q .arr { color: var(--accent); font-size: 18px; flex-shrink: 0; transition: transform .3s; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }
.faq-item.open .arr { transform: rotate(45deg); }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent2));
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  position: relative;
}
.cta-band p { font-size: 17px; opacity: .85; max-width: 460px; margin: 0 auto 32px; position: relative; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform .18s, box-shadow .18s;
  position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
@media(max-width:800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 270px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13.5px; transition: color .18s; }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.footer-bottom a { transition: color .18s; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── SECTION SPACING ────────────────────────────────────── */
.sec { padding: 88px 0; }
.sec-sm { padding: 64px 0; }
.sec-hdr { margin-bottom: 52px; }
.sec-hdr-center { text-align: center; }
.sec-hdr-center .section-sub { margin: 0 auto; }

/* ─── DIVIDERS ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── DOMAIN SEARCH ──────────────────────────────────────── */
.domain-box { max-width: 600px; margin: 36px auto 0; display: flex; }
.domain-input {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.domain-input::placeholder { color: var(--text-dim); }
.domain-input:focus { border-color: var(--accent); }
.domain-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 15px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity .2s;
}
.domain-btn:hover { opacity: .9; }
.domain-exts { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.domain-ext {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ─── PROSE (legal pages) ────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 10px;
  color: var(--text);
}
.prose h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 24px 0 8px; }
.prose p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose ul li { list-style: disc; color: var(--text-muted); font-size: 15px; margin-bottom: 6px; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  margin: 20px 0;
  padding: 12px 20px;
  background: rgba(14,165,233,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-style: italic;
}
.prose em { font-style: italic; color: var(--text-dim); font-size: 13px; display: block; margin-bottom: 28px; }
.prose strong { color: var(--text); font-weight: 600; }

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.ci-val { font-size: 13.5px; color: var(--text-muted); }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--card-shadow); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--accent); background: #fff; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:768px) { .about-grid { grid-template-columns: 1fr; } }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:480px) { .about-values { grid-template-columns: 1fr; } }
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--card-shadow);
  transition: border-color .2s, transform .2s;
}
.value-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-3px); }
.value-icon { font-size: 26px; margin-bottom: 10px; }
.value-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.value-card p { font-size: 13px; color: var(--text-muted); }
.quote-block {
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(99,102,241,0.06));
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.quote-block cite { font-size: 13px; color: var(--text-muted); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
  pointer-events: none;
}
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── VPS SPECS ──────────────────────────────────────────── */
.vps-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.vps-spec-row:last-child { border: none; }
.vps-spec-row .lbl { color: var(--text-muted); }
.vps-spec-row .val { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text); }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent-dark); transition: color .18s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }
