/* ============================================
   RETIREMENT OF YOUR DREAMS — Stylesheet v2
   Mobile-first · Responsive · Modern
   ============================================ */

/* CUSTOM PROPERTIES */
:root {
  --navy:       #1A4E75;   /* Brand primary — matches logo dark text */
  --navy-mid:   #2574B0;   /* Brand medium blue */
  --navy-light: #4A9BC5;   /* Steel blue — matches logo icon */
  --steel:      #6BAABF;   /* Light steel — logo accent */
  --gold:       #C8973A;   /* Gold — CTA accent */
  --gold-light: #F0C96A;
  --bg:         #F5F8FC;
  --bg-blue:    #EBF2F8;
  --text:       #141928;
  --text-mid:   #4B5563;
  --text-light: #9CA3AF;
  --white:      #FFFFFF;
  --border:     #E5E7EB;
  --green:      #10B981;

  --shadow-sm: 0 2px 8px rgba(11,45,110,0.07);
  --shadow-md: 0 4px 24px rgba(11,45,110,0.12);
  --shadow-lg: 0 10px 48px rgba(11,45,110,0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --max-w: 1160px;
  --ease:  0.25s ease;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }

/* LAYOUT */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section     { padding: 4rem 0; }
.section-alt  { background: var(--bg); }
.section-blue { background: var(--bg-blue); }
@media (min-width: 768px)  { .section { padding: 5.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

/* GRID HELPERS */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(200,151,58,0.35);
}
.btn-gold:hover {
  background: #b5821f;
  border-color: #b5821f;
  box-shadow: 0 6px 28px rgba(200,151,58,0.45);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* SECTION HEADERS */
.section-header { margin-bottom: 3rem; text-align: center; }
.label-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 1.08rem;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}

.nav-logo { display: flex; align-items: center; line-height: 1; }
.nav-logo img { height: 46px; width: auto; display: block; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav links */
.nav-links {
  display: none;
  position: absolute;
  top: 68px;
  left: -1.25rem;
  right: -1.25rem;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0.5rem 1.5rem 1.25rem;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.nav-links.open { display: flex; }
.nav-links li a {
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}
.nav-links li:last-child a { border-bottom: none; }
.nav-links li a:hover { color: var(--navy); }
.nav-links .nav-cta a {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-bottom: none;
  text-align: center;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 0;
    align-items: center;
    border: none;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-links li a {
    padding: 0.45rem 0.8rem;
    border: none;
    font-size: 0.86rem;
    border-radius: 6px;
    color: var(--text-mid);
    font-weight: 500;
  }
  .nav-links li a:hover {
    background: var(--bg);
    color: var(--navy);
  }
  .nav-links .nav-cta a {
    margin: 0;
    padding: 0.6rem 1.35rem;
    background: var(--gold);
    font-size: 0.84rem;
  }
  .nav-links .nav-cta a:hover { background: #b5821f; }
}

/* ============================
   HERO – HOME
   ============================ */
.hero-home {
  background: linear-gradient(135deg, rgba(26,78,117,0.94) 0%, rgba(37,116,176,0.90) 50%, rgba(26,72,112,0.94) 100%), url('https://retirementofyourdreams.com/wp-content/uploads/2026/06/ROYD-Watermark-Hero-Background.png') center/cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,151,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero-home .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-tag {
  display: inline-block;
  background: rgba(200,151,58,0.18);
  border: 1px solid rgba(200,151,58,0.5);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-home h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-home .hero-sub {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
@media (min-width: 600px) { .hero-btns { flex-direction: row; } }

/* Photo placeholder / real photo */
.hero-photo-wrap { display: flex; justify-content: center; }
.hero-photo {
  width: 260px;
  height: 320px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(200,151,58,0.5);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  padding: 1rem;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 900px) { .hero-photo { width: 310px; height: 380px; } }

/* ============================
   HERO – INNER PAGES
   ============================ */
.hero-page {
  background: linear-gradient(135deg, rgba(26,78,117,0.94) 0%, rgba(37,116,176,0.90) 50%, rgba(26,72,112,0.94) 100%), url('https://retirementofyourdreams.com/wp-content/uploads/2026/06/ROYD-Watermark-Hero-Background.png') center/cover no-repeat;
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,151,58,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-page .hero-inner { position: relative; z-index: 1; }
.hero-page h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.hero-page .hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}

/* ============================
   PARTNERS
   ============================ */
.partners {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}
.partner-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ============================
   STATS STRIP
   ============================ */
.stats-strip {
  background: var(--navy);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================
   FEATURE CARDS
   ============================ */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  color: var(--white);
}
.feature-card h3 { margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-mid); font-size: 0.94rem; }

/* ============================
   CONSULTATION CARDS
   ============================ */
.consult-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.consult-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.consult-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--navy-mid));
}
.consult-value {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.consult-free {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.consult-card h3 { margin-bottom: 0.75rem; }
.consult-card p { color: var(--text-mid); font-size: 0.93rem; flex-grow: 1; margin-bottom: 1.5rem; }

/* ============================
   BLUEPRINT STEPS
   ============================ */
.phase-label {
  display: inline-block;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.phase-block { margin-bottom: 3rem; }
.phase-block h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.step-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  transition: transform var(--ease);
}
.step-card:hover { transform: translateX(4px); }
.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.step-body h4 { margin-bottom: 0.3rem; color: var(--navy); }
.step-body p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 0.4rem; }
.step-outcome {
  font-size: 0.83rem;
  color: var(--green);
  font-weight: 600;
}

/* ============================
   BOOK SECTION
   ============================ */
.book-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .book-wrap { grid-template-columns: auto 1fr; } }

.book-cover {
  width: 200px;
  height: 270px;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  position: relative;
}
.book-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.book-cover-price {
  background: var(--gold);
  border-radius: 50px;
  padding: 0.25rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
}
.book-benefits { margin: 1.5rem 0; }
.book-benefits li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--text-mid);
  font-size: 0.96rem;
}
.book-benefits li i { color: var(--green); margin-top: 0.15em; flex-shrink: 0; }

/* ============================
   CONTENT HUB CARDS
   ============================ */
.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hub-card-icon {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.hub-card-icon.blue { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); }
.hub-card-icon.gold { background: linear-gradient(135deg, #b5821f, var(--gold)); color: var(--white); }
.hub-card-icon.green { background: linear-gradient(135deg, #0f7a5a, var(--green)); color: var(--white); }
.hub-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.hub-card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.hub-card-body p { color: var(--text-mid); font-size: 0.92rem; flex-grow: 1; margin-bottom: 1.25rem; }
.hub-badge {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, #091e4a 0%, #0d2b6e 60%, #1a4a9a 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,151,58,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  margin: 0 auto 2rem;
  max-width: 540px;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) { .cta-btns { flex-direction: row; } }

/* ============================
   ABOUT PAGE
   ============================ */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr 1.5fr; }
}
.about-photo {
  width: 270px;
  height: 330px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(200,151,58,0.6);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  padding: 1rem;
  margin: 0 auto;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}
.cred-badge {
  background: rgba(200,151,58,0.18);
  border: 1px solid rgba(200,151,58,0.45);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.bio-wrap { max-width: 800px; margin: 0 auto; }
.bio-wrap p { font-size: 1.03rem; color: var(--text-mid); }
.bio-wrap p:first-child { font-size: 1.12rem; color: var(--text); font-weight: 500; }

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.75rem;
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}
.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
  margin: 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 600px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }

.spec-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.spec-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--bg-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy-mid);
}
.spec-card h4 { font-size: 0.92rem; margin-bottom: 0; color: var(--navy); }
.spec-card p { display: none; }

/* ============================
   START PAGE
   ============================ */
.consult-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}
.consult-detail-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .consult-detail-header { flex-direction: row; align-items: center; justify-content: space-between; }
}
.consult-detail-header h3 { color: var(--white); font-size: 1.4rem; }
.consult-value-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.consult-detail-body { padding: 2rem 2.5rem; }
.consult-detail-body p { color: var(--text-mid); font-size: 1rem; margin-bottom: 1.5rem; }
.consult-detail-body .btn { margin-top: 0.5rem; }

.free-tag {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.4);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* ============================
   BOOK PAGE
   ============================ */
.book-page-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) {
  .book-page-wrap { grid-template-columns: 1fr 1.4fr; }
}
.book-page-cover {
  width: 240px;
  height: 320px;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(11,45,110,0.35);
  margin: 0 auto;
}
.book-page-cover .cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.book-page-cover .cover-sub { font-size: 0.8rem; opacity: 0.8; margin-bottom: 1.25rem; }
.book-page-cover .cover-price {
  background: var(--gold);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-weight: 800;
  font-size: 1rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #08193b;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; opacity: 0.75; line-height: 1.6; }

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .contact-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-col .contact-item i { margin-top: 0.2em; color: var(--gold); flex-shrink: 0; }

.social-row { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--ease);
}
.social-icon:hover { background: var(--gold); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bottom-row { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-copy { font-size: 0.8rem; opacity: 0.5; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-legal-links a:hover { color: var(--gold); }

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* ============================
   UTILITY
   ============================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-mid { color: var(--text-mid); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.gap-1 { gap: 0.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
