/* ============================================
   ReStart 45+ by Sorin — Revised Commercial Styles
   ============================================ */

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

:root {
  --apple-white: #FFFFFF;
  --apple-cream: #FAF9F6;
  --apple-warm: #F5F3EF;

  --brand-gold: #B8944F;
  --brand-gold-hover: #9A7A3D;
  --brand-gold-light: rgba(184, 148, 79, 0.08);

  --text-main: #1A1A1A;
  --text-body: #3D3D3D;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;

  /* Compatibility aliases — several existing pages (about.html, restart45.html,
     how-it-works.html, resources.html, and inline styles elsewhere) reference
     these --color-* names, which were never defined anywhere. Without these
     aliases, every stat number, lead paragraph, and muted caption using them
     falls back to plain black text instead of the intended styling. */
  --color-primary: var(--brand-gold);
  --color-text: var(--text-body);
  --color-text-muted: var(--text-muted);
  --color-text-secondary: var(--text-muted);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============================================
   Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--apple-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 600;
}
.page-header{
  margin-top: 7.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--brand-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-gold-hover);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 72px 0;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
  html {
    scroll-padding-top: 80px;
  }
}

/* ============================================
   Typography Utilities
   ============================================ */

.section-label {
  color: var(--brand-gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.875rem;
  font-family: var(--font-body);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-subtitle-sources{
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.65;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0.875rem 0;
  transition: var(--transition);
}

.navbar-brand {
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main) !important;
  line-height: 1.1;
}

.navbar-brand .brand-main {
  color: var(--text-main);
}

.navbar-brand .brand-by {
  color: var(--text-muted);
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-left: 0.15em;
  font-family: var(--font-body);
}

.navbar-brand:hover {
  opacity: 0.8;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-body) !important;
  margin: 0 10px;
  transition: var(--transition);
  padding: 0.5rem 0.25rem !important;
  position: relative;
  opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-gold) !important;
  opacity: 1;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 2px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary-custom{
  background-color: var(--brand-gold);
  color: #FFFFFF;
  border: none;
}

.btn-gold {
  background-color: var(--brand-gold);
  color: #FFFFFF;
}

.btn-gold:hover {
  background-color: var(--brand-gold-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 148, 79, 0.25);
}

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

.btn-outline-gold:hover {
  background-color: var(--brand-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--text-main);
}

.btn-outline-dark:hover {
  background-color: var(--text-main);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}
.problem-icon{
  font-size: 2.25rem;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}
.cta-box{
  background-color: white;
  max-width: 1100px;
  border-radius: var(--radius-lg);
  padding: 0%  32px 32px 32px;
 box-shadow: var(--shadow-md);
  margin: 0 auto;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 120px 0 72px 0;
  background: var(--apple-white);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.hero-title em {
  color: var(--brand-gold);
  font-style: italic;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  height: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 0 56px 0;
    text-align: center;
  }
  .hero-image {
    height: 360px;
    margin-top: 2rem;
  }
  .hero-cta-group {
    justify-content: center;
  }
}

/* ============================================
   Cards
   ============================================ */

.apple-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: var(--apple-white);
  transition: var(--transition);
}

.apple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2.25rem;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.apple-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.apple-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Section-specific card backgrounds */
#problem .apple-card {
  background: var(--apple-cream);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

#how-it-works .apple-card {
  background: var(--apple-white);
  box-shadow: var(--shadow-sm);
}

#what-you-get .apple-card {
  background: var(--apple-cream);
}

#testimonials .apple-card {
  background: var(--apple-white);
}

/* ============================================
   Check Lists
   ============================================ */

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.25rem;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
}

.check-list li strong {
  color: var(--text-main);
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}

.check-list li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1rem;
  color: var(--brand-gold);
}

/* ============================================
   Steps
   ============================================ */

.step-number {
  width: 56px;
  height: 56px;
  background: var(--apple-white);
  color: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--brand-gold);
}

/* ============================================
   Image Showcase
   ============================================ */

.image-showcase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.125rem;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.star-rating {
  color: var(--brand-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ============================================
   About Me Section (Short)
   ============================================ */

.about-short-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-short-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-short-stat {
  text-align: center;
}

.about-short-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 4px;
}

.about-short-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

/* ============================================
   Accordion / FAQ
   ============================================ */

.accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
}

.accordion-button {
  background: transparent !important;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main) !important;
  box-shadow: none !important;
  padding: 1.5rem 0;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-gold) !important;
}

.accordion-button::after {
  filter: grayscale(100%) brightness(0.4);
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.accordion-body {
  padding: 0 0 1.5rem 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ============================================
   CTA Sections
   ============================================ */

.cta-section {
  background: var(--text-main);
  color: #FFFFFF;
  padding: 80px 0;
}

.cta-section h2 {
  color: #FFFFFF;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-section .btn-gold {
  background: var(--brand-gold);
  color: #FFFFFF;
}

.cta-section .btn-gold:hover {
  background: var(--brand-gold-hover);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--apple-cream);
  padding: 64px 0 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand:hover {
  color: var(--text-main);
}

.footer-brand span {
  color: var(--brand-gold);
  font-style: italic;
}

.footer-about {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.15rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--brand-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-bottom a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: var(--brand-gold);
}

/* ============================================
   Modal / Forms
   ============================================ */

.modal-content {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.form-control, .form-select {
  background: #F5F5F5;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  background: var(--apple-white);
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(184, 148, 79, 0.12);
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

/* ============================================
   Resource Cards
   ============================================ */

.resource-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--apple-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.resource-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-tag {
  display: inline-block;
  background: var(--brand-gold-light);
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.resource-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more {
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.read-more:hover {
  gap: 0.6rem;
}

/* ============================================
   Blog Cards
   ============================================ */

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--apple-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}

.blog-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* ============================================
   VSL Page
   ============================================ */

.vsl-hero {
  padding: 40px 0 64px 0;
  background: var(--apple-white);
  text-align: center;
}

.vsl-container {
  max-width: 900px;
  margin: 0 auto;
}

.vsl-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--text-main);
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

.vsl-video-wrapper iframe,
.vsl-video-wrapper video,
.vsl-video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.vsl-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #FFFFFF;
}

.vsl-play-btn i {
  font-size: 2rem;
  color: var(--brand-gold);
  margin-left: 4px;
}

.vsl-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: inline-block;
  text-align: left;
}

.vsl-bullets li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-body);
  font-size: 1.05rem;
}

.vsl-bullets li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
}

/* ============================================
   Scroll Reveal
   ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Guarantee Badge
   ============================================ */

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--brand-gold-light);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.guarantee-badge i {
  font-size: 2rem;
  color: var(--brand-gold);
}

/* ============================================
   Back to Top
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--apple-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.back-to-top:hover i {
  color: #FFFFFF;
}

.back-to-top i {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ============================================
   Program Features (What's Included)
   ============================================ */

.program-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--apple-white);
  transition: var(--transition);
}

.program-feature:hover {
  background: var(--apple-cream);
}

.program-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--brand-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  font-size: 1.25rem;
}
.feature-icon{
  font-size: 1.25rem;
  color: var(--brand-gold);
}

.program-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.program-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   Sticky Mobile CTA
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--apple-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
  }

  .nav-link.active::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .about-short-stats {
    gap: 20px;
  }

  .about-short-img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .cta-section {
    padding: 64px 0;
  }

  .footer {
    padding: 56px 0 32px 0;
  }
}
