@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&display=swap');

/* ── TOKENS ── */
:root {
  --bg:          #0d0f14;
  --bg2:         #13161e;
  --bg3:         #1a1e2a;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --text:        #f0ece4;
  --muted:       #8a8fa0;
  --border:      rgba(201,168,76,0.15);
  --shadow:      0 12px 32px rgba(0,0,0,0.35);
  --radius:      16px;
  --max:         1060px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

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

.section      { padding: 80px 0; }
.section-alt  { background: var(--bg2); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-head h1,
.section-head h2 { margin-bottom: 12px; }
.section-head p  { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.1;
}
h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; }

h1 em, h2 em { font-style: normal; color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { display: none; }

.lead  { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.75; }
.muted { color: var(--muted); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,15,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { height: 38px; width: auto; }
.brand-placeholder {
  height: 38px; width: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #a07830);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 18px;
  color: var(--bg);
  flex-shrink: 0;
}
.brand-text     { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name     { font-weight: 700; font-size: 17px; font-family: 'DM Sans', sans-serif; }
.brand-sub      { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }

.nav { display: flex; gap: 6px; }
.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover       { color: var(--text); background: var(--bg3); }
.nav-link.active      { color: var(--text); background: var(--bg3); }
.nav-link.nav-cta     { background: var(--gold); color: var(--bg) !important; font-weight: 700; }
.nav-link.nav-cta:hover { background: var(--gold-light) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(201,168,76,0.28);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(240,236,228,0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── CARDS ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.card-top-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 10px;
  margin-top: 2px;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner p { font-size: 13px; color: var(--muted); }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

/* ── WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(21, 92, 58, 0.96);
  color: #fff;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 1px solid rgba(110, 232, 154, 0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.26);
  transition: transform 0.2s, box-shadow 0.2s, padding 0.2s, font-size 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.34);
}
.whatsapp-float svg  {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── FORMS ── */
.form-wrap  { max-width: 620px; margin: 0 auto; }
.form-card  { background: var(--bg2); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.field      { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
label       { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
input, textarea {
  background: var(--bg3);
  border: 1.5px solid rgba(240,236,228,0.08);
  border-radius: 12px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(138,143,160,0.55); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); margin-bottom: 8px; }
.form-success p  { color: var(--muted); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }


/* ── HERO (index) ── */
.hero { padding: 90px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-lead { font-size: 17px; color: var(--muted); margin-bottom: 36px; font-weight: 300; line-height: 1.7; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HERO CARD ── */
.hero-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 24px; padding: 36px; position: relative; overflow: hidden; }
.hero-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.price-display { text-align: center; padding: 24px 0 22px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 8px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900; color: var(--gold); line-height: 1; }
.price-amount sup { font-size: 26px; vertical-align: super; }
.price-sub { font-size: 13px; color: var(--muted); margin-top: 6px; }
.quick-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.quick-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); font-weight: 500; }
.check { width: 20px; height: 20px; border-radius: 50%; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 10px; }

/* ── INCLUDED GRID ── */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.included-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: border-color 0.2s, transform 0.2s; }
.included-item:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.item-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px; }
.included-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.included-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── PRICING CARD ── */
.pricing-card { max-width: 660px; margin: 0 auto; background: var(--bg3); border: 1px solid var(--border); border-radius: 28px; overflow: hidden; }
.pricing-top { padding: 44px; text-align: center; border-bottom: 1px solid var(--border); position: relative; }
.pricing-top::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.pricing-top h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.pricing-top .sub { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.big-price { font-family: 'Playfair Display', serif; font-size: 84px; font-weight: 900; color: var(--gold); line-height: 1; }
.big-price sup { font-size: 34px; vertical-align: super; }
.price-note { font-size: 13px; color: var(--muted); margin-top: 8px; }
.pricing-features { padding: 32px 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.pricing-bottom { padding: 24px 44px 38px; text-align: center; border-top: 1px solid var(--border); }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 840px; margin: 0 auto; }
.why-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: border-color 0.2s, transform 0.2s; }
.why-item:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }

/* ── CTA STRIP ── */
.cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 36px 40px; background: var(--bg3); border: 1px solid var(--border); border-radius: 28px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 8px; }
.cta-strip p { color: var(--muted); font-size: 15px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-copy > * { animation: fadeUp 0.6s ease both; }
.hero-copy > *:nth-child(1) { animation-delay: 0s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.24s; }

.btn-lg { font-size: 16px !important; padding: 15px 32px !important; }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }


/* ── PRICING PAGE ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1), 0 20px 40px rgba(0,0,0,0.3);
}
.pricing-card .pricing-top {
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.pricing-card.featured .pricing-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.badge-popular { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge-standard { background: rgba(240,236,228,0.06); color: var(--muted); border: 1px solid rgba(240,236,228,0.1); }
.plan-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.plan-sub { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: var(--gold); line-height: 1; }
.plan-price sup { font-size: 28px; vertical-align: super; }
.plan-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.pricing-card .pricing-features { padding: 28px 36px; flex: 1; }
.pricing-card .pricing-features h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.pricing-card .pricing-bottom { padding: 20px 36px 32px; border-top: 1px solid var(--border); }

/* Hosting plans grid */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hosting-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.hosting-card.annual { border-color: rgba(201,168,76,0.3); }


/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 10px; font-style: normal; }
.check-icon.muted { background: rgba(138,143,160,0.1); border-color: rgba(138,143,160,0.2); color: var(--muted); }
.muted-text { color: var(--muted); }


/* ── PAGES GRID ── */
.pages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.page-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: border-color 0.2s, transform 0.2s; }
.page-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.page-icon { font-size: 28px; margin-bottom: 14px; }
.page-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.page-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── ALSO INCLUDED ── */
.also-included { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.also-item { display: flex; gap: 18px; align-items: flex-start; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.also-icon { font-size: 24px; flex-shrink: 0; }
.also-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.also-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: var(--gold); }
.step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PAGE HERO ── */
.page-hero { padding: 72px 0 60px; }
.page-hero .lead { max-width: 520px; margin-top: 16px; }

/* ── FOOTER NAV ── */
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  /* Nav */
  nav .nav-link:not(.nav-cta) { display: none; }

  /* Container */
  .container { padding: 0 18px; }

  /* Sections */
  .section { padding: 56px 0; }

  /* Typography */
  h1 { font-size: clamp(28px, 7vw, 48px); }
  h2 { font-size: clamp(24px, 5vw, 36px); }
  .lead { font-size: 16px; }
  .section-head { margin-bottom: 36px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pages-grid { grid-template-columns: 1fr 1fr; }
  .also-included { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hosting-grid { grid-template-columns: 1fr 1fr; }

  /* Hero */
  .hero { padding: 60px 0 48px; }
  .hero-home { padding: 60px 0 48px !important; }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-card { padding: 26px; }

  /* Included grid */
  .included-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing card internals */
  .pricing-card .pricing-top { padding: 28px 24px 22px; }
  .pricing-card .pricing-features { padding: 22px 24px; }
  .pricing-card .pricing-bottom { padding: 18px 24px 26px; }
  .plan-price { font-size: 56px; }

  /* Cards */
  .card { padding: 24px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }

  /* CTA strip */
  .cta-strip {
    flex-direction: column !important;
    text-align: center;
    padding: 28px 24px !important;
    gap: 20px !important;
  }
  .cta-strip .cta-btns {
    justify-content: center;
  }

  /* Grids */
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .pages-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr 1fr !important; }
  .hosting-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Sections */
  .section { padding: 40px 0; }

  /* Typography */
  h1 { font-size: clamp(26px, 8vw, 38px); }
  h2 { font-size: clamp(22px, 6vw, 30px); }

  /* Hero */
  .hero { padding: 40px 0 32px; }
  .hero-home { padding: 48px 0 36px !important; }
  .hero-card { padding: 20px 18px; }
  .price-amount { font-size: 52px; }

  /* Cards */
  .card { padding: 20px 18px; border-radius: 16px; }

  /* Forms */
  .form-card { padding: 22px 16px; }

  /* Grids */
  .why-grid { grid-template-columns: 1fr !important; }
  .included-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr !important; }
  .also-included { grid-template-columns: 1fr !important; }

  /* Pricing card internals */
  .plan-price { font-size: 52px; }

  /* CTA strip */
  .cta-strip { border-radius: 16px !important; }
  .cta-strip h2 { font-size: clamp(20px, 5vw, 26px) !important; }

  /* Buttons */
  .btn { padding: 13px 20px; font-size: 14px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  /* Header */
  .header-inner { padding: 14px 0; }
  .brand-logo { height: 30px; }
  .nav-link { padding: 8px 12px; font-size: 13px; }


  /* Page hero */
  .page-hero { padding: 48px 0 40px; }
}

/* ── COMPARE TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--muted);
  width: 45%;
}
.compare-table thead tr {
  background: rgba(255,255,255,0.03);
}
.compare-table th {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}
.compare-table th.col-head {
  color: var(--gold);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table td.yes { color: var(--gold); font-size: 16px; }
.compare-table td.no  { color: var(--muted); font-size: 16px; }


/* ── STYLING REFINEMENTS ── */
:root {
  --border-strong: rgba(201,168,76,0.24);
  --surface-soft: rgba(255,255,255,0.03);
  --surface-panel: linear-gradient(180deg, rgba(26,30,42,0.95) 0%, rgba(19,22,30,0.98) 100%);
  --success: #6ee89a;
}

body {
  background:
    radial-gradient(circle at top right, rgba(201,168,76,0.06), transparent 24%),
    linear-gradient(180deg, #0d0f14 0%, #0f1218 100%);
}

.site-header {
  background: rgba(13,15,20,0.84);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  border-color: rgba(201,168,76,0.16);
}

.hero-card,
.pricing-card,
.page-card,
.included-item,
.why-item,
.also-item,
.step,
.form-card,
.cta-strip,
.compare-wrap,
.ownership-note,
.hosting-option-card {
  box-shadow: var(--shadow);
}

.hero-card,
.pricing-card,
.page-card,
.included-item,
.why-item,
.also-item,
.step,
.form-card,
.cta-strip,
.compare-wrap,
.ownership-note,
.hosting-option-card,
.self-host-note {
  background-image: var(--surface-panel);
}

.hero-card,
.pricing-card,
.page-card,
.included-item,
.why-item,
.also-item,
.step,
.form-card,
.cta-strip,
.compare-wrap,
.ownership-note,
.hosting-option-card {
  border-color: rgba(201,168,76,0.18);
}

.included-item,
.why-item,
.page-card,
.also-item,
.step,
.pricing-card,
.hero-card,
.hosting-option-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.included-item:hover,
.why-item:hover,
.page-card:hover,
.also-item:hover,
.step:hover,
.pricing-card:hover,
.hero-card:hover,
.hosting-option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.34);
  box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.hero-lead,
.plan-sub,
.plan-note,
.price-sub,
.section-head p,
.also-item p,
.page-card p,
.why-copy,
.hosting-copy,
.hosting-copy-small,
.ownership-note-copy,
.compare-subhead {
  color: #a6abbb;
}

.pricing-card .pricing-features,
.pricing-card .pricing-bottom,
.hero-card .price-display {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.plan-footnote,
.form-note,
.section-link-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.section-link-note {
  margin-top: -16px;
}

.text-link-gold {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link-gold:hover {
  color: var(--gold-light);
  border-color: rgba(232,201,122,0.45);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.why-copy {
  font-size: 13px;
  line-height: 1.6;
}

.page-intro {
  max-width: 560px;
  margin-top: 16px;
}

.btn-compact {
  font-size: 16px;
  padding: 15px;
}

.self-host-note {
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(240,236,228,0.1);
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(240,236,228,0.05);
}

.ownership-note {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 20px 24px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(201,168,76,0.08), rgba(255,255,255,0.02));
}

.ownership-note-copy {
  font-size: 14px;
  line-height: 1.7;
}

.ownership-note-strong {
  color: var(--text);
}

.hosting-plans-shell {
  max-width: 860px;
  margin: 0 auto;
}

.hosting-intro {
  text-align: center;
  margin-bottom: 28px;
}

.hosting-title {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 8px;
}

.hosting-copy {
  font-size: 15px;
}

.hosting-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.hosting-option-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hosting-option-card.annual {
  border-color: rgba(201,168,76,0.32);
}

.hosting-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
}

.hosting-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hosting-price sup {
  font-size: 18px;
  vertical-align: super;
}

.hosting-price span {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--muted);
}

.hosting-copy-small {
  font-size: 13px;
  margin-top: 6px;
}

.hosting-note {
  font-size: 12px;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 9px 12px;
}

.hosting-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
}

.check-list-sm li {
  font-size: 13px;
}

.compare-wrap {
  max-width: 760px;
  margin: 0 auto;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.compare-subhead {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.compare-accent {
  color: var(--gold);
  font-weight: 700;
}

.compare-positive {
  color: var(--success);
  font-weight: 700;
}

.compare-table {
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  white-space: nowrap;
}

.compare-table th:first-child,
.compare-table td:first-child {
  white-space: normal;
}

.compare-table tbody tr:hover {
  background: rgba(255,255,255,0.025);
}

.whatsapp-float {
  background: rgba(21, 92, 58, 0.92);
  border: 1px solid rgba(110, 232, 154, 0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.26);
}

.whatsapp-float:hover {
  box-shadow: 0 16px 30px rgba(0,0,0,0.34);
}

@media (max-width: 860px) {
  .compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 620px;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 11px 15px;
    font-size: 14px;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0,0,0,0.24);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 560px) {
  .hosting-option-card,
  .ownership-note,
  .compare-wrap {
    border-radius: 16px;
  }

  .compare-table {
    min-width: 560px;
  }
}

@media (max-width: 380px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 10px;
    bottom: 10px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}


/* Footer simplified */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 24px;
}

.footer-inner,
.footer-inner-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.footer-inner p,
.footer-inner-simple p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-nav {
  display: none !important;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 28px 0 88px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 26px 0 84px;
  }
}


/* Mobile menu */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-desktop {
  display: flex;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(240,236,228,0.16);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: var(--bg3);
  border-color: rgba(201,168,76,0.28);
  color: var(--text);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(13,15,20,0.98);
  padding: 10px 24px 16px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-link {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: var(--bg3);
  color: var(--text);
}

@media (max-width: 860px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 8px;
  }

  .menu-toggle {
    min-width: 76px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 13px;
  }

  .mobile-menu {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 460px) {
  .header-actions {
    width: auto;
  }

  .header-cta {
    padding: 10px 14px;
  }
}


.hero-support {
  color: var(--gold-light);
  font-size: 15px;
  margin: -18px 0 30px;
  font-weight: 500;
}

.form-privacy-note {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.plan-note-strong {
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 13px;
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.legal-card h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 30px 0 10px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #c9cfdb;
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .legal-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .hero-support {
    margin-top: -10px;
  }
}


.email-note-inline {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  line-height: 1.6;
}


/* ── VISUALLY HIDDEN (SEO) ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
