/* ============================================================
   EASY WEBSITES — STYLES
   Framer-inspired | Navy #1E3A5F | Orange #FF6B35 | Emerald #10B981
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1E3A5F;
  --navy-dark:   #142843;
  --navy-mid:    #243d5f;
  --orange:      #FF6B35;
  --orange-dark: #e55822;
  --orange-glow: rgba(255,107,53,0.35);
  --emerald:     #10B981;
  --slate:       #475569;
  --slate-light: #64748b;
  --white:       #ffffff;
  --off:         #f8fafc;
  --border:      #e2e8f0;

  --h-font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --b-font: 'Inter', system-ui, sans-serif;
  --r:  12px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(30,58,95,0.08);
  --shadow:    0 4px 24px rgba(30,58,95,0.10);
  --shadow-lg: 0 12px 48px rgba(30,58,95,0.16);
  --shadow-xl: 0 24px 80px rgba(30,58,95,0.22);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--b-font);
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--h-font);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--orange); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

.text-white    { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,0.72) !important; }
.text-center   { text-align: center; }
.body-lg { font-size: 1.1rem; line-height: 1.8; color: var(--slate); }

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a6c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- LAYOUT ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.narrow    { max-width: 760px;  margin-left: auto; margin-right: auto; }
.section   { padding: 6rem 0; }
.section-off  { background: var(--off); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.section-label {
  display: inline-block;
  font-family: var(--h-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-label--light {
  color: var(--orange);
  background: rgba(255,107,53,0.15);
  border-color: rgba(255,107,53,0.3);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
  opacity: 1;
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  opacity: 1;
}
.btn-lg  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { display: block; width: 100%; text-align: center; justify-content: center; }
.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
  padding: 0.5rem 1.3rem;
  font-size: 0.9rem;
}
.btn-nav:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  opacity: 1;
  transform: translateY(-1px);
}

/* Pulse animation for primary CTAs */
.pulse {
  animation: pulse-cta 3s ease-in-out infinite;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 var(--orange-glow); }
  50% { box-shadow: 0 0 0 12px rgba(255,107,53,0); }
}

/* ---- SCROLL REVEAL ---- */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---- FLOATING ORBS ---- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.04); }
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--h-font);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nav-logo:hover { opacity: 0.85; }
.logo-bolt { font-size: 1.1rem; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--b-font);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy); opacity: 1; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 0.65rem 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-link:last-child { border-bottom: none; }
  .btn-nav { margin-top: 0.75rem; }
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, #1a3558 50%, #243d5f 100%);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: float 10s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  bottom: -80px; left: 5%;
  animation: float 14s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(100,160,255,0.1) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: float 12s ease-in-out infinite 2s;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 5rem 0 4rem; }
}

/* Pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.pill-dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.hero-h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Floating cards */
.hero-visual { position: relative; height: 420px; }
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 1.1rem 1.35rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: float 6s ease-in-out infinite;
}
.float-card-1 { top: 0;   right: 0;   width: 220px; flex-direction: column; align-items: flex-start; animation-delay: 0s; }
.float-card-2 { top: 130px; left: 0;  width: 240px; animation-delay: 1.5s; }
.float-card-3 { bottom: 100px; right: 20px; width: 220px; animation-delay: 3s; }
.float-card-4 { bottom: 0; left: 30px; width: 210px; animation-delay: 4.5s; }

.fc-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 0.2rem; }
.fc-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.fc-score { font-size: 2rem; font-weight: 800; font-family: var(--h-font); color: var(--emerald); line-height: 1; }
.fc-score span { font-size: 1rem; color: rgba(255,255,255,0.4); }
.fc-bar   { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-top: 0.5rem; overflow: hidden; }
.fc-fill  { height: 100%; background: linear-gradient(90deg, var(--emerald), #34d399); border-radius: 3px; }
.fc-icon  { font-size: 1.5rem; flex-shrink: 0; }
.fc-check {
  width: 32px; height: 32px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-num {
  font-family: var(--h-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 500;
}

/* ---- PROBLEM ---- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 640px) {
  .comparison-grid { grid-template-columns: 1fr; }
}
.compare-card {
  padding: 1.75rem 2rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.compare-bad {
  background: #fff5f5;
  border-color: #fecaca;
}
.compare-good {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.compare-label {
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.compare-card li { font-size: 0.95rem; }
.compare-bad li::before  { content: "✗ "; color: #ef4444; font-weight: 700; }
.compare-good li::before { content: "✓ "; color: var(--emerald); font-weight: 700; }

/* ---- FEATURE CARDS (3-col) ---- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .three-col { grid-template-columns: 1fr; }
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.18);
}
.feature-card h3 { color: var(--white); }
.feature-card p  { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0; }
.feature-icon { font-size: 2.25rem; margin-bottom: 1rem; }

/* ---- HOSTING SECTION ---- */
.hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .hosting-grid { grid-template-columns: 1fr; }
}
.hosting-text .body-lg { margin-bottom: 1rem; }
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.tech-badge {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.hosting-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hosting-card-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.hosting-provider { flex: 1; text-align: center; }
.provider-name { font-size: 0.8rem; font-weight: 600; color: var(--slate-light); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.provider-cost { font-family: var(--h-font); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.provider-cost span { font-size: 0.9rem; color: var(--slate-light); font-weight: 500; }
.provider-cost--free { color: var(--emerald); }
.provider-total { font-size: 0.78rem; color: var(--slate-light); margin-top: 0.35rem; }
.vs-badge {
  width: 36px; height: 36px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-light);
  flex-shrink: 0;
}
.hosting-provider--us .provider-cost { color: var(--emerald); }
.hosting-saving {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d;
  line-height: 1.5;
}

/* ---- INCLUDED ---- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
}
@media (max-width: 800px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .included-grid { grid-template-columns: 1fr; } }
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: box-shadow 0.2s, transform 0.2s;
}
.included-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.inc-check {
  width: 26px; height: 26px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.included-item strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.included-item span   { font-size: 0.8rem; color: var(--slate-light); }

/* ---- PACKAGES ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.package-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.1), var(--shadow-lg);
  transform: translateY(-8px);
}
.package-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.15), var(--shadow-xl);
}
@media (max-width: 900px) {
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-4px); }
}
.pkg-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--h-font);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pkg-header { text-align: center; }
.pkg-name { font-family: var(--h-font); font-weight: 700; color: var(--slate-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.pkg-price {
  font-family: var(--h-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pkg-tagline { font-size: 0.88rem; color: var(--slate-light); }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.93rem; }
.pk-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: rgba(16,185,129,0.12);
  color: var(--emerald);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- HOW IT WORKS STEPS ---- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 22px; top: 40px; bottom: 40px;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}
.step-num {
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--h-font);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px var(--orange-glow);
}
.step-body h4 { color: var(--white); margin-bottom: 0.35rem; }
.step-body p  { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0; }

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2.5rem;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
blockquote {
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span  { font-size: 0.82rem; color: var(--slate-light); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.trust-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ---- FORM ---- */
.form-wrapper {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
@media (max-width: 600px) { .form-wrapper { padding: 1.5rem; } }

/* Progress */
.form-progress { margin-bottom: 2.5rem; }
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.progress-step span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.progress-step.active span, .progress-step.done span { color: rgba(255,255,255,0.8); }
.ps-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--h-font);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.progress-step.active .ps-dot {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.progress-step.done .ps-dot {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}
.progress-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.progress-line.done { background: var(--emerald); }

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-title {
  font-family: var(--h-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

/* Fields */
.field { margin-bottom: 1.35rem; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}
.req { color: var(--orange); }
.optional { color: rgba(255,255,255,0.35); font-weight: 400; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field textarea,
.field select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-family: var(--b-font);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.25); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
}
.field input.error { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.2); }
.field textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }

/* Radio cards (yes/no) */
.radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card {
  cursor: pointer;
}
.rc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  transition: all 0.2s;
  text-align: center;
}
.rc-inner:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.radio-card input:checked + .rc-inner {
  border-color: var(--orange);
  background: rgba(255,107,53,0.12);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}
.rc-icon  { font-size: 1.75rem; }
.rc-label { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.8); }

/* Type cards */
.type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 680px) { .type-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .type-cards { grid-template-columns: 1fr; } }
.type-card input { position: absolute; opacity: 0; pointer-events: none; }
.type-card { cursor: pointer; }
.tc-inner {
  padding: 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  transition: all 0.2s;
  height: 100%;
}
.tc-inner:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.07); }
.type-card input:checked + .tc-inner {
  border-color: var(--orange);
  background: rgba(255,107,53,0.1);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}
.tc-icon  { font-size: 1.4rem; margin-bottom: 0.4rem; }
.tc-title { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.tc-desc  { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* Vibe cards */
.vibe-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}
@media (max-width: 600px) { .vibe-cards { grid-template-columns: repeat(2, 1fr); } }
.vibe-card input { position: absolute; opacity: 0; pointer-events: none; }
.vibe-card { cursor: pointer; display: flex; }
.vc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.1rem 0.75rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  background: rgba(255,255,255,0.04);
  transition: all 0.2s;
  text-align: center;
  width: 100%;
  min-height: 110px;
}
.vc-inner:hover { border-color: rgba(255,255,255,0.2); }
.vibe-card input:checked + .vc-inner {
  border-color: var(--orange);
  background: rgba(255,107,53,0.1);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}
.vc-swatch {
  width: 44px; height: 44px;
  border-radius: 10px;
}
.vc-swatch-1 { background: linear-gradient(135deg, #1E3A5F, #f8fafc); }
.vc-swatch-2 { background: linear-gradient(135deg, #FF6B35, #10B981); }
.vc-swatch-3 { background: linear-gradient(135deg, #1e293b, #334155); }
.vc-swatch-4 { background: linear-gradient(135deg, #f97316, #fbbf24); }
.vc-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); line-height: 1.3; }

/* Package select */
.pkg-select-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) { .pkg-select-cards { grid-template-columns: repeat(2, 1fr); } }
.psc-card input { position: absolute; opacity: 0; pointer-events: none; }
.psc-card { cursor: pointer; }
.psc-inner {
  padding: 1.25rem 1rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: all 0.2s;
  position: relative;
}
.psc-inner:hover { border-color: rgba(255,255,255,0.2); }
.psc-card input:checked + .psc-inner {
  border-color: var(--orange);
  background: rgba(255,107,53,0.12);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}
.psc-featured .psc-inner { border-color: rgba(255,107,53,0.3); }
.psc-badge {
  position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}
.psc-name  { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.psc-price { font-family: var(--h-font); font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.35rem; }
.psc-note  { font-size: 0.7rem; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* Form nav */
.form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-success p  { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 0.75rem; line-height: 1.7; }
.success-note    { color: var(--emerald) !important; font-weight: 600; }

/* ---- FAQ ---- */
.faq-list {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.35rem 1.75rem;
  text-align: left;
  font-family: var(--h-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  gap: 1rem;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--off); }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
  background: var(--white);
}
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 1.75rem 1.35rem; margin: 0; font-size: 0.95rem; color: var(--slate); line-height: 1.75; }

/* ---- FINAL CTA ---- */
.final-cta {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta .orb-1 {
  top: -80px; right: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
}
.final-cta .orb-3 {
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
}
.final-orbs { position: absolute; inset: 0; pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---- RESPONSIVE OVERRIDES ---- */

/* Tablet (≤768px) */
@media (max-width: 768px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .section  { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-num   { font-size: 2rem; }

  /* Hosting */
  .hosting-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Included */
  .included-grid { grid-template-columns: repeat(2, 1fr); }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-4px); }

  /* How it works */
  .steps-list::before { display: none; }

  /* Testimonial */
  .testimonial-card { padding: 1.75rem 1.5rem; }
  blockquote { font-size: 1rem; }

  /* Form */
  .form-wrapper { padding: 2rem 1.5rem; }
  .type-cards   { grid-template-columns: repeat(2, 1fr); }
  .vibe-cards   { grid-template-columns: repeat(2, 1fr); }
  .pkg-select-cards { grid-template-columns: repeat(2, 1fr); }
  .progress-step span { display: none; }

  /* FAQ */
  .faq-q { padding: 1.1rem 1.25rem; font-size: 0.95rem; }
  .faq-a p { padding: 0 1.25rem 1.1rem; }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .section   { padding: 3.5rem 0; }
  .hero      { padding: 4rem 0 3.5rem; }
  .container { padding: 0 1rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg    { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num   { font-size: 1.75rem; }
  .stat-label { font-size: 0.75rem; }

  /* Comparison */
  .comparison-grid { grid-template-columns: 1fr; }

  /* Features */
  .three-col { grid-template-columns: 1fr; }

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

  /* Form */
  .form-wrapper { padding: 1.5rem 1rem; }
  .step-title   { font-size: 1.2rem; }
  .radio-cards  { grid-template-columns: 1fr 1fr; }
  .type-cards   { grid-template-columns: 1fr 1fr; }
  .vibe-cards   { grid-template-columns: repeat(2, 1fr); }
  .pkg-select-cards { grid-template-columns: repeat(2, 1fr); }
  .form-nav     { flex-direction: column-reverse; gap: 0.75rem; }
  .form-nav .btn { width: 100%; justify-content: center; }

  /* Testimonial */
  .trust-row    { gap: 0.5rem; }
  .trust-badge  { font-size: 0.75rem; padding: 0.4rem 0.85rem; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}
