/* ============================================================
   Go Sites — Shared Styles
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */

:root {
  --bg: #002046;
  --bg2: #1b365d;
  --white: #ffffff;
  --accent: #fd9923;
  --muted: rgba(255,255,255,0.6);
  --border: rgba(255,255,255,0.1);
  --card: rgba(255,255,255,0.05);
  --card-hover: rgba(255,255,255,0.08);
}

/* ── Reset ────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ─────────────────────────────────────────────────── */

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: block;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* ── Page system ──────────────────────────────────────────── */

.page { display: none; }
.page.active { display: block; }

/* ── Navigation ───────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(0, 32, 70, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  opacity: 1 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 1.5rem;
}

.nav-cta:hover { background: #ffa93e !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Shared section styles ────────────────────────────────── */

.section {
  padding: 6rem 3rem;
  border-top: 1px solid var(--border);
}

.s-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.s-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.s-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
}

/* ── Marquee ──────────────────────────────────────────────── */

.marquee {
  background: var(--accent);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marq 22s linear infinite;
}

@keyframes marq { from{transform:translateX(0)} to{transform:translateX(-25%)} }

.m-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--bg);
}

.m-dot { width: 5px; height: 5px; background: var(--bg); border-radius: 50%; flex-shrink: 0; }

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 1.5rem;
  transition: all 0.2s;
}

.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: #ffa93e; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 1.5rem;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-ghost:hover  { background: rgba(255, 255, 255, 0.16); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0); }

.btn-submit {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 1.5rem;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--bg);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-submit:hover  { background: #ffa93e; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

/* ── Fade-in animation ────────────────────────────────────── */

.fi { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fi.vis { opacity: 1; transform: none; }

/* ── HOME: Hero ───────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 65% 20%, rgba(253,153,35,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 55% at 15% 85%, rgba(0,32,70,.3) 0%, transparent 65%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 1rem;
  margin-bottom: 1.8rem;
  width: fit-content;
  margin-top: auto;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--bg);
  border-radius: 50%;
  animation: blink 1.3s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 50vw;
  margin-bottom: auto;
  margin-right: auto;
}

.hero-h1 .ac { color: var(--accent); }
.hero-h1 .sk { color: #93c5fd; }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 400px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-left { display: flex; flex-direction: column; gap: 2rem; max-width: 50vw; }

.hero-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: auto;
}

.hero-offer {
  border: 1px solid rgba(253,153,35,0.35);
  background: rgba(253,153,35,0.06);
  border-radius: 0.75rem;
  padding: 2.5rem;
  max-width: 600px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-offer-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-offer-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1;
}
.hero-offer-price span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-offer-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}
.hero-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-offer-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}
.hero-offer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.h-stat { padding: 1.8rem 2rem; border-right: 1px solid var(--border); }
.h-stat:last-child { border-right: none; }

.h-stat-n {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}

.h-stat-l {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── HOME: Honest section ─────────────────────────────────── */

.honest {
  padding: 5rem 3rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--border);
}

.honest-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.honest-tag {
  display: inline-block;
  background: rgba(253,153,35,0.15);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.pick2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 2rem;
}

.pick2-card { background: rgba(0,32,70,0.8); padding: 1.8rem 1.5rem; }
.pick2-card.us { background: rgba(253,153,35,0.08); border: 1px solid rgba(253,153,35,0.25); }

.pick2-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pick2-val { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.pick2-val.yes { color: var(--accent); }
.pick2-val.no { color: var(--muted); text-decoration: line-through; }

/* ── HOME: Process steps ──────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}

.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.step:last-child { border-right: none; }
.step:hover { background: rgba(253,153,35,0.04); }

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}

.step:hover::before { background: var(--accent); }

.step-n {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.step-ico { font-size: 1.6rem; margin-bottom: 0.8rem; }
.step h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.step p { font-family: 'Inter', sans-serif; font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

/* ── HOME: Bottom CTA ────────────────────────────────────── */

.home-cta {
  padding: 7rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(253,153,35,0.07) 0%, transparent 70%);
}

.home-cta-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.home-cta-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.home-cta-title span { color: var(--accent); }

.home-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.home-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PRICING ──────────────────────────────────────────────── */

.pricing-hero {
  padding: 9rem 3rem 5rem;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(253,153,35,0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}

.pricing-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.ph-right { display: flex; flex-direction: column; gap: 1.2rem; }

.ph-callout {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--card);
}

.ph-callout-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.ph-callout-text { font-family: 'Inter', sans-serif; font-size: 0.88rem; line-height: 1.7; color: var(--muted); }

.speed-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  margin: 3rem auto 0;
  overflow: hidden;
}

.speed-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.45;
}

.speed-btn.active {
  background: var(--accent);
  color: var(--bg);
  opacity: 1;
  font-weight: 600;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.p-card {
  background: rgba(0,32,70,0.6);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}

.p-card:hover { background: rgba(27,54,93,0.8); }
.p-card.featured { background: rgba(27,54,93,0.9); border-top: 3px solid var(--accent); }

.p-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.p-card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.p-card-type { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; }
.p-price { margin-bottom: 2rem; }

.p-price-amt {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}

.p-price-amt .curr { font-size: 1.8rem; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.p-price-note { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }
.p-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.p-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.p-features li::before { content: '→'; color: var(--accent); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.1rem; }
.p-features li.inc { color: var(--white); }

.p-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--bg);
  padding: 0.9rem;
  border-radius: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.p-cta:hover { background: #ffa93e; transform: translateY(-1px); }

.p-cta.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.p-cta.outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; transform: translateY(-1px); }

/* ── PRICING: Limits ──────────────────────────────────────── */

.limits-box {
  margin: 3rem;
  border: 1px solid rgba(253,153,35,0.25);
  padding: 3rem;
  background: rgba(253,153,35,0.04);
  border-radius: 0.5rem;
}

.limits-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.limits-sub { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }
.limits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.limit-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.limit-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.limit-text { font-family: 'Inter', sans-serif; font-size: 0.85rem; line-height: 1.65; color: var(--muted); }
.limit-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 0.2rem; }

/* ── PRICING: Hosting ─────────────────────────────────────── */

.hosting-section { padding: 5rem 3rem; border-top: 1px solid var(--border); }

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.h-card { background: rgba(0,32,70,0.6); padding: 2.5rem 2rem; }
.h-card-label { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
.h-card-price { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--accent); line-height: 1; margin-bottom: 0.3rem; }
.h-card-price span { font-size: 0.5em; font-weight: 400; opacity: 0.7; }
.h-card-period { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); margin-bottom: 1.2rem; }
.h-card-desc { font-family: 'Inter', sans-serif; font-size: 0.85rem; line-height: 1.7; color: var(--muted); min-height: 46px;}
.h-card-note { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--border); font-style: italic; }

/* ── PRICING: Updates ─────────────────────────────────────── */

.updates-section { padding: 0 3rem 5rem; }

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.u-card { background: rgba(0,32,70,0.6); padding: 2.5rem 2rem; }
.u-card-label { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
.u-card-price { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
.u-card.highlight .u-card-price { color: var(--accent); }
.u-card-period { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); margin-bottom: 1.2rem; }
.u-card-desc { font-family: 'Inter', sans-serif; font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

/* ── GUARANTEE ────────────────────────────────────────────── */

.guarantee-hero {
  padding: 10rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(253,153,35,0.08) 0%, transparent 70%);
}

.g-h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 800px;
}

.g-h1 .or { color: var(--accent); }
.g-sub { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.75; margin-top: 1.8rem; }

.g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.g-card { background: rgba(0,32,70,0.6); padding: 3.5rem 3rem; transition: background 0.3s; }
.g-card:hover { background: rgba(27,54,93,0.8); }
.g-card ul { padding-left: 1.5rem; list-style: disc; }
.g-card ul li::marker { color: var(--white); }

.g-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  color: rgba(253,153,35,0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.g-title { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.g-title span { color: var(--accent); }
.g-text { font-family: 'Inter', sans-serif; font-size: 0.88rem; line-height: 1.8; color: var(--muted); }

.refund-banner {
  margin: 3rem;
  border: 1px solid rgba(253,153,35,0.3);
  background: rgba(253,153,35,0.05);
  padding: 3rem;
  border-radius: 0.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.rb-icon { font-size: 3.5rem; flex-shrink: 0; }
.rb-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--accent); margin-bottom: 0.5rem; }
.rb-text { font-family: 'Inter', sans-serif; font-size: 0.88rem; line-height: 1.75; color: var(--muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.t-card {
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 0.5rem;
  transition: border-color 0.3s;
  background: var(--card);
}

.t-card:hover { border-color: var(--accent); }
.t-q { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2rem; color: var(--accent); margin-bottom: 0.8rem; }
.t-text { font-family: 'Inter', sans-serif; font-size: 0.87rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.5rem; }
.t-author { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); opacity: 0.7; }

/* ── CONTACT ──────────────────────────────────────────────── */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.contact-left {
  padding: 10rem 4rem 5rem 3rem;
  border-right: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 50% at 0% 60%, rgba(253,153,35,0.05) 0%, transparent 70%);
}

.contact-right { padding: 10rem 3rem 5rem 4rem; }

.c-h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.c-h1 span { color: var(--accent); }
.c-sub { font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.75; color: var(--muted); }
.c-info { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.c-info li { display: flex; gap: 1rem; align-items: flex-start; }

.c-ico {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: var(--card);
}

.c-label { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.c-val { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--white); }
.c-val a { color: inherit;}

.c-promise {
  margin-top: 3rem;
  padding: 1.8rem;
  border: 1px solid rgba(253,153,35,0.2);
  background: rgba(253,153,35,0.04);
  border-radius: 0.5rem;
}

.cp-tag { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.cp-text { font-family: 'Inter', sans-serif; font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

.form-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.f-group { margin-bottom: 1.4rem; }
.f-label { display: block; font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }

.f-input, .f-select, .f-textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.f-input::placeholder, .f-textarea::placeholder { color: rgba(255,255,255,0.25); }
.f-select option { background: #002046; color: var(--white); }
.f-textarea { resize: vertical; min-height: 110px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.f-submit {
  width: 100%;
  background: var(--accent);
  border: none;
  color: var(--bg);
  padding: 1.05rem;
  border-radius: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.f-submit:hover { background: #ffa93e; transform: translateY(-1px); }

.f-radio-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.f-radio { display: flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--muted); cursor: pointer; }
.f-radio input { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }

.f-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(253,153,35,0.25);
  background: rgba(253,153,35,0.04);
  border-radius: 0.5rem;
}

.fs-ico { font-size: 2.5rem; margin-bottom: 1rem; }
.fs-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--accent); margin-bottom: 0.5rem; }
.fs-text { font-family: 'Inter', sans-serif; font-size: 0.88rem; line-height: 1.7; color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(0,0,0,0.15);
}

.f-logo { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); }
.f-logo span { color: var(--accent); }
.f-copy { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--muted); }
.f-copy a { color: inherit; }
.f-nav { display: flex; gap: 2rem; }
.f-nav a { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.f-nav a:hover { color: var(--white); }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; flex-wrap: wrap; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0.75rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    opacity: 0.8;
  }
  .hero-left { max-width: 100%; }
  .hero-offer { max-width: 100%; }
  .hero-heading-row { flex-direction: column; }
  .nav-cta { border-radius: 0; background: none !important; color: var(--accent) !important; padding: 0.75rem 0; }
  .hero, .section, .pricing-hero, .guarantee-hero, .hosting-section, .updates-section, .honest, .home-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .h-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 1.2rem 1.5rem; }
  .h-stat:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .honest-inner, .pricing-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-cards, .hosting-grid, .updates-grid { grid-template-columns: 1fr; }
  .limits-grid { grid-template-columns: 1fr; }
  .limits-box, .refund-banner { margin-left: 1.5rem; margin-right: 1.5rem; }
  .refund-banner { flex-direction: column; gap: 1.5rem; }
  .g-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left { padding: 8rem 1.5rem 3rem; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-right { padding: 3rem 1.5rem; }
  .f-row { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}
