/* ==========================================================================
   RESET™ WORKSHOP SALES PAGE STYLES
   ========================================================================== */

/* DESIGN SYSTEM VARIABLES */
:root {
  --sage-green: #3D5A4C;
  --sage-green-light: #F0F4F2;
  --sage-green-glow: rgba(61, 90, 76, 0.08);
  --apricot: #E28F66;
  --apricot-light: #FAF2EC;
  --terracotta: #AF432D;
  --terracotta-light: #FDF1EF;
  --charcoal: #2D231E;
  --muted: #73625A;
  --cream-bg: #FCF9F5;
  --cream-dark: #EFE4D8;
  --white: #FFFFFF;
  --gold: #C5A059;
  --gold-light: #FAF5EB;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(61, 90, 76, 0.12);
  
  /* Shadows & Radius */
  --shadow-premium: 0 16px 48px rgba(61, 90, 76, 0.06);
  --shadow-hover: 0 24px 56px rgba(175, 67, 45, 0.1);
  --shadow-lg: 0 32px 64px rgba(45, 35, 30, 0.08);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

/* BASE STYLES OVERRIDES & ANCHORS */
body {
  background-color: var(--cream-bg);
  color: var(--charcoal);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
}

.sales-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sales-section-header h2 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.sales-section-header .section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: inline-block;
}

/* KEY ANIMATIONS */
@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 8px 32px rgba(175, 67, 45, 0.3); }
  50% { transform: scale(1.03); box-shadow: 0 12px 40px rgba(175, 67, 45, 0.5); }
  100% { transform: scale(1); box-shadow: 0 8px 32px rgba(175, 67, 45, 0.3); }
}

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

@keyframes revealFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SALES HERO SECTION */
.sales-hero {
  position: relative;
  background: radial-gradient(circle at 50% -20%, var(--apricot-light) 0%, var(--cream-bg) 75%);
  padding: 11rem 0 7rem;
  text-align: center;
  overflow: hidden;
}

.sales-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(242, 201, 174, 0.45) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.sales-hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(61, 90, 76, 0.07) 0%, transparent 70%);
  filter: blur(45px);
  z-index: 1;
}

.sales-hero .container {
  position: relative;
  z-index: 2;
}

.sales-badge {
  display: inline-block;
  background: var(--terracotta-light);
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(175, 67, 45, 0.15);
  box-shadow: 0 4px 12px rgba(175, 67, 45, 0.03);
}

.sales-hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  letter-spacing: -1px;
}

.sales-sub {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--terracotta);
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-wrap: pretty;
  text-align: center;
}

.sales-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 4rem auto 4.5rem;
  max-width: 950px;
}

.meta-item-box {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  padding: 1.2rem 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.meta-item-box:hover {
  transform: translateY(-4px);
  border-color: var(--apricot);
  box-shadow: 0 12px 30px rgba(226, 143, 102, 0.1);
}

.meta-item-box i {
  color: var(--terracotta);
  font-size: 1.4rem;
}

.meta-item-box span {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.05rem;
}

/* BUTTONS Styling overrides for sales context */
.sales-hero .btn-primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: var(--white);
  padding: 1.2rem 3rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(175, 67, 45, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sales-hero .btn-primary:hover,
.btn-primary:hover {
  background: #963520;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(175, 67, 45, 0.35);
  color: var(--white);
}

/* SECTIONS WRAPPING */
.sales-section {
  padding: 8rem 0;
  position: relative;
}

.sales-section--dark {
  background: var(--sage-green-light);
}

/* AGITATION GRID & CARDS */
.agitation-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.agitation-card {
  background: var(--white);
  padding: 4rem 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-premium);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  flex: 1 1 400px;
  max-width: 480px;
}

.agitation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--apricot);
  opacity: 0.7;
}

.agitation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(61, 90, 76, 0.08);
}

.agitation-card h3 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 1rem;
}

.agitation-quote {
  font-style: italic;
  font-weight: 500;
  color: var(--sage-green);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  position: relative;
}

/* Agitation Bottom Summary Card */
.agitation-summary-card {
  background: var(--cream-light, #FAF2EC);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  text-align: center;
  margin-top: 3rem;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
}

.agitation-summary-card h4 {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.agitation-summary-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0;
  text-align: center;
}

/* STORY NARRATIVE SECTION */
.story-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--charcoal);
  text-align: center;
}

.story-content p {
  margin-bottom: 2.2rem;
  text-wrap: pretty;
  text-align: center;
}

.story-p-lead {
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--sage-green);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: center;
}

.story-mid-image, .story-end-image {
  margin: 4.5rem 0;
  text-align: center;
}

.story-mid-image img {
  max-width: 100%;
  max-height: 750px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  transition: transform 0.4s ease;
  display: block;
  margin: 0 auto;
}

.story-end-image img {
  max-width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  transition: transform 0.4s ease;
  display: block;
  margin: 0 auto;
}

.story-mid-image img:hover, .story-end-image img:hover {
  transform: scale(1.01);
}

.story-highlight-block {
  background: var(--white);
  border-top: 5px solid var(--sage-green);
  padding: 3rem;
  margin: 4rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  text-align: center;
}

.story-highlight-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
  text-align: center;
}

.story-highlight-block p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
  text-align: center;
}

.image-caption {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 1.2rem;
  font-style: italic;
  display: block;
  text-align: center;
}

/* READ MORE COLLAPSIBLE STORY STYLE */
.readmore-container {
  position: relative;
  width: 100%;
}

.readmore-content {
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease-out;
}

.readmore-fade {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--cream-bg) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.sales-section--dark .readmore-fade {
  background: linear-gradient(to bottom, rgba(240, 244, 242, 0) 0%, var(--sage-green-light) 100%);
}

.readmore-container.expanded .readmore-fade {
  opacity: 0;
}

.readmore-action {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.btn-readmore {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--charcoal);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-readmore:hover {
  border-color: var(--sage-green);
  color: var(--sage-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* METHOD / PILLARS SECTION */
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.pillar-card {
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-premium);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 200px;
  max-width: 240px;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--sage-green);
  box-shadow: 0 16px 36px rgba(61, 90, 76, 0.08);
}

.pillar-card-letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--terracotta);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1;
}

.pillar-card h4 {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 700;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}

/* COST OF INACTION SECTION & TABLE */
.cost-table-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: 4rem auto;
  max-width: 900px;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.cost-table th, .cost-table td {
  padding: 1.8rem 2.5rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1.1rem;
  transition: background-color 0.2s ease;
}

.cost-table th {
  background: var(--sage-green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cost-table th:last-child {
  text-align: right;
}

.cost-table tr:hover td {
  background-color: rgba(61, 90, 76, 0.02);
}

.cost-table tr:last-child td {
  border-bottom: none;
}

.cost-table td.cost-price {
  font-weight: 700;
  color: var(--terracotta);
  text-align: right;
  font-size: 1.15rem;
}

.cost-total-row {
  background: var(--apricot-light);
  font-weight: 700;
}

.cost-total-row:hover td {
  background-color: var(--apricot-light) !important;
}

.cost-total-row td {
  font-size: 1.25rem !important;
  color: var(--charcoal);
}

.cost-total-row td.cost-price {
  color: var(--terracotta) !important;
  font-size: 1.35rem !important;
}

.cost-summary-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 3.5rem auto 4.5rem;
  color: var(--terracotta);
  max-width: 700px;
  line-height: 1.4;
}

/* LISTS Styling (Check / Cross) */
.check-list, .cross-list {
  list-style: none;
  padding: 0;
}

.check-list li, .cross-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--sage-green);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.3rem;
}

.cross-list li::before {
  content: "\f057";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--terracotta);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.3rem;
}

/* BEFORE / AFTER MATRIX */
.matrix-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.matrix-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  flex: 1 1 400px;
  max-width: 480px;
}

.matrix-col--before {
  border-left: 6px solid var(--terracotta);
}

.matrix-col--after {
  border-left: 6px solid var(--sage-green);
  background: linear-gradient(to bottom right, var(--white) 60%, var(--sage-green-light) 100%);
}

.matrix-col h3 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.matrix-col--before h3 {
  color: var(--terracotta);
}

.matrix-col--after h3 {
  color: var(--sage-green);
}

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

.matrix-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal);
}

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

/* TIMELINE CURRICULUM LAYOUT */
.curriculum-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 4.5rem;
}

.day-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  flex: 1 1 400px;
  max-width: 480px;
}

.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(45, 35, 30, 0.08);
}

.day-header {
  background: var(--sage-green-light);
  padding: 3rem 3.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.day-label {
  display: inline-block;
  background: var(--sage-green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.day-header h3 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
}

.day-header p {
  font-style: italic;
  color: var(--muted);
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

.day-body {
  padding: 3.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.bullet-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.bullet-list li::before {
  content: "✦";
  color: var(--apricot);
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: -2px;
}

.day-result {
  margin-top: auto;
  background: var(--apricot-light);
  padding: 1.6rem 2.2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

/* TOOLKIT GRID & CARDS */
.toolkit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 4.5rem 0 3.5rem;
}

.toolkit-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 200px;
  max-width: 240px;
}

.toolkit-card:hover {
  transform: translateY(-8px);
  border-color: var(--apricot);
  box-shadow: var(--shadow-hover);
}

.toolkit-icon {
  width: 64px;
  height: 64px;
  background: var(--apricot-light);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  border: 1px solid rgba(226, 143, 102, 0.15);
}

.toolkit-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
}

.toolkit-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1050px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  position: relative;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
  flex: 1 1 450px;
  max-width: 500px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-card i.fa-quote-left {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-size: 3rem;
  color: rgba(61, 90, 76, 0.05);
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-premium);
  flex-shrink: 0;
}

.author-avatar--terracotta {
  background: var(--terracotta-light);
  color: var(--terracotta);
}

.author-avatar--green {
  background: var(--sage-green-light);
  color: var(--sage-green);
}

.author-details h5 {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
}

.author-details p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  text-align: left;
}

/* OFFER SECTION & CONTAINER */
.offer-section {
  background: radial-gradient(circle at 50% 50%, var(--apricot-light) 0%, var(--cream-bg) 100%);
  padding: 9rem 0;
}

.offer-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.offer-banner {
  background: var(--sage-green);
  color: var(--white);
  text-align: center;
  padding: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.offer-body {
  padding: 6rem 5rem;
}

.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.offer-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.offer-checklist {
  max-width: 600px;
  margin: 0 auto 4.5rem;
  background: var(--sage-green-light);
  padding: 3rem 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-premium);
}

.offer-checklist .check-list li {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  text-align: left;
}

.offer-checklist .check-list li:last-child {
  margin-bottom: 0;
}

.price-box {
  text-align: center;
  border-top: 1px solid var(--cream-dark);
  padding-top: 4.5rem;
  margin-top: 4.5rem;
}

.price-box .btn-primary {
  padding: 1.2rem 3.5rem;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  gap: 0.8rem;
}

.price-val {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-val span {
  font-size: 1.8rem;
  text-decoration: line-through;
  color: var(--muted);
  margin-left: 2rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.price-sub {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 auto 3.5rem;
  max-width: 600px;
  text-align: center;
}

/* GUARANTEE BOX */
.guarantee-box {
  margin-top: 5rem;
  background: var(--gold-light);
  border-left: 5px solid var(--gold);
  padding: 3.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.guarantee-badge {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background: var(--white);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.1);
}

.guarantee-text h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.guarantee-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ ACCORDION Styles */
.faq-container {
  max-width: 850px;
  margin: 4rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 2.2rem 0;
}

.faq-question {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-question i {
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-top: 0;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 800px; /* Big enough to contain answer */
  margin-top: 1.5rem;
}

.faq-item.active .faq-question {
  color: var(--terracotta);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--terracotta);
}

/* STICKY BOTTOM BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 -8px 32px rgba(45, 35, 30, 0.08);
  border-top: 1px solid var(--cream-dark);
  padding: 1.4rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.sticky-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sticky-bar-info h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  font-family: 'Playfair Display', serif;
}

.sticky-bar-info p {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-bar-action {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sticky-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
}

/* BOOKING MODAL SYSTEM */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

.booking-modal.active {
  opacity: 1;
  pointer-events: all;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.booking-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--cream-dark) !important;
  background: var(--cream-bg) !important;
  padding: 4rem 3.5rem !important;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center !important;
}

.booking-modal.active .booking-modal-container {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(44, 24, 16, 0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.5rem;
  transition: all 0.2s ease;
  z-index: 10;
}

.booking-modal-close:hover {
  background: rgba(175, 67, 45, 0.12);
  color: var(--terracotta);
}

.booking-modal-header {
  margin-bottom: 2rem;
  text-align: center;
}

.booking-modal-header h3 {
  font-size: 2.2rem !important;
  color: var(--charcoal) !important;
  margin-bottom: 0.8rem !important;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.booking-modal-header p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}

.booking-form input, 
.booking-form textarea {
  width: 100% !important;
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--cream-dark) !important;
  padding: 1rem 1.2rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  background: var(--white) !important;
  transition: border-color 0.3s ease !important;
  text-align: center !important;
}

.booking-form input:focus, 
.booking-form textarea:focus {
  border-color: var(--apricot) !important;
  outline: none !important;
}

.booking-form button[type="submit"] {
  background: var(--terracotta) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 1.1rem !important;
  box-shadow: 0 8px 24px rgba(175, 67, 45, 0.25) !important;
  transition: all 0.3s ease !important;
}

.booking-form button[type="submit"]:hover {
  background: #963520 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(175, 67, 45, 0.35) !important;
}

/* SCROLL REVEAL CLASS */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
              transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE LAYOUT UPDATES */
@media (max-width: 1024px) {
  /* flex grids handle wrapping natively */
}

@media (max-width: 768px) {
  .sales-hero h1 {
    font-size: 2.2rem;
  }
  .sales-sub {
    font-size: 1.2rem;
  }
  .guarantee-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
  }
  .offer-body {
    padding: 4rem 2.5rem;
  }
  .price-val {
    font-size: 4rem;
  }
  .sticky-bar-info {
    display: none;
  }
  .sticky-bar-inner {
    justify-content: center;
    gap: 1.5rem;
  }
  .offer-checklist {
    padding: 2rem 2.2rem;
  }
}

@media (max-width: 480px) {
  .sales-hero h1 {
    font-size: 1.8rem;
  }
  .meta-item-box {
    width: 100%;
    justify-content: center;
  }
}

/* ADDITIONAL PREMIUM COMPONENTS */
.hero-hook-body {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.hero-hook-body p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
  text-align: center;
}

.hero-hook-body p.hero-hook-sub {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.hero-hook-highlight {
  font-size: 1.3rem !important;
  color: var(--terracotta) !important;
  font-weight: 600;
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
}

.cost-cta-card {
  background: var(--white);
  padding: 4.5rem 4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 4rem auto 0;
}

.cost-cta-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
}

.cost-cta-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.toolkit-container {
  background: var(--sage-green-light);
  padding: 5rem 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  max-width: 1100px;
  margin: 0 auto;
}

.toolkit-container h3 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--charcoal);
}

.toolkit-container p.toolkit-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Bonuses Grid */
.bonuses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3.5rem auto 0;
}

.bonus-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
  flex: 1 1 450px;
  max-width: 520px;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--apricot);
}

.bonus-icon {
  width: 56px;
  height: 56px;
  background: var(--apricot-light);
  color: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(226, 143, 102, 0.15);
}

.bonus-info h4 {
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  text-align: left;
}

.bonus-info p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Coach Letter styles */
.coach-message-container {
  max-width: 850px !important;
  text-align: center;
}

.coach-avatar-wrap {
  margin-bottom: 3.5rem;
  text-align: center;
}

.coach-avatar {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.coach-message-card {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--charcoal);
  text-align: left;
  background: var(--white);
  padding: 4.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-premium);
}

.coach-message-card p {
  margin-bottom: 1.8rem;
}

.coach-message-card p:last-of-type {
  margin-bottom: 2.5rem;
}

.coach-signature {
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}

.coach-signature span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Responsive adjustments for new layout helpers */
@media (max-width: 768px) {
  .bonuses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bonus-card {
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .coach-message-card {
    padding: 2.5rem 2rem;
  }
  .cost-cta-card {
    padding: 3rem 2rem;
  }
  .toolkit-container {
    padding: 3.5rem 2rem;
  }
}

/* Success/Danger Agitation Card Subclasses */
.agitation-card--success h3 {
  color: var(--sage-green) !important;
  border-color: rgba(61, 90, 76, 0.2) !important;
}
.agitation-card--danger h3 {
  color: var(--terracotta) !important;
  border-color: rgba(226, 143, 102, 0.2) !important;
}

/* FINAL CALL OUT SECTION */
.final-callout-section {
  text-align: center;
  padding: 8rem 0;
}
.final-callout-container {
  max-width: 700px !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-callout-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.final-callout-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--terracotta) !important;
  margin-bottom: 2.5rem !important;
}
.final-callout-credo {
  margin-bottom: 2.5rem;
}
.final-callout-credo p {
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-align: center;
}
.final-callout-credo p:last-child {
  margin-bottom: 0;
}
.final-callout-subtext {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.final-callout-container .btn-primary {
  padding: 1.2rem 3.5rem;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(175, 67, 45, 0.3);
}
.final-callout-schedule {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 2rem;
  font-weight: 700;
}
.final-callout-guarantee {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.8rem;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* COST SECTION CENTERING OVERRIDES */
.cost-section {
  text-align: center;
}

.cost-section .agitation-card {
  text-align: center;
}

.cost-section .cost-table th, 
.cost-section .cost-table td {
  text-align: center !important;
}

.cost-section .cost-table td.cost-price {
  text-align: center !important;
}


/* HERO GRID & LEFT ALIGNMENT STYLES */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  text-align: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Force H1 title on a single line on desktop screens */
@media (min-width: 993px) {
  .sales-hero h1 {
    white-space: nowrap;
  }
}

.hero-text-col .sales-badge {
  margin-left: auto;
  margin-right: auto;
}

.hero-text-col .sales-sub {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 100%;
}

.hero-text-col .sales-hero-meta {
  justify-content: center;
  margin: 2.5rem auto 3rem;
  gap: 1.5rem;
  width: 100%;
}

.hero-text-col .meta-item-box {
  flex: 0 1 auto;
}

.hero-text-col .hero-hook-body {
  text-align: center;
  margin: 0 auto;
}

.hero-text-col .hero-hook-body p {
  text-align: center;
}

.hero-text-col .hero-hook-highlight {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.4rem;
}

.hero-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  aspect-ratio: 3 / 4;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-portrait-frame:hover .hero-portrait-img {
  transform: scale(1.03);
}

/* Responsiveness for hero grid */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text-col {
    align-items: center;
    text-align: center;
  }
  
  .hero-text-col .sales-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-text-col .sales-sub {
    text-align: center;
    margin: 0 auto 2rem;
  }
  
  .hero-text-col .sales-hero-meta {
    justify-content: center;
    margin: 2.5rem auto 3rem;
  }
  
  .hero-text-col .hero-hook-body {
    text-align: center;
    margin: 0 auto 3rem;
  }
  
  .hero-text-col .hero-hook-body p {
    text-align: center;
  }
  
  .hero-text-col .hero-hook-highlight {
    text-align: center;
  }
  
  .hero-image-col {
    order: -1; /* Place image on top on mobile/tablet */
    margin-top: 0;
  }
}




