/* ============================================
   AUTHORITY BRAND BUILDOUT — OFFER PAGE STYLES
   Uses existing design system from styles.css
   ============================================ */

/* --- Offer Page Overrides --- */
.offer-page body {
  background: var(--white);
}

/* ============================================
   OFFER HERO
   ============================================ */
.offer-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(200, 164, 78, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.offer-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.offer-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.offer-hero h1 .accent {
  color: var(--gold-light);
}

.offer-hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.offer-hero-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
}

.offer-hero-image img {
  width: 100%;
  display: block;
}

/* Placeholder for NanoBanana images */
.image-placeholder {
  background: linear-gradient(135deg, rgba(200, 164, 78, 0.1) 0%, rgba(26, 31, 54, 0.05) 100%);
  border: 2px dashed rgba(200, 164, 78, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-height: 300px;
}

.image-placeholder.dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 164, 78, 0.25);
  color: var(--gold-light);
}

/* ============================================
   THE PROBLEM / OPPORTUNITY
   ============================================ */
.offer-problem {
  padding: 80px 0;
  background: var(--white);
}

.offer-problem-content {
  max-width: 720px;
  margin: 0 auto;
}

.offer-problem-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.offer-problem-content .lead-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 28px;
}

.midnight-quote {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 32px 36px;
  margin: 36px 0;
  border-left: 4px solid var(--gold);
  font-style: italic;
}

.midnight-quote p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 17px !important;
  line-height: 1.75;
}

.midnight-quote .attribution {
  font-style: normal;
  font-size: 13px !important;
  color: var(--gold-light) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

/* ============================================
   MEET SONIA + JAMES
   ============================================ */
.offer-about {
  padding: 80px 0;
  background: var(--light-gray);
}

.offer-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.about-person {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.about-person-photo {
  text-align: center;
}

.about-person-photo img {
  width: 280px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(200, 164, 78, 0.2);
}

.about-person-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-person-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.about-person-content p {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.credential-tag {
  background: rgba(200, 164, 78, 0.1);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(200, 164, 78, 0.25);
}

/* ============================================
   WHAT SONIA BUILDS WITH YOU
   ============================================ */
.offer-methodology {
  padding: 80px 0;
  background: var(--white);
}

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

.method-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.method-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.method-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.method-card p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}

/* ============================================
   RESULTS / TESTIMONIALS
   ============================================ */
.offer-results {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offer-results .section-label {
  color: var(--gold-light);
}

.offer-results .section-headline {
  color: var(--white);
}

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

.result-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: background 0.2s;
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.result-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.result-context {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  font-weight: 600;
}

.result-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.result-video-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

.result-video-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.result-video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}

.result-video-card img:hover {
  opacity: 0.85;
}

.result-video-info {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.result-video-info strong {
  color: var(--white);
}

/* ============================================
   THE OFFER — 3 TIERS
   ============================================ */
.offer-tiers {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.offer-tiers .section-label,
.offer-tiers .section-headline,
.offer-tiers .section-subhead {
  text-align: center;
}

.tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.tier-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 2px solid var(--border);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(200, 164, 78, 0.2);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.tier-tagline {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 20px;
}

.tier-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-price-sub {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 8px;
}

.tier-pif {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 28px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(200, 164, 78, 0.12) 0%, rgba(200, 164, 78, 0.04) 100%);
  border-radius: 8px;
  border: 1px solid rgba(200, 164, 78, 0.25);
}

.pif-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-right: 6px;
}

.tier-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 164, 78, 0.1);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.tier-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.tier-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  margin-top: 24px;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.tier-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(72, 187, 120, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.tier-cta {
  margin-top: 28px;
}

.tier-cta {
  text-align: center;
}

.tier-cta .btn {
  display: inline-flex;
  justify-content: center;
  padding: 18px 32px;
  font-size: 17px;
}

.tier-payment-note {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  margin-top: 12px;
}

/* ============================================
   AI BOLT-ON (James)
   ============================================ */
.offer-ai-bolt {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A1628 0%, #162A4A 100%);
  color: var(--white);
}

.ai-bolt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.ai-bolt-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px;
  transition: background 0.2s;
}

.ai-bolt-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ai-bolt-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.ai-bolt-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.ai-bolt-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ============================================
   THE GUARANTEE
   ============================================ */
.offer-guarantee {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.guarantee-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F7F3E9 0%, #FFF8E7 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 48px 40px;
}

.guarantee-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.guarantee-card p {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.75;
}

/* ============================================
   FAQ
   ============================================ */
.offer-faq {
  padding: 80px 0;
  background: var(--light-gray);
}

.offer-faq .section-label,
.offer-faq .section-headline {
  text-align: center;
}

.offer-faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.offer-final-cta {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 164, 78, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.offer-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.offer-final-cta h2 .accent {
  color: var(--gold-light);
}

.offer-final-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.offer-final-cta .btn-primary {
  margin-bottom: 16px;
}

.offer-final-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
}

/* ============================================
   PLATFORM SECTION
   ============================================ */
.offer-platform {
  padding: 80px 0;
  background: var(--light-gray);
}

.platform-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.platform-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.platform-feature-icon {
  flex-shrink: 0;
  font-size: 24px;
  margin-top: 2px;
}

.platform-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.platform-feature p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}

/* Perry Belcher styles removed — clean backend layout */

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .result-video-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .methodology-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ai-bolt-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-person {
    grid-template-columns: 280px 1fr;
    gap: 36px;
  }

  .platform-features {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */
@media (min-width: 960px) {
  .offer-hero {
    padding: 120px 0 80px;
  }

  .tiers-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .tier-card.featured {
    transform: scale(1.04);
    z-index: 1;
  }

  .tier-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
  }

  .methodology-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ai-bolt-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 639px) {
  .offer-hero {
    padding: 48px 0 40px;
  }

  .offer-hero h1 {
    font-size: 28px;
  }

  .tier-card {
    padding: 28px 24px;
  }

  .tier-price {
    font-size: 36px;
  }

  .guarantee-card {
    padding: 32px 24px;
  }

  .about-person-photo img {
    width: 200px;
  }

  .midnight-quote {
    padding: 24px;
  }
}
