/* =============================================
   WebCraft — styles.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --navy:       #04090f;
  --navy-mid:   #080f1c;
  --navy-light: #0d1828;
  --navy-card:  #101e32;
  --navy-border:#1a2d45;
  --blue:       #1a56db;
  --blue-soft:  #2563eb;
  --gold:       #c9a251;
  --gold-light: #e2b96a;
  --white:      #ffffff;
  --off-white:  #e8e6e0;
  --gray:       #8a95a3;
  --gray-light: #1e2f44;
  --success:    #10b981;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius: 10px;
  --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-heavy: 0 24px 64px rgba(0,0,0,0.6);
}

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ─────────────────────────────── */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,162,81,0.35);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201,162,81,0.5); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── SCROLL ANIMATIONS ─────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ───────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8,15,30,0.96);
  backdrop-filter: blur(16px);
  border-color: rgba(201,162,81,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 5px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: var(--navy) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.nav-mobile-menu {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  background: rgba(4,9,15,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
  padding: 16px 20px 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile-menu a {
  display: block;
  padding: 13px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  font-weight: 400;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.nav-mobile-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.nav-mobile-menu .nav-mobile-cta {
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
}
.nav-mobile-menu .nav-mobile-cta:hover {
  opacity: 0.88;
  background: var(--gold) !important;
}

/* ── HERO ──────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=85');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.22;
  pointer-events: none;
}

/* ── ATHLETIC BORDER FRAME ─────────────────── */
.hero-border-tl,
.hero-border-tr,
.hero-border-bl,
.hero-border-br {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.hero-border-tl {
  top: 20px; left: 20px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}
.hero-border-tr {
  top: 20px; right: 20px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}
.hero-border-bl {
  bottom: 20px; left: 20px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}
.hero-border-br {
  bottom: 20px; right: 20px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}
.hero-slash {
  position: absolute;
  top: 0; right: 120px;
  width: 3px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 5;
}
.hero-slash-2 {
  position: absolute;
  top: 0; right: 142px;
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,162,81,0.4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 5;
}
.hero-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 55%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  z-index: 5;
}

.hero-bg-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,86,219,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -20%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,81,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,81,0.12);
  border: 1px solid rgba(201,162,81,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  max-width: 460px;
}
.hero-highlight-icon { font-size: 1.1rem; }
.hero-highlight p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}
.hero-highlight strong { color: var(--success); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* BROWSER MOCKUP */
.hero-visual { position: relative; z-index: 1; }

.browser {
  background: #111d33;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-heavy);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

.browser-top {
  background: #0a1525;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28c840; }
.browser-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-left: 6px;
  font-family: var(--font-body);
}

.browser-body { padding: 28px 24px; }

.mock-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-logo-block {
  width: 80px; height: 14px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,81,0.3));
  border-radius: 3px;
}
.mock-nav-items { display: flex; gap: 12px; }
.mock-nav-item {
  height: 8px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
}

.mock-hero-area {
  background: linear-gradient(135deg, rgba(26,86,219,0.25), rgba(201,162,81,0.1));
  border-radius: 8px;
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-h1 { height: 16px; background: rgba(255,255,255,0.7); border-radius: 3px; width: 85%; }
.mock-h1-2 { height: 16px; background: rgba(255,255,255,0.5); border-radius: 3px; width: 60%; }
.mock-sub { height: 8px; background: rgba(255,255,255,0.2); border-radius: 3px; margin-top: 6px; width: 90%; }
.mock-sub-2 { height: 8px; background: rgba(255,255,255,0.15); border-radius: 3px; width: 75%; }
.mock-cta-btn {
  margin-top: 10px;
  width: 100px; height: 28px;
  background: var(--gold);
  border-radius: 5px;
  opacity: 0.85;
}

.mock-cards-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.mock-card-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-card-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(26,86,219,0.3); margin-bottom: 4px; }
.mock-card-line { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.mock-card-line-sm { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.06); width: 60%; }

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--navy-mid);
  border: 1px solid rgba(201,162,81,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.badge-1 { bottom: -24px; right: -24px; }
.badge-2 { top: -20px; left: -24px; }

.badge-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(201,162,81,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.badge-text span {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
}

/* ── TRUST BAR ─────────────────────────────── */

.trust {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
  padding: 32px 48px;
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.trust-stat span {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
  display: block;
}

/* ── VALUE PROP ────────────────────────────── */

.value {
  background: var(--navy-light);
  padding: 110px 48px;
}

.value-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  background: var(--navy-card);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(26,86,219,0.3); }
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--off-white);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ── HOW IT WORKS ──────────────────────────── */

.how {
  background: var(--navy);
  padding: 110px 48px;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,219,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.how .eyebrow { color: var(--gold); }
.how .section-title { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,0.45); max-width: 460px; }

.how-header { margin-bottom: 72px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 0 40px 0 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px; top: 22px;
  color: rgba(201,162,81,0.4);
  font-size: 1.4rem;
}

.step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,81,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 28px;
  background: rgba(201,162,81,0.05);
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
}

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

.pricing {
  background: var(--navy-mid);
  padding: 110px 48px;
}

.pricing-header { margin-bottom: 64px; }

.pricing-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  color: var(--off-white);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
}
.pricing-badge .amount {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 44px 36px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.plan-featured {
  background: #071020;
  border-color: rgba(201,162,81,0.4);
  color: var(--white);
  transform: translateY(-8px);
}
.plan-featured:hover { transform: translateY(-14px); box-shadow: var(--shadow-heavy); }

.plan-popular {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 6px;
}
.plan-featured .plan-tier { color: var(--gold); }

.plan-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 2px;
}
.plan-price sup { font-size: 1.3rem; font-family: var(--font-body); font-weight: 400; }

.plan-freq {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 300;
}

.plan-hr {
  height: 1px;
  background: var(--navy-border);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(232,230,224,0.8);
  line-height: 1.45;
}

.check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(26,86,219,0.15);
  color: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-featured .check { background: rgba(201,162,81,0.15); color: var(--gold); }

.plan-addon {
  background: rgba(201,162,81,0.07);
  border: 1px solid rgba(201,162,81,0.18);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: rgba(232,230,224,0.7);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1.5px solid var(--navy-border);
  color: var(--off-white);
  background: transparent;
  transition: all 0.22s;
  font-family: var(--font-body);
  width: 100%;
}
.plan-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.plan-featured .plan-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.plan-featured .plan-btn:hover { opacity: 0.85; }

/* ── REFERRAL ──────────────────────────────── */

.referral {
  background: var(--navy);
  padding: 90px 48px;
  position: relative;
  overflow: hidden;
}

.referral-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.referral .eyebrow { color: var(--gold); }
.referral .section-title { color: var(--white); margin-bottom: 18px; }
.referral .section-sub { color: rgba(255,255,255,0.45); }

.referral-card {
  background: var(--navy-light);
  border: 1px solid rgba(201,162,81,0.2);
  border-radius: 14px;
  padding: 40px;
}

.referral-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

.referral-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ref-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,162,81,0.1);
  border: 1px solid rgba(201,162,81,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.ref-text strong { display: block; font-size: 0.92rem; color: var(--white); margin-bottom: 3px; }
.ref-text span { font-size: 0.83rem; color: rgba(255,255,255,0.45); }

.referral-reward {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(201,162,81,0.12), rgba(26,86,219,0.1));
  border: 1px solid rgba(201,162,81,0.25);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.reward-icon { font-size: 1.8rem; }
.reward-text strong { display: block; color: var(--white); font-size: 1rem; }
.reward-text span { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ── DOMAIN SECTION ────────────────────────── */

.domain {
  background: var(--navy-light);
  padding: 90px 48px;
}

.domain-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.domain-quote {
  background: var(--navy);
  border-radius: 14px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.domain-quote::after {
  content: '"';
  position: absolute;
  top: -20px; right: 20px;
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(201,162,81,0.06);
  line-height: 1;
  pointer-events: none;
}

.domain-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.domain-quote blockquote em { color: var(--gold); font-style: normal; }
.domain-quote cite {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
  position: relative; z-index: 1;
  display: block;
}

.domain-points { display: flex; flex-direction: column; gap: 28px; }
.domain-point { display: flex; gap: 18px; }
.domain-point-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(26,86,219,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.domain-point-text h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 5px; color: var(--off-white); }
.domain-point-text p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; font-weight: 300; }

/* ── CTA ───────────────────────────────────── */

.cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2044 100%);
  padding: 110px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,86,219,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  line-height: 1.65;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────── */

footer {
  background: #050c18;
  padding: 56px 48px 36px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.3);
  max-width: 220px;
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── CLIENT PHOTOS ─────────────────────────── */

.clients {
  background: var(--navy-mid);
  padding: 110px 48px;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.client-photo-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 300px;
  border: 1px solid var(--navy-border);
}

.client-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.client-photo-card:hover img { transform: scale(1.04); }

.client-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,9,15,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.client-photo-card.tall { grid-row: span 2; height: 100%; min-height: 624px; }

.client-label {
  color: var(--white);
}
.client-label strong { display: block; font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.client-label span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ── MODAL ─────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-border) transparent;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-border);
  border: none;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.modal-close:hover { background: rgba(201,162,81,0.2); color: var(--gold); }

.modal-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.modal-eyebrow::before { content: ''; display: block; width: 16px; height: 1px; background: var(--gold); }

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.5;
}

.modal-package-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.pkg-option {
  border: 1.5px solid var(--navy-border);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: transparent;
  font-family: var(--font-body);
}
.pkg-option:hover { border-color: rgba(201,162,81,0.4); background: rgba(201,162,81,0.05); }
.pkg-option.active { border-color: var(--gold); background: rgba(201,162,81,0.08); }

.pkg-option .pkg-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 3px;
}
.pkg-option .pkg-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}

.modal-hr { height: 1px; background: var(--navy-border); margin: 24px 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-light);
  border: 1.5px solid var(--navy-border);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--off-white);
  font-family: var(--font-body);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,149,163,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a95a3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.modal-addon {
  background: rgba(201,162,81,0.06);
  border: 1px solid rgba(201,162,81,0.15);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}
.modal-addon-text { font-size: 0.85rem; color: rgba(232,230,224,0.75); }
.modal-addon-text strong { color: var(--gold); }
.modal-addon-toggle {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.toggle-track {
  width: 40px; height: 22px;
  border-radius: 11px;
  background: var(--navy-border);
  position: relative;
  transition: background 0.25s;
}
.toggle-track.on { background: var(--gold); }
.toggle-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  top: 3px; left: 3px;
  transition: transform 0.25s;
}
.toggle-track.on .toggle-thumb { transform: translateX(18px); }
.toggle-label { font-size: 0.78rem; color: var(--gray); }

.modal-message-preview {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 28px;
}
.preview-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.preview-label::before { content: '👁'; font-size: 0.8rem; }
.preview-text {
  font-size: 0.84rem;
  color: rgba(232,230,224,0.7);
  line-height: 1.7;
  white-space: pre-wrap;
  font-family: 'Courier New', monospace;
}

.modal-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.3px;
}
.modal-submit:hover { opacity: 0.88; transform: translateY(-1px); }

.modal-copy-btn {
  width: 100%;
  padding: 13px;
  background: transparent;
  color: var(--gray);
  border: 1.5px solid var(--navy-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
  letter-spacing: 0.3px;
}
.modal-copy-btn:hover { border-color: var(--gold); color: var(--gold); }
.modal-copy-btn.copied { border-color: var(--success); color: var(--success); }

/* ── ABOUT SECTION ── */
.about-section { padding: 90px 48px; }
.about-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* hide basic addon toggle when not basic */
.addon-row { display: none; }
.addon-row.show { display: flex; }

/* ── MOBILE / TABLET ───────────────────────── */

@media (max-width: 960px) {

  /* Global padding */
  section,
  .hero,
  .trust,
  .cta,
  .about-section { padding-left: 20px !important; padding-right: 20px !important; }

  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }

  /* NAV */
  .nav-links { display: none; }
  .nav-hamburger { display: none; }
  .nav-logo span { font-size: 1rem !important; }
  .nav-logo svg { width: 18px !important; height: 18px !important; }

  /* HERO */
  .hero { padding-top: 100px !important; padding-bottom: 60px !important; }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .hero h1 { font-size: 2.2rem !important; }
  .hero-sub { font-size: 0.95rem !important; }
  .hero-highlight { max-width: 100% !important; }
  .hero-actions { flex-direction: column !important; gap: 12px !important; }
  .hero-actions .btn { width: 100% !important; justify-content: center !important; text-align: center !important; }
  .badge-2 { display: none !important; }
  .badge-1 { bottom: -14px !important; right: 8px !important; }
  .hero-border-tl, .hero-border-tr,
  .hero-border-bl, .hero-border-br { width: 40px !important; height: 40px !important; }

  /* ANIMATION STAGE */
  #hero-stage { height: 260px !important; }
  #hero-rocket { width: 34px !important; }
  #hero-target svg { width: 110px !important; }
  #hero-target { right: 16px !important; bottom: 20px !important; }
  #hero-webflow { width: 84px !important; height: 56px !important; top: 8px !important; left: 11px !important; }

  /* TRUST BAR */
  .trust { padding: 24px 20px !important; }
  .trust-inner { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }
  .trust-stats { gap: 20px !important; flex-wrap: wrap !important; }
  .trust-stat strong { font-size: 1.4rem !important; }

  /* VALUE */
  .value { padding: 70px 20px !important; }
  .value-header {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
  }
  .value-cards { grid-template-columns: 1fr !important; gap: 16px !important; }
  .value-card { padding: 28px 22px !important; }

  /* ABOUT SECTION */
  .about-section { padding: 60px 20px !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 36px !important; }

  /* HOW IT WORKS */
  .how { padding: 70px 20px !important; }
  .steps {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .steps::after { display: none !important; }
  .step { padding-right: 0 !important; }
  .step:not(:last-child)::after { display: none !important; }

  /* CLIENTS */
  .clients { padding: 70px 20px !important; }
  .clients-grid { grid-template-columns: 1fr !important; }
  .client-photo-card.tall { min-height: 260px !important; grid-row: span 1 !important; height: 260px !important; }
  .client-photo-card { height: 240px !important; }

  /* PRICING */
  .pricing { padding: 70px 20px !important; }
  .plans { grid-template-columns: 1fr !important; gap: 20px !important; }
  .plan-featured { transform: none !important; }
  .plan { padding: 32px 24px !important; }
  .pricing-meta { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }

  /* REFERRAL */
  .referral { padding: 70px 20px !important; }
  .referral-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .referral-card { padding: 28px 22px !important; }

  /* DOMAIN */
  .domain { padding: 70px 20px !important; }
  .domain-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .domain-quote { min-height: 280px !important; }

  /* CTA */
  .cta { padding: 70px 20px !important; }
  .cta h2 { font-size: 1.8rem !important; }
  .cta-actions { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
  .cta-actions .btn { width: 100% !important; justify-content: center !important; max-width: 340px !important; }

  /* FOOTER */
  footer { padding: 48px 20px 28px !important; }
  .footer-top { flex-direction: column !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }

  /* MODAL */
  .modal-overlay { padding: 12px !important; align-items: flex-end !important; }
  .modal {
    padding: 28px 20px !important;
    max-height: 92vh !important;
    border-radius: 16px 16px 0 0 !important;
  }
  .modal-package-selector { grid-template-columns: 1fr 1fr 1fr !important; gap: 8px !important; }
  .pkg-option { padding: 10px 6px !important; }
  .pkg-option .pkg-name { font-size: 0.65rem !important; }
  .pkg-option .pkg-price { font-size: 0.95rem !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  .modal h2 { font-size: 1.5rem !important; }
  .modal-addon { flex-direction: row !important; gap: 10px !important; }

  /* Section titles */
  .section-title { font-size: 1.9rem !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem !important; }
  .trust-stats { gap: 14px !important; }
  .modal-package-selector { grid-template-columns: 1fr !important; }
  #hero-stage { height: 220px !important; }
  #hero-target svg { width: 90px !important; }
  .hero-border-tl, .hero-border-tr,
  .hero-border-bl, .hero-border-br { display: none !important; }
}
