/* ============================================================
   Grant's Coaching — Site CSS
   Premium dark fitness coaching brand
============================================================ */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.25);
  --black: #080808;
  --bg: #0a0a0a;
  --bg2: #0f0f0f;
  --card: #131313;
  --card2: #181818;
  --charcoal: #1a1a1a;
  --border: #1e1e1e;
  --border2: #282828;
  --grey: #666;
  --mid: #999;
  --light: #c8c8c8;
  --white: #f0f0f0;
  --green: #22c55e;
  --red: #ef4444;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.1; }

em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section-sub {
  font-size: 16px;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   LAYOUT
============================================================ */
.section { padding: 100px 0; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section-header { text-align: center; margin-bottom: 64px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.35); }
.btn-primary:hover::before { opacity: 1; }

.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--light);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 15px 28px;
  border-radius: 4px;
  border: 1px solid var(--border2);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--gold-border);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }

.btn-large { padding: 18px 38px; font-size: 14px; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.96);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}
.logo-mark.small { width: 34px; height: 34px; font-size: 14px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.logo-tag { font-size: 9.5px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-login {
  color: var(--light);
  border: 1px solid var(--border2);
  margin-right: 8px;
}
.nav-login:hover { border-color: var(--gold); color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
  margin-left: 4px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(20px);
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-login {
  color: var(--gold) !important;
  margin-top: 8px;
}
.mobile-apply {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--black) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  border: none !important;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  top: -150px; right: -150px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-line {
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-headline {
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 1.0;
  margin-bottom: 28px;
}
.hero-headline em {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  max-width: 720px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(201,168,76,0.08);
}
.hero-stat {
  text-align: center;
  padding: 30px 18px 26px;
  border-right: 1px solid rgba(201,168,76,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  position: relative;
}
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 0 0 2px 2px;
}
.hero-stat:hover::before { opacity: 1; }
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(201,168,76,0.05); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.5px;
  display: block;
  white-space: nowrap;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.55;
  display: block;
  white-space: normal;
  max-width: 108px;
  margin-left: auto;
  margin-right: auto;
}
.stat-divider {
  display: none;
}
/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   AUTHORITY BAR
============================================================ */
.authority-bar {
  background: var(--card);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 18px 28px 16px;
  text-align: center;
  overflow: hidden;
}
.authority-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.authority-text {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.4px;
  opacity: 0.78;
  line-height: 2;
  margin: 0;
  white-space: normal;
  word-break: break-word;
}
.authority-tagline {
  font-size: 10.5px;
  color: var(--grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.52;
  margin: 8px 0 0;
  font-style: italic;
}
/* Legacy — keep for any other pages that may still use these */
.authority-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  white-space: nowrap;
}
.auth-icon { font-size: 14px; }
.authority-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border2);
  flex-shrink: 0;
}

/* ============================================================
   FEATURES GRID
============================================================ */
.what-you-get { background: var(--bg2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.5); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-wrap { margin-bottom: 16px; }
.feature-icon { font-size: 28px; }
.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.feature-desc { font-size: 13px; color: var(--grey); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works { background: var(--bg); }

.steps-container {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps-line {
  position: absolute;
  left: 28px;
  top: 52px;
  bottom: 52px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 36px 0 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--grey); line-height: 1.8; }
.steps-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   PORTAL SECTION
============================================================ */
.portal-section { background: var(--bg2); }

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.portal-desc { font-size: 15px; color: var(--mid); line-height: 1.9; margin-bottom: 28px; }
.portal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.portal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--light);
}
.portal-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  width: 20px; height: 20px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.portal-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Mockup */
.portal-mockup {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.05);
}
.mockup-header {
  background: #0f0f0f;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--grey);
  background: var(--charcoal);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: monospace;
}
.mockup-nav {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mockup-logo {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; font-weight: 700;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mockup-nav-links { display: flex; gap: 0; }
.mnl {
  font-size: 10px;
  font-weight: 500;
  color: var(--grey);
  padding: 4px 10px;
  border-radius: 3px;
  cursor: default;
}
.mnl.active { color: var(--gold); background: var(--gold-dim); }
.mockup-body { padding: 20px 16px; }
.mockup-welcome {
  font-size: 13px;
  color: var(--light);
  margin-bottom: 16px;
}
.mockup-welcome span { color: var(--gold); font-weight: 600; }
.mockup-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.mockup-card {
  background: var(--charcoal);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 12px;
}
.mc-label { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 4px; }
.mc-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 2px; }
.mc-sub { font-size: 10px; color: var(--grey); margin-bottom: 8px; }
.mc-bar { height: 3px; background: var(--border2); border-radius: 2px; overflow: hidden; }
.mc-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.mc-bar-fill.green { background: var(--green); }
.mockup-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mockup-module {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--mid);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.testimonial-card.featured {
  background: linear-gradient(145deg, #141208, #111);
  border-color: var(--gold-border);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
  display: block;
}
.testimonial-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card.featured .testimonial-text { color: var(--light); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 700; color: var(--white); }
.author-detail { font-size: 11px; color: var(--grey); }
.author-result {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.results-cta { text-align: center; }

/* ============================================================
   ABOUT STRIP
============================================================ */
.about-strip { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.about-left { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.about-monogram {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(201,168,76,0.2);
}
.about-credentials { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.cred-item {
  font-size: 11.5px;
  color: var(--mid);
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  border-left: 3px solid var(--gold);
  text-align: center;
}
.about-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ============================================================
   PACKAGES
============================================================ */
.packages-section { background: var(--bg); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.package-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}
.package-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.package-card.featured {
  background: linear-gradient(145deg, #141208, #111);
  border-color: var(--gold-border);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.package-tier {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.package-price-wrap { margin-bottom: 28px; }
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}
.package-period { font-size: 12px; color: var(--grey); }
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.package-features li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
}
.package-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  position: relative;
  padding: 140px 28px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--bg2);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-headline {
  font-size: clamp(40px, 6vw, 68px);
  color: var(--white);
  letter-spacing: -2px;
  margin: 16px 0 20px;
}
.cta-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 44px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-contact {
  font-size: 13px;
  color: var(--grey);
}
.cta-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.cta-contact a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border2);
  padding: 64px 28px 28px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-brand { max-width: 340px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-tagline {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-contact a {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 13px;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   ANIMATIONS
============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* ── Tablet landscape ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .package-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Tablet portrait ── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-inner { padding: 0 20px; }
  .section-header { margin-bottom: 44px; }

  /* Nav */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .site-header { padding: 0 20px; }

  /* Hero */
  .hero-inner { padding: 110px 20px 70px; }
  .hero-headline { letter-spacing: -1.5px; }
  .hero-sub { font-size: 15px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
  }
  .hero-stat {
    border-right: 1px solid rgba(201,168,76,0.14);
    border-bottom: 1px solid rgba(201,168,76,0.14);
  }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-bottom: none; }
  .hero-stat:nth-child(4) { border-right: none; border-bottom: none; }
  .stat-divider { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Authority bar — scroll horizontally */
  .authority-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .authority-inner::-webkit-scrollbar { display: none; }
  .authority-dot { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 22px 18px; }

  /* Steps */
  .steps-line { display: none; }
  .step { flex-direction: column; gap: 14px; padding: 28px 0; }

  /* Portal */
  .portal-mockup { max-width: 100%; }

  /* About */
  .about-monogram { width: 90px; height: 90px; font-size: 36px; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Footer */
  .site-footer { padding: 48px 20px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .section-inner { padding: 0 16px; }
  .section-title { letter-spacing: -0.5px; }

  /* Hero */
  .hero-inner { padding: 100px 16px 60px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .hero-stat {
    padding: 20px 14px;
  }

  /* Features — single column on small phones */
  .features-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }
  .final-cta { padding: 80px 16px; }

  /* Portal */
  .portal-actions { flex-direction: column; gap: 10px; }
  .portal-actions .btn-primary,
  .portal-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Packages */
  .package-card { padding: 28px 20px; }
  .packages-grid { max-width: 100%; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Buttons full-width when stacked */
  .btn-large { padding: 16px 28px; width: 100%; justify-content: center; }
}

/* ── Small phones (SE, Galaxy A etc.) ── */
@media (max-width: 375px) {
  .hero-headline { letter-spacing: 0px; }
  .footer-links { grid-template-columns: 1fr; }
  .logo-tag { display: none; }
}
