/* Base Reset */
:root {
  --primary: #FF4D00; /* Vibrant Orange */
  --primary-hover: #CC3D00;
  --bg-dark: #0A0A0A;
  --bg-darker: #050505;
  --bg-light: #F4F4F5;
  --text-light: #FAFAFA;
  --text-dark: #111111;
  --text-gray: #A1A1AA;
  --font-body: 'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Sections: giới hạn nội dung 850px, header/footer vẫn 1200px */
section .container {
  max-width: 850px;
}
@media (max-width: 768px) {
  .container { padding: 0 15px; }
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-in-up-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: 800;
}

.text-orange { color: var(--primary); }
.text-orange-dark { color: #D94100; }
.highlight-text {
  font-size: 1.25rem;
  font-weight: 600;
  background: rgba(255, 77, 0, 0.1);
  padding: 16px;
  border-left: 4px solid var(--primary);
  margin-top: 24px;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .section-title { font-size: 3rem; }
}
.section-title.center { text-align: center; }
.section-title.dark { color: var(--text-dark); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label.center { text-align: center; }
.section-label.dark { color: #D94100; }

/* Buttons */
.btn-primary, .btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #E63900 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 16px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-primary:hover, .btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 77, 0, 0.6);
}
.btn-primary::after, .btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { color: var(--primary); }
.logo-accent { color: var(--primary); }
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  transition: var(--transition);
}
.header-nav a:hover {
  color: #fff;
}
.btn-header {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 24px;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-header:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 768px) {
  .header-nav, .btn-header { display: none; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  text-align: center;
  background-color: var(--bg-darker);
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.05;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 77, 0, 0.15);
  color: var(--primary);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 32px;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 77, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}
.hero-headline {
  font-size: 5rem;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero-headline { font-size: 2.6rem; }
  .hero-sub { font-size: 1.15rem; }
  .hero-sub strong { font-size: 1.2rem; }
}
.hero-sub {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 32px;
  word-break: break-word;
}
.hero-sub strong {
  color: #fff;
  font-size: 1.6rem;
}
.hero-target {
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-cta {
  margin-bottom: 40px;
  width: 100%;
  max-width: 600px;
}
.hero-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.slot {
  width: 24px; height: 8px;
  border-radius: 4px;
}
.slot.filled { background: var(--primary); }
.slot.available { background: #333; }
.slot-label {
  margin-left: 12px;
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Sections General */
.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background-color: var(--bg-dark);
  padding: 100px 0;
}
.section-texture {
  background-color: #141416;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 100px 0;
  position: relative;
}

/* Torn Edges - Simplified with CSS gradients instead of images for guaranteed loading */
.torn-bottom, .torn-top-light, .torn-bottom-light, .torn-top-dark, .torn-bottom-dark {
  display: none; /* Can be replaced with actual SVG masks if provided, skipping for clean modern look */
}

/* Problem Section */
.problem-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.problem-text {
  font-size: 1.2rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-text.centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.problem-but {
  font-family: var(--font-display);
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.problem-nightmare {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  border-left: 4px solid var(--primary);
  padding-left: 16px !important;
}
.problem-truth {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: #D94100;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.problem-reveal {
  grid-column: 1 / -1;
  background: #fff;
  padding: 40px;
  border-left: 6px solid var(--primary);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.08);
}
.problem-reveal p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.problem-reveal p:last-child { margin-bottom: 0; }

.from-desk {
  font-family: monospace;
  background: #fff;
  padding: 24px;
  border-left: 4px solid var(--text-dark);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.1);
  margin: 0 auto 40px;
  max-width: 700px;
  text-align: left;
}
.problem-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.problem-text {
  font-size: 1.2rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Proof image in Problem Section */
.proof-image {
  margin: 16px auto;
  text-align: center;
  overflow: hidden;
  max-width: 100%;
}
.proof-image img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 2px solid rgba(255, 77, 0, 0.4);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .proof-image img {
    max-height: 200px;
    object-fit: cover;
    object-position: left top;
    border-radius: 6px;
  }
}
.proof-caption {
  font-size: 0.875rem !important;
  color: #888 !important;
  margin-top: 8px !important;
  font-style: italic;
}

/* Story Section */
.story-top {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.story-intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.story-intro strong { color: #fff; }

.story-author-block {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  background: rgba(255, 77, 0, 0.06);
  border: 1px solid rgba(255, 77, 0, 0.2);
  padding: 48px;
  font-size: 1.2rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story-author-block strong { color: var(--primary); }

.story-credentials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .story-credentials-row { grid-template-columns: 1fr; }
}
.story-shock {
  background: rgba(255,77,0,0.05);
  border: 1px solid rgba(255,77,0,0.2);
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.shock-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-top: 12px;
}
.story-reveal {
  background: rgba(255, 77, 0, 0.08);
  border-left: 4px solid var(--primary);
  padding: 24px 32px;
  margin: 32px 0 0;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-gray);
}
.story-reveal strong { color: #fff; }
.story-result {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  flex: 1;
}
.result-icon { font-size: 1.5rem; }

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 77, 0, 0.25);
  border-top: 3px solid var(--primary);
  padding: 28px 24px;
  border-radius: 4px;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 77, 0, 0.25);
  line-height: 1;
  margin-bottom: 8px;
}
.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
}
.pillar-title span {
  color: var(--primary);
  font-weight: 600;
}
.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 10px;
}
.pillar-card p:last-child { margin-bottom: 0; }
.pillar-card strong { color: #fff; }

/* Story CTA Block */
.story-cta-block {
  margin-top: 40px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(255,77,0,0.12) 0%, rgba(255,77,0,0.04) 100%);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-gray);
  text-align: center;
}
.story-cta-block strong { color: #fff; }
@media (max-width: 768px) {
  .story-cta-block { padding: 24px 20px; font-size: 1rem; }
}

.story-credentials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cred-card {
  background: #111;
  padding: 32px;
  text-align: center;
  border-top: 4px solid #333;
}
.cred-card.orange { border-top-color: var(--primary); }
.cred-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cred-card.orange .cred-number { color: var(--primary); }

/* Benefits Section */
.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.25rem;
  color: var(--text-gray);
}
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
.benefit-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--primary);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: rgba(255,77,0,0.5);
  transform: translateY(-5px) !important;
}
.benefit-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 64px;
}
.benefit-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,77,0,0.3);
  line-height: 1;
}
.benefit-icon {
  font-size: 2rem;
}
.benefit-body {
  flex: 1;
}
.benefit-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.benefit-body p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}
.benefit-body strong { color: #fff; }
@media (max-width: 768px) {
  .benefit-card { flex-direction: column; gap: 12px; }
  .benefit-left { flex-direction: row; min-width: auto; }
}

.deliverables {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 60px;
}
@media (max-width: 768px) {
  .deliverables { padding: 32px; }
}
.deliverables-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.deliverable-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.deliverable-item:last-child { border-bottom: none; padding-bottom: 0; }
.deliverable-item .check {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 900;
}
.deliverable-item strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 4px;
}
.deliverable-item p { color: var(--text-gray); }
.deliverable-item.highlight {
  background: rgba(255,77,0,0.1);
  padding: 24px;
  border: 1px solid rgba(255,77,0,0.3);
  margin-top: 16px;
}

/* Blueprint Section */
.blueprint-hook {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
}
.blueprint-hook-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}
.blueprint-hook-sub strong { color: #fff; }

.blueprint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
.blueprint-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-left: 4px solid var(--primary);
  padding: 32px 28px;
  border-radius: 4px;
}
.blueprint-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 77, 0, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.blueprint-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blueprint-title span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}
.blueprint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.blueprint-list li {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}
.blueprint-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.85rem;
}
.blueprint-list strong { color: #fff; }
.blueprint-list em { color: var(--primary); font-style: normal; }

/* Verdict Section */
.section-verdict {
  background: #050505;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-verdict::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.18) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.verdict-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.verdict-trigger {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.verdict-headline-wrap {
  position: relative;
  margin-bottom: 48px;
}
.verdict-headline {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 0 60px rgba(255, 77, 0, 0.4);
}
@media (max-width: 768px) {
  .verdict-headline { font-size: 3rem; }
}
.verdict-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 48px;
}
.verdict-body strong { color: #fff; }
.verdict-or {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}
.verdict-choice {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 77, 0, 0.25);
  border-left: 5px solid var(--primary);
  padding: 24px 32px;
  font-size: 1.2rem;
  color: var(--text-gray);
  text-align: left;
  line-height: 1.8;
  transition: var(--transition);
}
.verdict-choice:hover {
  background: rgba(255, 77, 0, 0.07);
}
.verdict-choice strong { color: #fff; }
.verdict-divider {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .verdict-choice { padding: 20px; font-size: 1.05rem; }
}

/* Vision Section */

.section-vision {
  background: linear-gradient(to bottom, #0A0A0A, #1A0800);
  padding: 100px 0;
}
.vision-content { max-width: 800px; margin: 0 auto; text-align: center; }
.vision-scene {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}
.vision-item {
  background: rgba(255,255,255,0.03);
  padding: 24px;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.vision-emoji { font-size: 2.5rem; }
.vision-question {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

/* Testimonial Section */
.section-testimonial {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 0;
  position: relative;
}
.testimonial-card {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  position: relative;
}
@media (max-width: 768px) {
  .testimonial-card { padding: 32px; }
}
.testimonial-quote {
  font-family: serif;
  font-size: 6rem;
  color: rgba(255,77,0,0.2);
  position: absolute;
  top: 20px; left: 40px;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.author-avatar {
  width: 60px; height: 60px;
  background: #333; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem;
}
.testimonial-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid #eee;
  padding-top: 32px;
}
.t-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.t-stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}

/* Pricing Section */
.pricing-comparison {
  max-width: 800px;
  margin: 60px auto;
}
.price-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .price-vs { flex-direction: column; gap: 24px; }
}
.price-old, .price-new { flex: 1; text-align: center; }
.price-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.price-num.strikethrough { text-decoration: line-through; color: #666; }
.price-num.orange { color: var(--primary); font-size: 4rem; }
.vs-arrow {
  font-size: 2rem;
  color: #666;
}
@media (max-width: 768px) {
  .vs-arrow { transform: rotate(90deg); }
}

.bonus-section {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.bonus-header {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .bonus-grid { grid-template-columns: 1fr; }
}
.bonus-card {
  background: #111;
  padding: 32px;
  position: relative;
  text-align: center;
}
.bonus-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 0.75rem;
}
.bonus-card h4 { font-size: 1.5rem; margin-bottom: 16px; }
.bonus-card p { color: var(--text-gray); margin-bottom: 24px; }
.bonus-value { text-decoration: line-through; color: #666; }
.bonus-free { font-family: var(--font-display); font-size: 2rem; color: #00E676; font-weight: 800; }
.total-value { text-align: center; font-size: 1.5rem; }
.total-num { font-family: var(--font-display); font-weight: 800; color: var(--primary); font-size: 2rem; margin-left: 12px; }

.scarcity-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #111;
  padding: 40px;
  border-bottom: 4px solid var(--primary);
}
.scarcity-warning {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.slots-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}
.slot-box {
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.slot-box.filled { background: #222; color: #666; text-decoration: line-through; }
.slot-box.available { background: rgba(255,77,0,0.1); border: 1px solid var(--primary); color: var(--primary); }
.slot-box.pulse { animation: pulse 2s infinite; }

/* CTA Section */
.section-cta {
  background: var(--primary);
  color: #fff;
  padding: 100px 0;
  position: relative;
  text-align: center;
}
.cta-noise {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.15;
  pointer-events: none;
}
.cta-headline { font-size: 4rem; margin-bottom: 60px; color: #fff; }
.cta-headline span { color: #000; }
.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cta-steps { grid-template-columns: 1fr; }
}
.cta-step {
  background: rgba(0,0,0,0.1);
  padding: 32px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: #000; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
}
.cta-form {
  background: #fff;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.form-group { margin-bottom: 24px; text-align: left; }
.form-group input {
  width: 100%;
  padding: 16px;
  background: #F4F4F5;
  border: 1px solid #E5E5E5;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #111;
  transition: var(--transition);
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.2);
}
.cta-form .btn-cta {
  width: 100%;
  font-size: 1.25rem;
}
.form-disclaimer {
  color: #666;
  font-size: 0.875rem;
  margin-top: 16px;
}
.success-msg {
  background: #00E676;
  color: #000;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
  text-align: left;
}
.success-msg h3 { font-size: 1.5rem; margin-bottom: 12px; }

/* PS Section */
.section-ps {
  background: #0A0A0A;
  padding: 80px 0;
  text-align: center;
}
.ps-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--text-gray);
}
.ps-label {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: #333;
  line-height: 1;
  margin-bottom: 24px;
}

/* Footer */
.site-footer {
  background: #050505;
  padding: 60px 0 24px;
  border-top: 1px solid #111;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-grid { flex-direction: column; gap: 40px; }
}
.footer-tagline { color: var(--text-gray); margin-top: 16px; max-width: 300px; }
.footer-links h4 { font-size: 1.25rem; margin-bottom: 16px; color: #fff; }
.footer-links a {
  display: block;
  color: var(--text-gray);
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  text-align: center;
  color: #444;
  font-size: 0.875rem;
  padding-top: 24px;
  border-top: 1px solid #111;
}

/* ===== MOBILE PADDING OVERRIDE (left/right = 15px) ===== */
@media (max-width: 768px) {
  .story-author-block         { padding: 24px 15px; margin-top: 40px; }
  .problem-reveal             { padding: 24px 15px; }
  .from-desk                  { padding: 16px 15px; }
  .benefit-card               { padding: 24px 15px; }
  .deliverables               { padding: 24px 15px; }
  .bonus-section              { padding: 24px 15px; }
  .bonus-card                 { padding: 28px 15px 20px; }
  .scarcity-block             { padding: 24px 15px; }
  .cta-step                   { padding: 32px 15px 20px; }
  .cta-form                   { padding: 24px 15px; }
  .success-msg                { padding: 24px 15px; }
  .testimonial-card           { padding: 28px 15px; }
  .highlight-text             { padding: 12px 15px; }
  .story-shock                { padding: 20px 15px; }
  .cred-card                  { padding: 20px 15px; }
  .vision-item                { padding: 16px 15px; }
  .deliverable-item.highlight { padding: 16px 15px; }
}
