/* ============================================
   JLux Coaching — Main Stylesheet
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #FDFAF6;
  color: #1A1410;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* === DESIGN TOKENS === */
:root {
  --cream:        #FDFAF6;
  --ivory:        #F2E9DD;
  --blush:        #EDD5C2;
  --gold:         #C9A84C;
  --gold-hover:   #B8943E;
  --gold-light:   rgba(201,168,76,0.12);
  --mocha:        #8B5E3C;
  --brown:        #5C4538;
  --dark:         #1A1410;
  --hero-base:    #130A05;
  --hero-mid:     #3A1E0C;

  /* Green for CTA buttons */
  --green:        #60ce6f;
  --green-dark:   #4ab85a;
  --green-glow:   rgba(96,206,111,0.32);

  /* Blue accent */
  --accent:       #6cbeea;
  --accent-light: rgba(108,190,234,0.15);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1180px;
  --nav-h: 78px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: all 0.3s var(--ease);

  --shadow-xs: 0 2px 8px rgba(26,20,16,0.06);
  --shadow-sm: 0 4px 20px rgba(26,20,16,0.09);
  --shadow-md: 0 10px 40px rgba(26,20,16,0.13);
  --shadow-lg: 0 24px 70px rgba(26,20,16,0.18);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

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

.section      { padding: 110px 0; }
.section-alt  { background-color: var(--ivory); }
.section-dark { background-color: var(--hero-base); }

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

/* === DECORATIVE DIVIDER === */
.gold-line {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 22px auto;
}
.gold-line.left { margin: 22px 0; }

/* ============================================
   BUTTONS — Primary = Forest Green
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}

/* Primary CTA — forest green, scales up on hover */
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 30px var(--green-glow);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.75);
  transform: scale(1.04);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--mocha);
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.04);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 999;
  background: rgba(19,10,5,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: var(--t);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav-logo em {
  font-style: normal;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--t);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-book {
  padding: 9px 22px;
  background: var(--green);
  color: #fff;
  border-radius: 20px;
  font-weight: 500;
}
.nav-links .nav-book::after { display: none; }
.nav-links .nav-book:hover {
  background: var(--green-dark);
  color: #fff;
  transform: scale(1.04);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: var(--t);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 60% 40%, rgba(58,30,12,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(145deg, #130A05 0%, #2A1208 55%, #130A05 100%);
}

.hero-ring {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.hero-ring::after {
  content: '';
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 760px;
}

.hero-content .eyebrow { margin-bottom: 24px; }

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 44px;
  font-weight: 300;
}

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

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   HOME — INTRO / PILLARS
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .eyebrow { margin-bottom: 18px; }
.intro-text h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 24px;
  font-weight: 500;
}
.intro-text p {
  color: var(--brown);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.intro-text .btn { margin-top: 16px; }

.intro-visual { position: relative; }

.visual-box {
  background: linear-gradient(145deg, var(--hero-mid), var(--hero-base));
  border-radius: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(201,168,76,0.15) 0%, transparent 65%);
}

.visual-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px;
}
.visual-quote .quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.7;
  display: block;
  margin-bottom: 8px;
}
.visual-quote p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.visual-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  font-style: normal;
}
.visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 50%;
}

/* ============================================
   PILLARS
   ============================================ */
.pillars-heading {
  text-align: center;
  margin-bottom: 64px;
}
.pillars-heading .eyebrow { margin-bottom: 16px; }
.pillars-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
}

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

.pillar-card {
  background: #fff;
  padding: 48px 36px;
  border-radius: 20px;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  border-bottom: 3px solid transparent;
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.4rem;
}
.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark);
}
.pillar-card p {
  color: var(--brown);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ============================================
   LEAD MAGNET
   ============================================ */
.lead-magnet {
  background: linear-gradient(135deg, var(--hero-base) 0%, #2C1810 100%);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.lead-magnet-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lead-magnet-text .eyebrow { margin-bottom: 18px; }
.lead-magnet-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}
.lead-magnet-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.lead-magnet-text p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-form input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  outline: none;
  transition: var(--t);
}
.lead-form input::placeholder { color: rgba(255,255,255,0.35); }
.lead-form input:focus {
  border-color: rgba(201,168,76,0.6);
  background: rgba(255,255,255,0.1);
}
.lead-form .btn-primary { justify-content: center; }
.form-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ============================================
   FREE TIP SECTION
   ============================================ */
.tip-section { background-color: var(--ivory); }

.tip-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 56px 60px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  position: relative;
}
.tip-card .quote-large {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  position: absolute;
  top: 36px;
  left: 48px;
}
.tip-card .eyebrow { margin-bottom: 20px; }
.tip-card p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.tip-card .tip-attr {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-top: 24px;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS WITH PHOTO PLACEHOLDERS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tcard-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.tcard-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Circular photo placeholder */
.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--ivory) 100%);
  border: 2px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.client-photo-label {
  font-size: 0.5rem;
  text-align: center;
  color: var(--brown);
  opacity: 0.7;
  line-height: 1.3;
  padding: 4px;
  font-style: italic;
}
/* Dashed border overlay */
.client-photo::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.4);
}

.tcard-info strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.tcard-info span {
  font-size: 0.78rem;
  color: var(--mocha);
}

/* ============================================
   DARK TESTIMONIAL BAND (single)
   ============================================ */
.testimonial-section {
  background: linear-gradient(135deg, var(--hero-base) 0%, var(--hero-mid) 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
}

.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-inner .eyebrow { margin-bottom: 36px; }

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.testimonial-author strong {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { text-align: center; }
.cta-banner .eyebrow { margin-bottom: 18px; }
.cta-banner h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--dark);
}
.cta-banner p {
  color: var(--brown);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--hero-base);
  color: rgba(255,255,255,0.5);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo em {
  font-style: normal;
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.42);
  max-width: 270px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: var(--t);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   PAGE HERO (About / Services)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 88px;
  background: linear-gradient(140deg, var(--hero-base) 0%, var(--hero-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(201,168,76,0.07) 0%, transparent 65%);
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.85;
}

/* ============================================
   ABOUT — LAYOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

/* Headshot placeholder */
.portrait-frame {
  border-radius: 20px;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.headshot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--ivory) 0%, var(--blush) 60%, #E0C4A8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px;
}
.headshot-placeholder .ph-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: 2px dashed rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: rgba(201,168,76,0.6);
}
.headshot-placeholder .ph-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--mocha);
  line-height: 1.6;
  letter-spacing: 0.04em;
  border: 1px dashed rgba(201,168,76,0.4);
  padding: 12px 20px;
  border-radius: 12px;
}

.portrait-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: var(--dark);
  color: #fff;
  padding: 18px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.portrait-badge strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.portrait-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.about-portrait { position: relative; }

.about-text .eyebrow { margin-bottom: 18px; }
.about-text h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--dark);
}
.about-text p {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-text .btn { margin-top: 12px; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.value-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.75;
}

/* Audience split */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.audience-card {
  padding: 44px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.audience-card.dark {
  background: var(--dark);
  color: #fff;
}
.audience-card.light {
  background: #fff;
  border: 1.5px solid rgba(201,168,76,0.25);
  box-shadow: var(--shadow-xs);
}
.audience-card .eyebrow { margin-bottom: 16px; }
.audience-card h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.audience-card.dark h3 { color: #fff; }
.audience-card.light h3 { color: var(--dark); }
.audience-card p {
  font-size: 0.9375rem;
  line-height: 1.85;
}
.audience-card.dark p { color: rgba(255,255,255,0.6); }
.audience-card.light p { color: var(--brown); }
.audience-card ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audience-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.audience-card.dark ul li { color: rgba(255,255,255,0.65); }
.audience-card.light ul li { color: var(--brown); }
.audience-check {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Process steps */
.process-list {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 44px;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 62px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.process-step:last-child::before { display: none; }
.step-num {
  width: 60px;
  height: 60px;
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  padding-top: 12px;
}
.step-content p {
  font-size: 0.9375rem;
  color: var(--brown);
  line-height: 1.8;
}

/* ============================================
   SERVICES — PACKAGES
   ============================================ */
.packages-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package-card.featured { border: 1.5px solid var(--gold); }

.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 12px;
}

.package-header {
  padding: 36px 32px 28px;
  background: linear-gradient(135deg, var(--ivory) 0%, #fff 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.package-tier {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.package-header h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.package-price .currency {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brown);
}
.package-price .amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.package-price .period {
  font-size: 0.78rem;
  color: rgba(92,69,56,0.55);
}

.package-body { padding: 28px 32px 36px; }
.package-desc {
  font-size: 0.9375rem;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 24px;
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.5;
}
.feature-check {
  width: 18px;
  height: 18px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
}
.package-card .btn { width: 100%; justify-content: center; }

/* Corporate — full-width card */
.corporate-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.corporate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.corporate-text { position: relative; z-index: 1; }
.corporate-text .eyebrow { margin-bottom: 16px; }
.corporate-text h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: #fff;
  font-weight: 500;
  margin-bottom: 18px;
}
.corporate-text p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
}

.corporate-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.corp-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.corp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid rgba(108,190,234,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.corp-feature p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  padding-top: 6px;
}
.corporate-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(201,168,76,0.2); }
.faq-q {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.faq-a {
  font-size: 0.9375rem;
  color: var(--brown);
  line-height: 1.85;
}

/* How it works steps (horizontal) */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.step-box { position: relative; }
.step-box:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -16px;
  color: rgba(201,168,76,0.4);
  font-size: 1.2rem;
}
.step-num-sm {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 22px;
}
.step-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-box p {
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.8;
}

/* ============================================
   PROBLEM / SOLUTION SECTION
   ============================================ */
.prob-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.video-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--hero-base) 0%, var(--hero-mid) 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(108,190,234,0.12) 0%, transparent 65%);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--t);
  box-shadow: 0 0 0 16px rgba(108,190,234,0.15);
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 24px rgba(108,190,234,0.1);
}
.play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 5px;
}

.video-label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

.sol-text .eyebrow { margin-bottom: 18px; }
.sol-text h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
}
.sol-text > p {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.sol-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 28px 0 16px;
}
.sol-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(108,190,234,0.3);
}

.sol-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--brown);
  line-height: 1.7;
}
.sol-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid rgba(108,190,234,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.sol-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
}

/* ============================================
   FEATURES CHECKLIST SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 56px;
  max-width: 900px;
  margin: 0 auto;
}
.features-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-col li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.6;
}
.feat-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid rgba(108,190,234,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
}

/* ============================================
   GOOGLE REVIEWS TRUST BAR
   ============================================ */
.reviews-bar {
  background: var(--ivory);
  padding: 60px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.reviews-inner {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.g-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(108,190,234,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.google-meta strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 5px;
}
.g-stars { color: #FBBC04; font-size: 1rem; letter-spacing: 2px; }
.g-count { font-size: 0.78rem; color: var(--brown); margin-left: 6px; }

.review-snippets {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.review-snippet {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(201,168,76,0.12);
  min-width: 0;
}
.snippet-stars {
  color: #FBBC04;
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.snippet-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 10px;
}
.snippet-author {
  font-size: 0.7rem;
  color: var(--mocha);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   HOMEPAGE FAQ
   ============================================ */
.home-faq .faq-list { max-width: 760px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .prob-sol-grid { grid-template-columns: 1fr; gap: 48px; }
  .packages-top { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 24px; }
  .corporate-card { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid, .about-grid { grid-template-columns: 1fr; }
  .intro-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .lead-magnet-inner { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .step-box:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(19,10,5,0.98);
    flex-direction: column;
    padding: 40px 28px;
    gap: 28px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--t);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .pillars-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .review-snippets { display: none; }
  .reviews-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .tip-card { padding: 44px 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .portrait-badge { right: 0; }
  .corporate-card { padding: 40px 32px; }
}

@media (max-width: 520px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero-content { padding-left: 20px; padding-right: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .steps-row { grid-template-columns: 1fr; }
  .step-box::after { display: none !important; }
  .tip-card { padding: 36px 24px; }
  .package-header, .package-body { padding-left: 24px; padding-right: 24px; }
}
