@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@300;400;600&display=swap');

:root {
  --burgundy: #7A1B3D;
  --burgundy-dark: #5c1430;
  --burgundy-light: #9B1D52;
  --cream: #F1EBEB;
  --cream-dark: #e5dcdc;
  --warm-grey: #B9B0A5;
  --warm-grey-light: #d4cec6;
  --warm-grey-dark: #8a8279;
  --text-dark: #3d3632;
  --text-light: #6b635c;
  --white: #ffffff;
  --charcoal: #3a3632;
  --charcoal-light: #4a4642;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, sans-serif;
  --shadow-soft: 0 2px 15px rgba(155, 29, 82, 0.08);
  --shadow-medium: 0 4px 25px rgba(155, 29, 82, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  color: var(--burgundy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

a:hover {
  color: var(--burgundy-dark);
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* Header */
header {
  background: var(--white);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
  width: auto;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  font-weight: 400;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  font-size: 0.95rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: var(--burgundy);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Hero with background image */
.hero-with-image {
  position: relative;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: 70% center;
  min-height: 550px;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, rgba(241, 235, 235, 0.15) 0%, rgba(241, 235, 235, 0.5) 35%, rgba(255, 255, 255, 0.85) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-right: auto;
  max-width: 550px;
}

.hero-with-image h1 {
  color: var(--burgundy);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 0.85em;
  font-style: italic;
  font-weight: 400;
}

.hero-with-image p {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 1.25rem;
  margin-right: auto;
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero-with-image {
    background-position: 70% 0%;
    background-size: cover;
    min-height: 550px;
    align-items: flex-end;
    padding-bottom: 60px;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-with-image h1 {
    font-size: 2.2rem;
  }
  
  .hero-with-image p {
    margin: 0 auto 2rem;
    font-size: 1.1rem;
  }
  
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(241, 235, 235, 0.05) 0%, rgba(241, 235, 235, 0.8) 55%);
  }
}

/* 2-column card grid */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .card-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Also Available section */
.section-also-available {
  padding: 40px 0 60px;
  background: var(--cream);
}

.also-available-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 700px;
  margin: 24px auto 0;
}

.also-available-image {
  width: 140px;
  height: auto;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.also-available-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.also-available-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .also-available-card {
    flex-direction: column;
    text-align: center;
  }
  
  .also-available-image {
    width: 180px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--white);
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

.card h3 {
  margin-bottom: 12px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

.card-with-image {
  padding-top: 0;
  overflow: hidden;
}

.card-image {
  background: linear-gradient(135deg, var(--warm-grey-light) 0%, var(--cream-dark) 100%);
  width: calc(100% + 64px);
  height: 200px;
  margin: 0 -32px 24px -32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-grey-dark);
  font-size: 0.85rem;
  flex-direction: column;
  gap: 8px;
}

.card-image svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

/* Charcoal Section */
.section-charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section-charcoal h2 {
  color: var(--white);
}

.section-charcoal p {
  color: rgba(255,255,255,0.8);
}

/* Course Layout */
.course-header {
  background: var(--burgundy);
  color: var(--white);
  padding: 60px 0 40px;
  margin-bottom: 40px;
}

.course-header h1 {
  color: var(--white);
}

.course-header p {
  color: rgba(255,255,255,0.85);
}

.course-nav {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.course-nav h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--warm-grey-dark);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}

.course-nav ul {
  list-style: none;
}

.course-nav li {
  margin-bottom: 8px;
}

.course-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--text-dark);
}

.course-nav a:hover,
.course-nav a.active {
  background: var(--cream);
  color: var(--burgundy);
}

.course-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.course-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

/* Course main content lists */
.course-main ul:not(.download-list) {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 24px;
}

.course-main ul:not(.download-list) li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.course-main ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.course-main ol li {
  margin-bottom: 8px;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .course-content {
    grid-template-columns: 1fr;
  }
}

/* Audio Player */
.audio-player {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
}

.audio-player p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--warm-grey-dark);
  font-weight: 600;
}

.audio-player audio {
  width: 100%;
}

/* Download List */
.download-list {
  list-style: none;
  margin: 24px 0;
}

.download-list li {
  margin-bottom: 12px;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: var(--transition);
}

.download-link:hover {
  background: var(--cream-dark);
  transform: translateX(4px);
}

.download-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--burgundy);
}

.download-link span {
  color: var(--text-dark);
}

/* Password Gate */
.password-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding: 24px;
}

.password-box {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.password-box h2 {
  margin-bottom: 8px;
}

.password-box p {
  margin-bottom: 24px;
}

.password-box input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--warm-grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
}

.password-box input:focus {
  outline: none;
  border-color: var(--burgundy);
}

.password-box .btn {
  width: 100%;
}

.password-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 12px;
  display: none;
}

/* Footer */
footer {
  background: var(--burgundy);
  color: var(--white);
  padding: 48px 0 32px;
  margin-top: 0;
}

footer .container {
  text-align: center;
}

footer p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

.footer-social {
  display: inline-block;
  margin-bottom: 16px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-social:hover {
  opacity: 1;
}

.footer-social svg {
  width: 28px;
  height: 28px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-3 {
  margin-bottom: 24px;
}

/* Device Mockup */
.device-mockup {
  background: var(--charcoal);
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--shadow-medium);
  max-width: 200px;
  margin: 20px auto;
}

.device-screen {
  background: var(--white);
  border-radius: 16px;
  padding: 12px;
  overflow: hidden;
}

.device-notch {
  width: 50px;
  height: 5px;
  background: var(--charcoal-light);
  border-radius: 3px;
  margin: 0 auto 10px;
}

.device-content {
  font-size: 8px;
  color: var(--text-light);
}

.device-content h5 {
  font-size: 10px;
  color: var(--burgundy);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.device-content .mini-line {
  height: 4px;
  background: var(--cream);
  border-radius: 2px;
  margin-bottom: 4px;
}

.device-content .mini-line.short {
  width: 60%;
}

/* Content list styling */
.content-list {
  margin-left: 24px;
  margin-bottom: 24px;
  color: var(--text-light);
}

.content-list li {
  margin-bottom: 8px;
}

/* About section with photo */
.about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--white);
  text-align: left;
}

.about-photo {
  flex-shrink: 0;
}

.about-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
}

@media (max-width: 700px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-text h2 {
    text-align: center;
  }
  
  .about-photo {
    order: -1;
    margin: 0 auto;
  }
}

/* Note/disclaimer styling */
.note-text {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--warm-grey-dark);
  margin-top: 8px;
}

/* Login Page Grid */
.login-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  .login-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.login-box {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.login-box h3 {
  margin-bottom: 8px;
}

.login-box > p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.login-box input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--warm-grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
}

.login-box input:focus {
  outline: none;
  border-color: var(--burgundy);
}

.login-box .btn {
  width: 100%;
}

.login-box .password-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 12px;
  display: none;
}

/* ========================================
   SALES PAGE STYLES - MAMA DIET
   ======================================== */

/* Sales Hero */
.sales-hero {
  background: var(--burgundy);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.sales-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.sales-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto;
}

.sales-subtitle-bold {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin-top: 0.5rem;
}

/* Sales Content - Width set to 1100px (~75%) */
.sales-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sales-content > div {
  margin-bottom: 40px;
}

.sales-content h2 {
  margin-bottom: 1.5rem;
}

/* Section boxes */
.sales-problem,
.sales-solution,
.sales-who,
.sales-week {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.sales-problem p,
.sales-solution p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Four Pillars Framework */
.sales-framework {
  text-align: center;
}

.sales-framework.section-cream {
  background: var(--cream);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pillar-icon-img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

/* Before/After Transformation */
.sales-transformation {
  text-align: center;
}

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

@media (max-width: 600px) {
  .transformation-grid {
    grid-template-columns: 1fr;
  }
}

.transform-before,
.transform-after {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: left;
}

.transform-before {
  border: 2px solid var(--warm-grey);
}

.transform-after {
  border: 2px solid var(--burgundy);
}

.transform-before h4,
.transform-after h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.transform-before h4 {
  color: var(--warm-grey-dark);
}

.transform-after h4 {
  color: var(--burgundy);
}

.transform-before ul,
.transform-after ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transform-before ul li,
.transform-after ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  font-size: 1rem;
}

.transform-before ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--warm-grey);
}

.transform-after ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: bold;
}

/* Stock Image with Overlay - FULL WIDTH */
.sales-image-break {
  position: relative;
  height: 450px;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  border-radius: 0;
}

.sales-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.image-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  padding: 32px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 600px;
}

.image-overlay-text h2 {
  margin: 0;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .image-overlay-text {
    padding: 24px 32px;
    max-width: 90%;
  }
  
  .image-overlay-text h2 {
    font-size: 1.4rem;
  }
}

/* What's Included */
.sales-includes {
  padding: 40px 0;
}

.includes-list {
  list-style: none;
  padding: 0;
}

.includes-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--warm-grey-light);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.includes-list li:last-child {
  border-bottom: none;
}

/* Includes with image layout */
.includes-with-image {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .includes-with-image {
    grid-template-columns: 1fr;
  }
  
  .includes-image {
    display: none;
  }
}

.includes-with-image .includes-list {
  margin: 0;
}

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

/* This is for you / Who section */
.sales-who ul,
.sales-week ul {
  list-style: none;
  padding: 0;
}

.sales-who ul li,
.sales-week ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
}

.sales-who ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--burgundy);
}

/* Sales About section */
.sales-about {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 40px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  border-radius: 0;
}

.sales-about .about-content {
  max-width: 1100px;
  margin: 0 auto;
}

.sales-about h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.sales-about p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.8;
}

.sales-about .about-text h2 {
  color: var(--white);
}

/* Sales Urgency section */
.sales-urgency {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--burgundy);
}

.sales-urgency h2 {
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.sales-urgency p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Pricing CTA */
.sales-cta {
  text-align: center;
}

.price-box {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  display: inline-block;
  max-width: 420px;
  width: 100%;
}

.price-box h2 {
  margin-bottom: 16px;
}

.price-box .price-context {
  font-size: 1rem;
  color: var(--text-light);
  margin: 20px 0 24px;
}

.price-box .btn {
  margin-top: 8px;
}

.price-box .guarantee {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--warm-grey-light);
}

.price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.price span {
  font-size: 1.5rem;
  font-weight: 400;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
  margin-top: 24px;
}

.price-anchor {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.guarantee {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--warm-grey-light);
  line-height: 1.6;
}

/* FAQs */
.sales-faq {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.sales-faq h2 {
  margin-bottom: 24px;
}

.faq-item {
  padding: 0;
  border-bottom: 1px solid var(--warm-grey-light);
}

.faq-item:last-child {
  border-bottom: none;
}

/* Collapsible FAQ styling */
details.faq-item {
  padding: 0;
}

details.faq-item summary {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--burgundy);
  font-weight: 300;
  transition: var(--transition);
}

details[open].faq-item summary::after {
  content: "−";
}

details.faq-item p {
  padding-bottom: 20px;
  margin: 0;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Final CTA */
.sales-final-cta {
  text-align: center;
  background: var(--burgundy);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
}

.sales-final-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.sales-final-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.sales-final-cta .btn {
  background: var(--white);
  color: var(--burgundy);
}

.sales-final-cta .btn:hover {
  background: var(--cream);
}

/* Featured Quote styling */
.featured-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--burgundy);
  font-style: italic;
  text-align: center;
  padding: 24px;
  margin: 24px 0;
  border-left: 4px solid var(--burgundy);
  background: var(--cream);
  border-radius: var(--radius);
}

.featured-quote .quote-author {
  display: block;
  font-size: 1rem;
  font-style: normal;
  margin-top: 12px;
  color: var(--text-light);
}

/* Content link styling */
.content-link {
  color: #9b1d52;
  text-decoration: underline;
  font-weight: 600;
}

.content-link:hover {
  color: #7a1641;
}

/* Tradition topic styling */
.tradition-topic {
  margin-bottom: 32px;
}

.tradition-topic h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.tradition-topic > p {
  margin-bottom: 12px;
}

.tradition-topic ol {
  padding-left: 24px;
}

/* Reduce hero container padding on larger screens for longer headlines */
@media (min-width: 992px) {
  .sales-hero .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Wider subtitle to prevent orphan words */
.sales-hero .sales-subtitle {
  max-width: 1000px;
}

/* Crop hero image to 50% height */
.sales-image-break {
  max-height: 250px;
  overflow: hidden;
}

.sales-image-break img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content-width image (same as text containers) */
.sales-content-image {
  margin: 48px 0;
}

.sales-content-image img {
  width: 100%;
  border-radius: 12px;
}

/* ===========================================
   CYCLE SYNCING PAGE - ADDITIONAL STYLES
   =========================================== */

/* Image with overlay text box */
.image-overlay-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 3rem;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-overlay-box h2 {
  color: #7A1B3D;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.image-overlay-box p {
  color: #4a4a4a;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.image-overlay-box p:last-child {
  margin-bottom: 0;
}

/* Centered product mockup (smaller than full width) */
.product-mockup-centered {
  text-align: center;
  padding: 2rem 0;
}

.product-mockup-centered img {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive adjustments for cycle syncing */
@media (max-width: 768px) {
  /* Fix the intro section on mobile */
  .sales-image-break.tall {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  
  .sales-image-break.tall img {
    height: 250px;
  }
  
  .image-overlay-box {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    width: 100%;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
  }
  
  .image-overlay-box h2 {
    font-size: 1.4rem;
  }
  
  .product-mockup-centered img {
    max-width: 100%;
  }
  
  /* Hide ebook image on mobile */
  .sales-includes .includes-image-float {
    display: none;
  }
}

/* Taller image break for cycle syncing intro */
.sales-image-break.tall {
  max-height: 400px;
  height: 400px;
}

/* Floating ebook image for cycle syncing - top right with text wrap */
.sales-includes .includes-image-float {
  float: right;
  margin: 0 0 20px 30px;
  max-width: 220px;
}

.sales-includes .includes-image-float img {
  max-width: 100%;
  height: auto;
}

/* Clear float after includes section */
.sales-includes::after {
  content: "";
  display: table;
  clear: both;
}

/* Smaller ebook image for cycle syncing */
.sales-includes .includes-image img {
  max-width: 250px;
  width: 100%;
  height: auto;
}

/* MOBILE OVERRIDES - must be at end to take precedence */
@media (max-width: 768px) {
  /* Reduce section padding on mobile */
  .section {
    padding: 40px 0;
  }
  
  /* Remove gap before intro image */
  .sales-content > div:last-child {
    margin-bottom: 0;
  }
  
  /* Fix the intro section on mobile */
  .sales-image-break.tall {
    height: auto;
    max-height: none;
    overflow: visible;
    margin-top: 0;
  }
  
  .sales-image-break.tall img {
    height: 200px;
    object-fit: cover;
  }
  
  /* Overlay box sits below image on mobile */
  .image-overlay-box {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0;
    width: 100%;
    padding: 2rem 24px;
    border-radius: 0;
    box-shadow: none;
    background: var(--white);
  }
  
  .image-overlay-box h2 {
    font-size: 1.5rem;
  }
  
  /* Hide ebook image on mobile */
  .sales-includes .includes-image-float {
    display: none;
  }
  
  /* Tighten up sales boxes on mobile */
  .sales-problem,
  .sales-solution,
  .sales-who {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  /* Reduce spacing between content divs */
  .sales-content > div {
    margin-bottom: 24px;
  }
  
  /* Before/After boxes on mobile */
  .transformation-grid {
    gap: 16px;
  }
  
  .transform-before,
  .transform-after {
    padding: 24px;
  }
  
  /* Price box on mobile */
  .price-box {
    padding: 32px 24px;
  }
  
  /* FAQ on mobile */
  .sales-faq {
    padding: 24px;
  }
  
  /* About section on mobile */
  .sales-about {
    padding: 40px 24px;
  }
  
  /* Final CTA on mobile */
  .sales-final-cta {
    padding: 32px 24px;
  }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Hero Image */
.blog-hero {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.blog-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Blog Content Container */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.blog-content strong {
  font-weight: 900;
}

.blog-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--burgundy);
  text-align: center;
}

.blog-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.blog-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* Blog CTA Box */
.blog-cta {
  background: var(--cream);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin: 3rem 0 2rem 0;
}

.blog-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Blog Navigation */
.blog-nav {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream);
}

/* More Posts Section */
.more-posts {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--cream);
  text-align: center;
}

.more-posts h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--burgundy);
}

.more-posts .card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.more-posts h4 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
}

/* Card Grid 3 Column */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .blog-content h1 {
    font-size: 2rem;
  }
  
  .blog-hero {
    max-height: 250px;
  }
}
/* =============================================
   TESTIMONIALS SECTION
   Add this to the bottom of your styles.css
   ============================================= */

.sales-testimonials {
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.sales-testimonials h2 {
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #e8e0e3;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.testimonial-stars {
  color: #d4a259;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.7;
  color: #4a3a40;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #7A1B3D;
  margin-bottom: 4px;
}

.testimonial-detail {
  font-size: 0.85rem;
  color: #9a8a90;
}

/* Placeholder card */
.testimonial-placeholder {
  background: #f9f6f7;
  border: 2px dashed #d4c8cc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-placeholder .testimonial-stars {
  opacity: 0.3;
}

.placeholder-text {
  color: #b8a8ae !important;
  font-style: italic;
}

/* Mobile: stack cards */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
