/* ==========================================================================
   THE BRAZILIAN KITCHEN - HIGH CONVERSION DIRECT-RESPONSE LANDING PAGE
   Target Market: United States (English)
   ========================================================================== */

:root {
  --terracotta: #c1440e;
  --terracotta-dark: #9e3609;
  --terracotta-light: #fef4ee;
  --amazon-green: #1b4d3e;
  --amazon-dark: #11352a;
  --amazon-light: #eef6f2;
  --sun-gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fffbeb;
  --cream-bg: #faf7f2;
  --cream-card: #f4ede2;
  --white: #ffffff;
  --ink: #18202c;
  --ink-light: #4b5563;
  --ink-muted: #8392a5;
  --border: #e6ded5;
  --border-dark: #d5c8b8;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-cta: 0 10px 25px rgba(193, 68, 14, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container-max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--cream-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #11352a, #1b4d3e, #11352a);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.88rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  z-index: 100;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.announcement-bar .highlight-badge {
  background: var(--sun-gold);
  color: #11352a;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 800;
  margin-right: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  display: inline-block;
}

.timer-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
  margin-left: 6px;
  display: inline-block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 50px 0 70px 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(27, 77, 62, 0.05) 0%, transparent 50%),
              var(--cream-bg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.social-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.star-rating {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.1rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.hero-title span.text-highlight {
  color: var(--terracotta);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-light);
  margin-bottom: 28px;
}

.hero-checklist {
  list-style: none;
  margin-bottom: 32px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amazon-light);
  color: var(--amazon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d94a10 0%, #c1440e 50%, #a83808 100%);
  color: #ffffff;
  padding: 18px 38px;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-cta);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(193, 68, 14, 0.45);
  background: linear-gradient(135deg, #e45214 0%, #d14911 50%, #b53d09 100%);
}

.cta-button .btn-subtext {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-top: 4px;
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(193, 68, 14, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(193, 68, 14, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 68, 14, 0); }
}

.cta-microcopy {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.cta-microcopy span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   3D BOOK MOCKUP
   ========================================================================== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.book-stage {
  perspective: 1600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-3d {
  width: 320px;
  height: 457px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(8deg) rotateZ(-2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.35),
              0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 4px 10px 10px 4px;
}

.book-stage:hover .book-3d {
  transform: rotateY(-8deg) rotateX(4deg) scale(1.03);
}

.book-cover-front {
  width: 100%;
  height: 100%;
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  position: relative;
  background: #231815;
}

.book-cover-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 40%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.book-spine-crease {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(255,255,255,0.2), rgba(0,0,0,0.4));
  pointer-events: none;
}

.book-pages-side {
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: -24px;
  width: 25px;
  background: repeating-linear-gradient(
    90deg,
    #fcf8f2,
    #fcf8f2 1px,
    #ede5d8 1px,
    #ede5d8 2px
  );
  transform: rotateY(90deg);
  transform-origin: left;
  border-radius: 0 4px 4px 0;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.book-shadow {
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 85%;
  height: 35px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 70%);
  filter: blur(8px);
  transform: rotate(-3deg);
  pointer-events: none;
}

/* FLOATING BADGES AROUND BOOK */
.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--border);
  z-index: 10;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top {
  top: -15px;
  right: -25px;
}

.floating-badge.badge-bottom {
  bottom: 30px;
  left: -35px;
  animation-delay: 2s;
}

.badge-icon {
  font-size: 1.2rem;
}

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* ==========================================================================
   TRUST / US SUPERMARKET BAR
   ========================================================================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--amazon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.supermarket-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-tag {
  background: var(--cream-bg);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

/* ==========================================================================
   THE PROBLEM / AGITATION SECTION
   ========================================================================== */
.problem-section {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-tag {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.compare-card {
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
}

.compare-card.bad {
  background: #fdf6f6;
  border: 1.5px solid #f8d7da;
}

.compare-card.good {
  background: #f4faf6;
  border: 2px solid #34a853;
  box-shadow: var(--shadow-md);
}

.compare-card h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-card.bad h3 { color: #b91c1c; }
.compare-card.good h3 { color: var(--amazon-green); }

.compare-list {
  list-style: none;
}

.compare-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.compare-card.bad li span.icon { color: #dc2626; font-weight: 800; }
.compare-card.good li span.icon { color: #16a34a; font-weight: 800; font-size: 1.1rem; }

/* ==========================================================================
   WHAT MAKES THIS DIFFERENT: 9-SECTION SYSTEM
   ========================================================================== */
.system-section {
  padding: 80px 0;
  background: var(--cream-bg);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--terracotta-light);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.5;
}

/* ==========================================================================
   FOOD FEAST GALLERY (12 HERO RECIPES)
   ========================================================================== */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.food-card {
  background: var(--cream-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

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

.food-img-wrap {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.food-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.food-card:hover .food-img-wrap img {
  transform: scale(1.06);
}

.food-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(17, 53, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.food-info {
  padding: 14px 16px;
}

.food-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--ink);
}

.food-info p.pt-name {
  font-size: 0.78rem;
  color: var(--terracotta);
  font-style: italic;
  font-weight: 600;
}

/* ==========================================================================
   MASTERCLASSES SECTION
   ========================================================================== */
.masterclass-section {
  padding: 80px 0;
  background: #11352a;
  color: #ffffff;
}

.masterclass-section h2, .masterclass-section h3, .masterclass-section h4 {
  color: #ffffff;
}

.masterclass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.mc-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease;
}

.mc-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.mc-number {
  color: var(--sun-gold);
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mc-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.mc-card p {
  font-size: 0.85rem;
  color: #d1fae5;
  line-height: 1.5;
}

/* ==========================================================================
   3 HIGH-VALUE BONUSES
   ========================================================================== */
.bonuses-section {
  padding: 80px 0;
  background: var(--cream-bg);
}

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

.bonus-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.bonus-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--amazon-green);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.bonus-value {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 8px;
  display: block;
}

.bonus-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.bonus-footer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amazon-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   MEET CHEF CAMILA SILVA
   ========================================================================== */
.author-section {
  padding: 80px 0;
  background: var(--white);
}

.author-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.author-photo-holder {
  text-align: center;
}

.author-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--terracotta);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 16px auto;
}

.author-caption {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.author-text h2 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.author-subtitle {
  font-size: 1rem;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-bio p {
  font-size: 0.98rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.author-quote {
  border-left: 3px solid var(--sun-gold);
  padding-left: 16px;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-top: 24px;
}

/* ==========================================================================
   CUSTOMER REVIEWS / TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  background: var(--cream-bg);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.verified-pill {
  background: #ecfdf5;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.review-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 16px;
  font-style: italic;
}

.reviewer-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.reviewer-location {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
  padding: 60px 0;
  background: var(--white);
}

.guarantee-card {
  max-width: 860px;
  margin: 0 auto;
  border: 2px dashed #1b4d3e;
  background: #f6faf8;
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.guarantee-badge-img {
  width: 130px;
  height: 130px;
  background: var(--amazon-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  padding: 12px;
  box-shadow: var(--shadow-md);
}

.guarantee-badge-img span.days {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.guarantee-badge-img span.sub {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.guarantee-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--amazon-green);
}

.guarantee-text p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ==========================================================================
   VALUE STACK & FINAL PRICING CARD
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream-bg) 0%, #ede5d8 100%);
}

.stack-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stack-header {
  background: #11352a;
  color: #ffffff;
  padding: 30px;
  text-align: center;
}

.stack-header h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.stack-header p {
  font-size: 0.9rem;
  color: #a7f3d0;
}

.stack-body {
  padding: 40px;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f1ece4;
  font-size: 0.96rem;
}

.stack-item .item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}

.stack-item .item-val {
  font-weight: 700;
  color: var(--ink-muted);
}

.stack-item.bonus-item .item-val {
  color: #16a34a;
}

.price-summary-box {
  margin-top: 30px;
  text-align: center;
  padding: 24px;
  background: var(--cream-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.price-regular {
  font-size: 1rem;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-deal {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.price-deal span.cents {
  font-size: 1.8rem;
}

.price-savings-pill {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 40px auto 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--cream-bg);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--terracotta);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-light);
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 16px 24px 22px 24px;
  border-top: 1px solid var(--border);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0d161d;
  color: #94a3b8;
  padding: 50px 0 30px 0;
  font-size: 0.85rem;
  text-align: center;
}

.site-footer a {
  color: #cbd5e1;
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 780px;
  margin: 16px auto 24px auto;
  line-height: 1.5;
  font-size: 0.75rem;
  color: #64748b;
}

/* ==========================================================================
   STICKY FLOATING CTA BAR (MOBILE)
   ========================================================================== */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--terracotta);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  z-index: 999;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

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

.sticky-bar-info {
  display: flex;
  flex-direction: column;
}

.sticky-bar-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
}

.sticky-bar-desc {
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.sticky-bar-btn {
  background: var(--terracotta);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-cta);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-title { font-size: 2.5rem; }
  .social-proof-pill, .hero-checklist li { justify-content: center; }
  .cta-microcopy { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .masterclass-grid { grid-template-columns: repeat(2, 1fr); }
  .author-grid { grid-template-columns: 1fr; text-align: center; }
  .author-quote { border-left: none; border-top: 2px solid var(--sun-gold); padding-top: 14px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.05rem; }
  .comparison-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .masterclass-grid { grid-template-columns: 1fr; }
  .guarantee-card { flex-direction: column; text-align: center; }
  .cta-button { width: 100%; padding: 16px 20px; font-size: 1.1rem; }
  .stack-body { padding: 24px 16px; }
  .floating-badge { display: none; }
}
