/* ============================================================
   VIRALIST.CO — Main Stylesheet
   Design: Black/White/Gold · Montserrat · Minimalist
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

:root {
  --gold:    #FFC200;
  --gold-dim: rgba(255,194,0,0.12);
  --black:   #000000;
  --dark:    #0C0C0C;
  --card:    #111111;
  --border:  #222222;
  --border-light: #2E2E2E;
  --white:   #FFFFFF;
  --gray-1:  #F0F0F0;
  --gray-2:  #AAAAAA;
  --gray-3:  #666666;
  --gray-4:  #333333;
  --font:    'Montserrat', sans-serif;
  --max:     1100px;
  --ease:    cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

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

section { padding: 110px 0; }

.section-alt { background: var(--dark); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.headline-xl {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.02;
}

.body-copy {
  font-size: 1.02rem;
  color: var(--gray-2);
  line-height: 1.85;
  max-width: 640px;
}

.body-copy p + p { margin-top: 18px; }

.gold-line {
  width: 36px;
  height: 3px;
  background: var(--gold);
  margin: 22px 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 38px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: #FFD340;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,194,0,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 14px 34px;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s var(--ease);
  background: transparent;
}

.nav.solid {
  padding: 14px 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.nav-logo img { width: 34px; height: 34px; }

.nav-logo-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: #FFD340; color: var(--black); }

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--black);
}

/* --- Background video --- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* --- Full overlay: keeps text crisp, video is ambient texture underneath --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 700px;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(255,194,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

.hero-h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.hero-h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: var(--gray-2);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 52px;
}

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

.hero-note {
  font-size: 0.78rem;
  color: var(--gray-3);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-3);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(9px); }
}

/* === SALESMAN SECTION === */
.salesman-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}

.salesman-grid .headline-xl {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.compare-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compare-card {
  border: 1px solid var(--border-light);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.25s;
}

.compare-card:hover { border-color: var(--gray-3); }

.compare-card-tag {
  position: absolute;
  top: -10px;
  left: 20px;
  padding: 2px 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--dark);
}

.compare-card.good .compare-card-tag { color: var(--gold); }
.compare-card.bad  .compare-card-tag { color: var(--gray-3); }

.compare-card-icon { font-size: 1.8rem; margin-bottom: 14px; }

.compare-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.compare-card-body { font-size: 0.875rem; color: var(--gray-2); line-height: 1.72; }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 22px 28px;
  margin-top: 44px;
  background: rgba(255,194,0,0.03);
}

.pull-quote p {
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
}

/* === GAP ANALYSIS === */
.gap-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 48px 0;
}

.gap-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.obj-item:hover {
  border-color: rgba(255,194,0,0.3);
  background: var(--gold-dim);
}

.obj-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.obj-dot--red {
  background: #E05252;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.obj-item span { font-size: 0.875rem; color: var(--gray-2); font-weight: 500; }

.gap-callout {
  border: 1px solid rgba(255,194,0,0.2);
  background: rgba(255,194,0,0.025);
  padding: 44px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gap-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gap-callout-text {
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 14px;
}

.gap-callout-text span { color: var(--gold); }

.gap-callout-sub { font-size: 0.85rem; color: var(--gray-3); font-weight: 500; }

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.process-step {
  background: var(--dark);
  padding: 48px 36px;
  transition: background 0.25s;
}

.process-step:hover { background: #161616; }

.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,194,0,0.1);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.05em;
}

.step-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.step-body { font-size: 0.86rem; color: var(--gray-2); line-height: 1.75; }

.process-footer {
  text-align: center;
  margin-top: 52px;
}

.process-footer p {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.process-footer p em {
  color: var(--gold);
  font-style: normal;
}

/* === DISCOVERY PACK === */
.discovery-wrap {
  border: 1px solid rgba(255,194,0,0.25);
  background: linear-gradient(135deg, rgba(255,194,0,0.03) 0%, transparent 55%);
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.discovery-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.discovery-wrap::after {
  content: 'FREE';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(90deg);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255,194,0,0.03);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}

.discovery-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 36px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 28px 0 32px;
}

.price-was {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-3);
  text-decoration: line-through;
}

.price-now {
  font-size: 4.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-label {
  font-size: 0.8rem;
  color: var(--gray-2);
  font-weight: 600;
  align-self: center;
}

.discovery-fine {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--gray-3);
  line-height: 1.8;
}

.discovery-fine strong { color: var(--gold); }

.includes-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 22px;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-1);
  line-height: 1.5;
}

.includes-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.about-grid > *:last-child {
  min-width: 0;
}

.about-sidebar {
  position: sticky;
  top: 120px;
}

.about-logo-lg { width: 96px; height: 96px; margin-bottom: 24px; }

.about-founder-photo {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 24px;
}

.founder-name {
  font-size: 1.32rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stat-item {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.stat-n {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-l {
  font-size: 0.72rem;
  color: var(--gray-2);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* === TESTIMONIALS === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.testi-card {
  border: 1px solid var(--border-light);
  padding: 38px 34px;
  position: relative;
  transition: border-color 0.25s, transform 0.3s var(--ease);
}

.testi-card:hover {
  border-color: var(--gray-3);
  transform: translateY(-5px);
}

.testi-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(255,194,0,0.14);
  line-height: 1;
  margin-bottom: 6px;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--gray-1);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.placeholder-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-4);
  background: rgba(255,255,255,0.04);
  padding: 3px 7px;
}

/* === FAQ === */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar-note {
  font-size: 0.875rem;
  color: var(--gray-3);
  line-height: 1.7;
  margin-top: 0;
}

.faq-sidebar-note a { color: var(--gold); transition: opacity 0.2s; }
.faq-sidebar-note a:hover { opacity: 0.8; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  gap: 20px;
  transition: color 0.2s;
  user-select: none;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  transition: all 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: rgba(255,194,0,0.08);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-a-inner {
  padding-bottom: 26px;
  font-size: 0.92rem;
  color: var(--gray-2);
  line-height: 1.8;
}

/* === FINAL CTA === */
.final-cta {
  text-align: center;
  padding: 140px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.final-cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 900;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.06em;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.slots-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.slot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.slot.taken { background: var(--border-light); }
.slot.open  { background: var(--gold); }

.final-cta-sub {
  font-size: 1rem;
  color: var(--gray-2);
  max-width: 460px;
  margin: 0 auto 52px;
  line-height: 1.72;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

/* === SERVICES PAGE === */
.image-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}

.img-type-card {
  background: var(--dark);
  padding: 40px 34px;
  transition: background 0.25s;
}

.img-type-card:hover { background: #161616; }

.img-type-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.img-type-count {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.img-type-count span { font-size: 1rem; color: var(--gray-3); font-weight: 600; margin-left: 4px; }

.img-type-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.img-type-desc { font-size: 0.85rem; color: var(--gray-2); line-height: 1.72; }

/* === PRICING PAGE === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}

.price-tier {
  background: var(--dark);
  padding: 52px 40px;
  position: relative;
  transition: background 0.25s;
}

.price-tier:hover { background: #141414; }

.price-tier.featured { background: rgba(255,194,0,0.03); }

.price-tier.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding: 4px 12px;
}

.tier-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 16px;
}

.tier-price {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.tier-price.free-price { color: var(--gold); }

.tier-caption {
  font-size: 0.8rem;
  color: var(--gray-3);
  margin-bottom: 36px;
  line-height: 1.5;
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}

.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.5;
}

.tier-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
}

.contact-info-value a { color: var(--white); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }

.contact-form-wrap {
  border: 1px solid var(--border-light);
  padding: 52px 48px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border-light);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

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

/* === FOOTER === */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 72px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--gray-3);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 260px;
}

.footer-col-head {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li + li { margin-top: 13px; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-3);
  transition: color 0.2s;
  font-weight: 500;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-copy { font-size: 0.78rem; color: var(--gray-3); }

.footer-email {
  font-size: 0.78rem;
  color: var(--gray-3);
  transition: color 0.2s;
}

.footer-email:hover { color: var(--gold); }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid .testi-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .image-breakdown-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 2px; }
  .price-tier.featured::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    padding: 28px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .salesman-grid,
  .about-grid,
  .discovery-grid,
  .contact-grid,
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }

  .about-sidebar { position: static; }
  .process-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:last-child { grid-column: auto; }
  .image-breakdown-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .discovery-wrap { padding: 44px 28px; }
  .contact-form-wrap { padding: 36px 28px; }
  .gap-callout { padding: 32px 28px; }

  .gap-two-col { grid-template-columns: 1fr; }
  .objections-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 3.8rem; }
  .objections-grid { grid-template-columns: 1fr; }
  .slots-row { gap: 8px; }
}

