/* Candy Atlas — Full Site Styles v3 */
:root {
  --ink: #1a0b1f;
  --muted: #7a6b82;
  --pink: #e91e8c;
  --pink-soft: #ffe4f0;
  --pink-warm: #fff0f5;
  --cream: #fffbf7;
  --cream-warm: #fff5ed;
  --line: #f0e4eb;
  --lilac: #7c5cff;
  --lilac-soft: #ede8ff;
  --teal: #2dd4bf;
  --yellow: #fbbf24;
  --coral: #ff7b7b;
  --mint: #a7f3d0;
  --danger: #ef4444;
  --success: #22c55e;
  --shadow: 0 4px 24px rgba(26,11,31,0.08);
  --shadow-lg: 0 12px 40px rgba(26,11,31,0.12);
  --radius: 24px;
  --radius-sm: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}
.shell { width: min(1200px, 100% - 40px); margin-inline: auto; }

/* Header */
.site-header {
  background: rgba(255,251,247,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 20px;
  box-shadow: 0 4px 14px rgba(233,30,140,0.35);
}
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; }
.brand-text small { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 600;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--pink); transition: width 0.3s; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--pink); }

/* Buttons */
.btn {
  padding: 14px 28px; border-radius: 999px; font-size: 14px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 8px 24px rgba(26,11,31,0.2); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26,11,31,0.28); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-small { padding: 10px 20px; font-size: 13px; }
.text-link { color: var(--lilac); font-size: 14px; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* Eyebrow */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--pink); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--pink); border-radius: 2px; }

/* ===== NEW HERO: Phone Center + Floating Badges ===== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 60%, var(--pink-warm) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.1), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,0.08), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 10; }
.hero-copy h1 {
  font-size: clamp(42px, 5vw, 68px); line-height: 1.05;
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-copy > p { font-size: 18px; color: var(--muted); max-width: 520px; line-height: 1.7; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; font-size: 12px; color: #a090a0; }

/* Hero Visual — Phone Center */
.hero-visual {
  position: relative; height: 480px;
  display: grid; place-items: center;
}
.hero-phone-center {
  width: 220px; height: 400px; background: linear-gradient(180deg, #2a1f3d, #1a0b1f);
  border-radius: 32px; padding: 12px; box-shadow: 0 24px 70px rgba(0,0,0,0.3);
  position: relative; z-index: 10; border: 2px solid rgba(255,255,255,0.08);
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 80px; height: 20px; background: #000; border-radius: 10px; }
.phone-screen {
  width: 100%; height: 100%; background: linear-gradient(180deg, #3a2a55, #1f1530);
  border-radius: 22px; overflow: hidden; position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(6, 1fr); gap: 6px; padding: 50px 14px 14px;
}
.candy-tile {
  border-radius: 8px; display: grid; place-items: center; font-size: 14px; color: rgba(255,255,255,0.9);
  animation: floatTile 3.5s ease-in-out infinite; box-shadow: inset 0 1px 2px rgba(255,255,255,0.2);
}
.candy-tile:nth-child(2n) { animation-delay: 0.4s; }
@keyframes floatTile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.t-pink { background: linear-gradient(135deg, #ff6b9d, #ff8fab); }
.t-teal { background: linear-gradient(135deg, #4ecdc4, #7fdbda); }
.t-yellow { background: linear-gradient(135deg, #ffe66d, #fff0a3); color: #8b6914 !important; }
.t-lilac { background: linear-gradient(135deg, #aa96da, #c4b5e0); }
.t-coral { background: linear-gradient(135deg, #f38181, #f5a0a0); }
.t-mint { background: linear-gradient(135deg, #95e1d3, #b8f0e6); color: #1a5c4a !important; }

/* Floating Badges around phone */
.float-badge {
  position: absolute;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(26,11,31,0.12); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  animation: badgeFloat 5s ease-in-out infinite;
  z-index: 20; cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-badge:hover { transform: scale(1.08) !important; box-shadow: 0 12px 40px rgba(26,11,31,0.18); }
.float-badge .icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 18px;
}
.float-badge .info { display: flex; flex-direction: column; }
.float-badge .info strong { font-size: 14px; font-weight: 700; }
.float-badge .info span { font-size: 11px; color: var(--muted); }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(-6px) rotate(-1deg); }
}

/* Specific badge positions */
.badge-1 { top: 5%; left: 5%; animation-delay: 0s; }
.badge-2 { top: 15%; right: 5%; animation-delay: 1.2s; }
.badge-3 { bottom: 25%; left: 0%; animation-delay: 0.6s; }
.badge-4 { bottom: 10%; right: 0%; animation-delay: 1.8s; }
.badge-5 { top: 45%; left: -5%; animation-delay: 0.9s; }
.badge-6 { top: 50%; right: -5%; animation-delay: 2.4s; }

/* Floating candy orbs (decorative) */
.orb {
  position: absolute; border-radius: 50%;
  animation: orbDrift 8s linear infinite;
  opacity: 0.6; pointer-events: none;
}
@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(20px, -30px) scale(1.1); opacity: 0.6; }
  50% { transform: translate(-10px, -50px) scale(0.9); opacity: 0.4; }
  75% { transform: translate(30px, -20px) scale(1.05); opacity: 0.5; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
}

/* Stats Strip */
.stats-strip { background: #fff; border-block: 1px solid var(--line); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 8px; }
.stat-item strong {
  font-size: 38px; font-weight: 800; display: block; line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-item span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; display: block; }

/* Sections */
section { padding: 90px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.section-head h2 em { font-style: normal; color: var(--pink); }
.section-head p { color: var(--muted); max-width: 420px; font-size: 15px; line-height: 1.7; }

/* ===== COMPACT REVIEW CARDS ===== */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line);
  overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-visual {
  height: 160px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f8f0f5, #f0e8f8);
}
.review-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.review-card:hover .review-visual img { transform: scale(1.05); }
.review-visual .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,11,31,0.35) 100%);
  z-index: 1;
}
.review-content { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.review-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-meta b { font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.review-meta strong { color: var(--pink); font-size: 15px; font-weight: 800; }
.review-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.review-content > p { color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: 14px; flex: 1; }
.review-dl { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.review-dl div dt { font-size: 9px; text-transform: uppercase; color: #9a8a9a; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 2px; }
.review-dl div dd { font-size: 12px; font-weight: 700; }
.review-link { font-size: 12px; font-weight: 700; color: var(--ink); text-decoration: none; }
.review-link:hover { color: var(--pink); }

/* Multiplier Section */
.multi-section { background: linear-gradient(180deg, var(--cream-warm), var(--cream)); }
.multi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.multi-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 32px; box-shadow: var(--shadow);
}
.multi-card .badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 800;
  margin-bottom: 16px;
}
.badge-pink { background: var(--pink-soft); color: var(--pink); }
.badge-lilac { background: var(--lilac-soft); color: var(--lilac); }
.badge-dark { background: var(--ink); color: #fff; }
.multi-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.multi-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Comparison Table */
.compare-section { background: #fff; }
.compare-table-wrap { border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 14px; }
.compare-table th {
  background: var(--cream-warm); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--line);
}
.compare-table tr:not(:last-child) td { border-bottom: 1px solid var(--line); }
.compare-table td strong { font-weight: 700; }
.compare-table tr:hover td { background: var(--cream-warm); }
.score-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.pill-high { background: #dcfce7; color: #166534; }
.pill-mid { background: #fef9c3; color: #854d0e; }
.pill-low { background: #fee2e2; color: #991b1b; }

/* Methodology */
.method-section { background: linear-gradient(135deg, var(--ink), #2a1f3d); color: #fff; }
.method-section .section-head h2 { color: #fff; }
.method-section .section-head p { color: #b0a0c0; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.method-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px; transition: all 0.3s;
}
.method-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.method-card b { color: var(--pink); font-size: 14px; font-weight: 700; display: block; margin-bottom: 12px; }
.method-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.method-card p { color: #c0b0d0; font-size: 14px; line-height: 1.65; }

/* Criteria Grid */
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; }
.criteria-item { background: rgba(26,11,31,0.6); padding: 28px; }
.criteria-item b { color: #f47bad; font-size: 14px; font-weight: 700; display: block; margin-bottom: 8px; }
.criteria-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.criteria-item p { color: #c0b0d0; font-size: 13px; }

/* Guides */
.guides-section { background: var(--cream-warm); }
.guides-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.guide-visual {
  background: linear-gradient(135deg, #fff0f5, #e8f4ff); border-radius: var(--radius);
  height: 440px; display: grid; place-items: center; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.guide-visual::before {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.08), transparent 70%);
  top: -60px; right: -60px;
}
.guide-list { display: flex; flex-direction: column; gap: 16px; }
.guide-item {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
  transition: all 0.2s; cursor: pointer;
}
.guide-item:hover { border-color: var(--pink); transform: translateX(4px); }
.guide-item .num { color: var(--pink); font-size: 18px; font-weight: 700; font-style: italic; min-width: 28px; }
.guide-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.guide-item p { font-size: 13px; color: var(--muted); margin: 0; }
.guide-item .arrow { margin-left: auto; color: var(--pink); font-size: 18px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line);
  padding: 20px 24px; cursor: pointer; transition: all 0.2s;
}
.faq-item:hover { border-color: var(--pink); }
.faq-item summary { list-style: none; font-size: 15px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--pink); font-size: 20px; font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Promise */
.promise-section { background: linear-gradient(135deg, var(--pink-warm), var(--lilac-soft)); }
.promise-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.promise-list { display: flex; flex-direction: column; gap: 20px; }
.promise-item {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line);
  padding: 24px; display: grid; grid-template-columns: 50px 1fr; gap: 16px;
  box-shadow: var(--shadow);
}
.promise-item b { color: var(--pink); font-size: 20px; font-weight: 700; }
.promise-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.promise-item p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Newsletter */
.newsletter-section { padding: 100px 0; }
.newsletter-card {
  background: linear-gradient(135deg, var(--pink-soft), var(--lilac-soft));
  border-radius: var(--radius); padding: 64px; text-align: center;
  border: 1px solid var(--line);
}
.newsletter-card h2 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
.newsletter-card p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; font-size: 16px; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 22px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 14px; outline: none; }
.newsletter-form input:focus { border-color: var(--pink); }

/* Footer */
.site-footer { background: var(--ink); color: #c8b9d4; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.footer-grid a { color: #a090b0; text-decoration: none; font-size: 14px; display: block; margin-bottom: 10px; transition: color 0.2s; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { font-size: 14px; line-height: 1.7; color: #a090b0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: #806d8f; flex-wrap: wrap; gap: 10px; }

/* Page Intro */
.page-intro { text-align: center; padding: 100px 0 60px; background: linear-gradient(180deg, var(--cream-warm), var(--cream)); }
.page-intro h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 800; max-width: 800px; margin: 20px auto; line-height: 1.05; }
.page-intro > p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 17px; line-height: 1.7; }

/* Archive (Reviews page) */
.archive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.archive-card {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line);
  overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.archive-visual { height: 140px; position: relative; overflow: hidden; background: linear-gradient(135deg, #f8f0f5, #f0e8f8); }
.archive-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.archive-card:hover .archive-visual img { transform: scale(1.05); }
.archive-visual .img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(26,11,31,0.3) 100%); z-index: 1; }
.archive-content { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.archive-meta { display: flex; justify-content: space-between; margin-bottom: 8px; }
.archive-meta b { font-size: 9px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.1em; }
.archive-meta strong { color: var(--pink); font-size: 14px; font-weight: 800; }
.archive-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.2; }
.archive-content > p { color: var(--muted); font-size: 12px; line-height: 1.55; margin-bottom: 12px; flex: 1; }

/* Guide List Page */
.guide-list-page { display: flex; flex-direction: column; gap: 16px; }
.guide-row {
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line);
  padding: 24px 28px; display: grid; grid-template-columns: 60px 1fr 40px; align-items: center;
  transition: all 0.2s; cursor: pointer;
}
.guide-row:hover { border-color: var(--pink); transform: translateX(4px); }
.guide-row .num { color: var(--pink); font-size: 20px; font-weight: 700; font-style: italic; }
.guide-row h4 { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.guide-row p { font-size: 13px; color: var(--muted); margin: 0; }
.guide-row .tag { font-size: 10px; text-transform: uppercase; color: var(--pink); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 4px; display: block; }
.guide-row .arrow { color: var(--pink); font-size: 22px; text-align: right; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 0.8fr; gap: 20px; }
.contact-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 32px; box-shadow: var(--shadow);
}
.contact-card b { color: var(--pink); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-bottom: 10px; }
.contact-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.contact-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.contact-card.dark { background: var(--ink); color: #fff; }
.contact-card.dark b { color: #f47bad; }
.contact-card.dark p { color: #b0a0c0; }
.contact-aside p { font-size: 10px; text-transform: uppercase; color: var(--pink); font-weight: 700; letter-spacing: 0.12em; margin-bottom: 4px; }
.contact-aside strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 16px; }

/* Story / About */
.story-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.story-card {
  background: linear-gradient(145deg, #ffb9d3, #f55396); border-radius: var(--radius);
  padding: 48px; color: #fff; text-align: center;
}
.story-card .emoji { font-size: 60px; margin-bottom: 16px; }
.story-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.story-card p { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; opacity: 0.9; }
.prose h2 { font-size: 28px; font-weight: 700; margin: 32px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.prose a { color: var(--pink); font-weight: 700; text-decoration: none; }

/* Legal */
.legal { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
.legal h2 { font-size: 24px; font-weight: 700; margin: 32px 0 12px; }
.legal p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.legal aside {
  background: var(--pink-warm); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px; font-size: 13px; color: var(--muted); margin-top: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
  .review-grid, .archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .hero-grid, .promise-grid, .guides-grid, .faq-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .review-grid, .archive-grid, .multi-grid, .method-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero-visual { height: 400px; }
  .float-badge { display: none; }
  .hero-phone-center { width: 180px; height: 340px; }
}
@media (max-width: 600px) {
  .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .review-grid, .archive-grid { grid-template-columns: 1fr; }
  .newsletter-card { padding: 36px; }
  .newsletter-form { flex-direction: column; }
  section { padding: 60px 0; }
  .hero-visual { height: 340px; }
}
