/* ─── Variables ─── */
:root {
  --cream: #FFFBF5;
  --cream-dark: #F5EDE3;
  --accent: #c8963e;
  --accent-hover: #b5842f;
  --accent-light: rgba(200, 150, 62, 0.12);
  --text: #1a1a1a;
  --text-light: #5a5549;
  --text-muted: #8a8279;
  --border: #e8e2d9;
  --white: #ffffff;
  --red: #d94f4f;
  --green: #3a9e5c;
  --yellow: #d4a73a;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'DM Serif Display', serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ─── Container ─── */
.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.3);
}
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-large {
  padding: 1.1rem 3rem;
  font-size: 1.15rem;
}
.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-bridge {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 3rem;
  font-style: italic;
}

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
}
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--text); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ─── Hero ─── */
.hero {
  padding: 8rem 0 4rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.hero-detail {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image img { border-radius: var(--radius); }

/* ─── Problem Section ─── */
.problem-section {
  padding: 5rem 0;
  background: var(--white);
}
.problem-section .section-title { margin-bottom: 2.5rem; }

/* ChatGPT Mockup */
.ai-chat-mockup {
  max-width: 680px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.ai-chat-header {
  background: #2d2d2d;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-chat-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #555;
}
.ai-chat-dot:nth-child(1) { background: #ff5f57; }
.ai-chat-dot:nth-child(2) { background: #febc2e; }
.ai-chat-dot:nth-child(3) { background: #28c840; }
.ai-chat-label {
  color: #aaa;
  font-size: 0.8rem;
  margin-left: auto;
  font-weight: 500;
}
.ai-chat-body {
  background: #f7f7f8;
  padding: 1.5rem;
}
.ai-msg {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.ai-msg:last-child { margin-bottom: 0; }
.ai-msg-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  background: var(--cream-dark);
}
.ai-icon {
  background: #1a1a1a;
  color: white;
  font-size: 1rem;
}
.ai-msg-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}
.ai-msg-text p { margin-bottom: 0.75rem; }
.ai-msg-text p:last-child { margin-bottom: 0; }
.ai-msg-text ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}
.ai-msg-text ol li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.user-msg .ai-msg-text {
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Problem text */
.problem-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.problem-callout {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.problem-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.problem-bridge {
  font-weight: 600;
  color: var(--text) !important;
  font-size: 1.15rem !important;
  margin-top: 1.5rem !important;
}

/* ─── Steps ─── */
.steps-section { padding: 5rem 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.step-card h3 { margin-bottom: 0.75rem; }
.step-card p { color: var(--text-light); font-size: 0.95rem; }

/* ─── Examples Section ─── */
.examples-section {
  padding: 5rem 0;
  background: var(--white);
}

/* Tabs */
.example-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tab-btn {
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Example labels */
.example-label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.example-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* Article Frame */
.article-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 780px;
  margin: 0 auto;
}
.article-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.article-badge {
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.article-url {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.article-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.5rem;
}
.article-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.article-intro {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* Entry cards */
.entry-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.entry-highlighted {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(200,150,62,0.03), rgba(200,150,62,0.08));
}
.entry-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.entry-rank {
  background: var(--accent);
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.your-spot-badge {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.entry-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.entry-photo {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.entry-header-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.entry-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.entry-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.entry-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.entry-card blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1rem;
  font-style: italic;
  color: var(--text);
  margin: 1rem 0;
  font-size: 0.95rem;
}
.entry-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.entry-tags span {
  background: var(--cream);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Article expand/collapse */
.article-more { display: none; }
.article-frame.expanded .article-more { display: block; }
.article-expand-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  margin-top: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.article-expand-btn:hover {
  background: var(--accent-light);
}
.article-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.article-footer p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* ─── Report Section ─── */
.report-section {
  padding: 5rem 0;
}
.report-frame {
  max-width: 780px;
  margin: 2rem auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.report-header {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  padding: 2rem;
}
.report-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.report-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}
.report-business { font-size: 1.05rem; opacity: 0.9; }
.report-date { font-size: 0.85rem; opacity: 0.6; margin-top: 0.25rem; }

/* Score section */
.report-score-section {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.report-score-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.score-bar {
  flex: 1;
  height: 14px;
  background: var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  width: var(--score);
  background: linear-gradient(90deg, var(--yellow), var(--accent));
  border-radius: 10px;
  transition: width 1s ease;
}
.score-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent);
}
.score-number span { font-size: 1rem; color: var(--text-muted); }
.score-verdict {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.score-verdict.needs-work { color: var(--yellow); }

/* Platform rows */
.report-platforms { padding: 1.5rem 2rem; }
.platform-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.platform-row:last-child { border-bottom: none; }
.platform-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.platform-status {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.status-good { background: rgba(58,158,92,0.12); color: var(--green); }
.status-partial { background: rgba(212,167,58,0.15); color: #b8930e; }
.status-bad { background: rgba(217,79,79,0.1); color: var(--red); }
.platform-detail {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.platform-score-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mini-bar {
  width: 120px; height: 6px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}
.mini-bar-fill {
  height: 100%;
  width: var(--score);
  border-radius: 4px;
  background: var(--accent);
}
.platform-score-mini span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Competitors */
.report-competitors {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.report-sub-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.competitor-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.comp-name {
  font-size: 0.85rem;
  width: 220px;
  flex-shrink: 0;
  color: var(--text-light);
}
.competitor-row.you .comp-name { font-weight: 700; color: var(--text); }
.comp-bar {
  flex: 1;
  height: 10px;
  background: var(--cream-dark);
  border-radius: 6px;
  overflow: hidden;
}
.comp-bar-fill {
  height: 100%;
  width: var(--score);
  background: var(--accent);
  border-radius: 6px;
}
.comp-score {
  font-weight: 700;
  font-size: 0.9rem;
  width: 30px;
  text-align: right;
}

/* Factors */
.report-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.factors-col ul {
  list-style: none;
  padding: 0;
}
.factors-col li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}
.factors-good li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.factors-bad li::before { content: '\2717'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* Quick Wins */
.report-wins {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.report-wins ol {
  padding-left: 1.25rem;
}
.report-wins li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Projected */
.report-projected {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.projected-bars { margin-bottom: 1rem; }
.projected-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.projected-row span:first-child {
  width: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.bar-now { background: var(--yellow) !important; }
.bar-after { background: var(--green) !important; }
.projected-score { color: var(--green) !important; }
.projected-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Bottom Line */
.report-bottom-line {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.report-bottom-line p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Clips Section ─── */
.clips-section { padding: 5rem 0; background: var(--white); }
.clips-inner {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 3rem;
  align-items: center;
}
.clips-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.clips-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; }
.clips-note {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

/* ─── Package Section ─── */
.package-section { padding: 5rem 0; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.package-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.package-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.package-item h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.package-item p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 0.75rem; }
.package-value {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}
.package-total {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.15rem;
}
.total-label { color: var(--text-light); }
.total-original {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  margin-left: 0.5rem;
}

/* ─── Scarcity ─── */
.scarcity-section {
  padding: 4rem 0;
  background: #1a1a1a;
  color: white;
}
.scarcity-title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}
.scarcity-text {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
}
.spots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}
.spot-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.spot-city {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.spot-count {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.spots-num {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}
.spot-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
}
.dot.filled { background: var(--accent); border-color: var(--accent); }
.scarcity-sub {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.scarcity-sub a { color: var(--accent); }

/* ─── Pricing ─── */
.pricing-section { padding: 5rem 0; }
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.pricing-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.pricing-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
}
.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.check { color: var(--green); font-weight: 700; }
.item-value {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.pricing-total { margin-bottom: 1.5rem; }
.pricing-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text);
  margin: 0.25rem 0;
}
.pricing-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.pricing-philosophy {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 1.5rem 0;
  font-style: italic;
  line-height: 1.7;
  text-align: left;
}
.pricing-section .btn-large {
  width: 100%;
  margin-bottom: 1.5rem;
}
.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  background: rgba(58,158,92,0.06);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
}
.guarantee-icon { font-size: 1.5rem; flex-shrink: 0; }
.guarantee-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.guarantee-text strong { color: var(--text); }
.pricing-fine {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Why Section ─── */
.why-section {
  padding: 5rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.why-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }

/* ─── About ─── */
.about-section { padding: 5rem 0; }
.about-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
}
.about-photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}
.faq-section .section-title { margin-bottom: 2.5rem; }
.faq-item {
  max-width: 700px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Final CTA ─── */
.final-cta {
  padding: 5rem 0;
  background: var(--cream-dark);
  text-align: center;
}
.final-cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.final-cta > .container > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.final-sub {
  margin-top: 1rem !important;
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
}

/* ─── Footer ─── */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.footer-contact { font-size: 0.9rem; color: var(--text-light); }
.footer-legal { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .main-nav, .header-inner .btn-sm { display: none; }
  .mobile-menu-btn { display: flex; }

  body.nav-open .main-nav {
    display: flex;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--cream);
    z-index: 99;
  }
  body.nav-open .main-nav a { font-size: 1.3rem; }
  body.nav-open .mobile-menu-btn span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  body.nav-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
  body.nav-open .mobile-menu-btn span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 6rem 0 3rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image { order: -1; }
  .hero-ctas { justify-content: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .spots-grid { grid-template-columns: 1fr; }
  .report-factors { grid-template-columns: 1fr; }

  .clips-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .clips-image { order: -1; }
  .clips-image img { max-width: 300px; margin: 0 auto; }

  .about-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .article-frame { padding: 1.25rem; }
  .entry-header { flex-direction: column; }
  .entry-photo { width: 100%; height: 180px; }

  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-price { font-size: 2.8rem; }

  .competitor-row { flex-wrap: wrap; }
  .comp-name { width: 100%; font-size: 0.8rem; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .package-grid { grid-template-columns: 1fr; }

  .report-frame { margin-left: -0.5rem; margin-right: -0.5rem; }
  .report-header, .report-score-section, .report-platforms,
  .report-competitors, .report-factors, .report-wins,
  .report-projected, .report-bottom-line { padding-left: 1.25rem; padding-right: 1.25rem; }
}
