/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --bg4: #222222;
  --border: #2a2a2a;
  --border2: #333333;
  --text: #f0f0f0;
  --text2: #a0a0a0;
  --text3: #666666;
  --accent: #FF4458;
  --accent2: #FF6B6B;
  --accent3: #FF8E53;
  --accent-glow: rgba(255, 68, 88, 0.25);
  --green: #00e676;
  --red: #ff5252;
  --yellow: #ffd740;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-accent: 0 4px 24px rgba(255, 68, 88, 0.35);
  --gradient: linear-gradient(135deg, #FF6B6B 0%, #FF4458 100%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== AURORA BACKGROUND ===== */
.aurora-bg {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  overflow: hidden;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: auroraPulse linear infinite alternate;
}
.aurora-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(255,68,88,0.18) 0%, transparent 70%);
  animation-duration: 14s; animation-delay: 0s; opacity: 0.7;
}
.aurora-orb-2 {
  width: 500px; height: 500px;
  top: 20%; right: -150px;
  background: radial-gradient(circle, rgba(200,122,138,0.14) 0%, transparent 70%);
  animation-duration: 18s; animation-delay: -6s; opacity: 0.6;
  animation-name: auroraDrift;
}
.aurora-orb-3 {
  width: 700px; height: 400px;
  bottom: 10%; left: 20%;
  background: radial-gradient(circle, rgba(255,110,88,0.10) 0%, transparent 70%);
  animation-duration: 22s; animation-delay: -10s; opacity: 0.5;
  animation-name: auroraDrift2;
}
.aurora-orb-4 {
  width: 400px; height: 400px;
  bottom: -100px; right: 10%;
  background: radial-gradient(circle, rgba(180,80,120,0.12) 0%, transparent 70%);
  animation-duration: 16s; animation-delay: -3s; opacity: 0.6;
}
@keyframes auroraPulse {
  0%   { transform: scale(1) translate(0, 0); opacity: 0.5; }
  33%  { transform: scale(1.15) translate(30px, -20px); opacity: 0.75; }
  66%  { transform: scale(0.92) translate(-20px, 30px); opacity: 0.45; }
  100% { transform: scale(1.08) translate(10px, 10px); opacity: 0.65; }
}
@keyframes auroraDrift {
  0%   { transform: scale(1) translate(0, 0) rotate(0deg); }
  50%  { transform: scale(1.2) translate(-40px, 50px) rotate(15deg); }
  100% { transform: scale(0.9) translate(30px, -30px) rotate(-10deg); }
}
@keyframes auroraDrift2 {
  0%   { transform: scale(1) translate(0, 0); opacity: 0.4; }
  40%  { transform: scale(1.1) translate(60px, -40px); opacity: 0.6; }
  100% { transform: scale(0.95) translate(-30px, 20px); opacity: 0.35; }
}

/* All sections need z-index > aurora */
.app { position: relative; z-index: 1; }

.hidden { display: none !important; }
.app { width: 100%; min-height: 100vh; display: flex; flex-direction: column; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 24px; }
.logo-img { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.logo-text {
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, #D4949F 0%, #C87A8A 50%, #B56B7B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.5px;
}
.logo-badge {
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.navbar__signin {
  padding: 10px 22px;
  border: 1px solid var(--border2); border-radius: 8px;
  background: transparent; color: var(--text);
  font-size: 14px; font-weight: 500; font-family: var(--font);
  cursor: pointer; transition: all 0.2s;
}
.navbar__signin:hover { border-color: #555; background: rgba(255,255,255,0.05); }

/* ===== HERO ===== */
.hero-section {
  position: relative; overflow: hidden;
  padding: 80px 48px 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% -10%, rgba(255,68,88,0.18) 0%, transparent 65%);
  border-bottom: 1px solid var(--border);
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: 0.6;
}

/* Floating app logo sparks */
.hero-sparks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.app-spark {
  position: absolute;
  animation: appFloat linear infinite;
  opacity: 0;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5));
}
.app-spark img {
  display: block;
  width: 28px; height: 28px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.spark-1 { left: 6%;  animation-duration: 12s; animation-delay: 0s;    bottom: -50px; }
.spark-2 { left: 17%; animation-duration: 15s; animation-delay: 2.5s;  bottom: -50px; }
.spark-3 { left: 30%; animation-duration: 13s; animation-delay: 5s;    bottom: -50px; }
.spark-4 { left: 48%; animation-duration: 16s; animation-delay: 1s;    bottom: -50px; }
.spark-5 { left: 63%; animation-duration: 14s; animation-delay: 3.5s;  bottom: -50px; }
.spark-6 { left: 77%; animation-duration: 11s; animation-delay: 7s;    bottom: -50px; }
.spark-7 { left: 89%; animation-duration: 15s; animation-delay: 4s;    bottom: -50px; }

@keyframes appFloat {
  0%   { bottom: -50px; opacity: 0; transform: translateX(0px) scale(0.8); }
  8%   { opacity: 0.65; }
  30%  { transform: translateX(12px) scale(1); }
  60%  { transform: translateX(-8px) scale(0.95); }
  85%  { opacity: 0.5; }
  100% { bottom: 105%; opacity: 0; transform: translateX(5px) scale(0.85); }
}

.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,68,88,0.12);
  border: 1px solid rgba(255,68,88,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; color: var(--accent2); font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px); font-weight: 900;
  line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px); color: var(--text2);
  max-width: 580px; margin: 0 auto; line-height: 1.65;
}

/* Hero form */
.hero-upload {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  text-align: left;
}

/* Dropzone */
.dropzone {
  width: 100%; min-height: 180px;
  border: 2px dashed rgba(255,68,88,0.55);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,68,88,0.09) 0%, rgba(255,68,88,0.02) 50%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease; padding: 20px; margin-bottom: 16px;
}
.dropzone:hover { border-color: var(--accent); background: rgba(255,68,88,0.12); }
.dropzone.drag-over { border-color: var(--accent2); background: rgba(255,68,88,0.15); transform: scale(1.01); }
.dropzone__placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; }
.dropzone__icon { font-size: 40px; }
.dropzone__text { font-size: 16px; font-weight: 600; color: var(--text); }
.dropzone__hint { font-size: 13px; color: var(--text3); }

/* Photo grid */
.photo-grid { display: none; grid-template-columns: repeat(6, 1fr); gap: 8px; width: 100%; }
.photo-grid.visible { display: grid; }
.photo-thumb { position: relative; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; background: var(--bg3); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb .remove-btn {
  position: absolute; top: 3px; right: 3px;
  width: 20px; height: 20px; background: rgba(0,0,0,0.75);
  border: none; border-radius: 50%; color: white; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity 0.2s; font-family: var(--font);
}
.photo-thumb:hover .remove-btn { opacity: 1; }
.photo-thumb .photo-num {
  position: absolute; bottom: 3px; left: 3px;
  background: rgba(0,0,0,0.65); color: white;
  font-size: 10px; font-weight: 700; padding: 1px 5px; border-radius: 3px;
}
.add-more-btn {
  aspect-ratio: 1/1; border-radius: 8px;
  border: 2px dashed var(--border2); background: transparent;
  color: var(--text3); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.add-more-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Bio row */
.hero-bio-row { display: flex; gap: 16px; margin-bottom: 20px; text-align: left; }
.hero-bio-col { flex: 2; display: flex; flex-direction: column; gap: 8px; }
.hero-details-col { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.field-label { font-size: 14px; font-weight: 700; color: var(--text); }
.field-label-sm { font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 2px; display: block; }
.bio-textarea {
  flex: 1; width: 100%; min-height: 100px;
  padding: 12px 14px; background: var(--bg3);
  border: 1px solid var(--border2); border-radius: var(--radius-sm);
  color: var(--text); font-size: 14px; line-height: 1.5;
  resize: vertical; outline: none; font-family: var(--font);
  transition: border-color 0.2s;
}
.bio-textarea::placeholder { color: var(--text3); }
.bio-textarea:focus { border-color: var(--accent); }
.field-group { display: flex; flex-direction: column; }
.field-input {
  width: 100%; padding: 10px 12px;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 8px; color: var(--text);
  font-size: 16px; font-family: var(--font);
  outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.field-input::placeholder { color: var(--text3); }
.field-input:focus { border-color: var(--accent); }
select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; padding-right: 30px; cursor: pointer;
}
select.field-input option { background: var(--bg3); }

/* CTA button */
.hero-cta-wrap { display: flex; flex-direction: column; align-items: center; margin-top: 24px; margin-bottom: 20px; gap: 16px; }
.analyze-btn {
  background: var(--gradient); border: none; border-radius: var(--radius-sm);
  color: #fff; font-size: 17px; font-weight: 700; font-family: var(--font);
  padding: 16px 40px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-accent); white-space: nowrap;
}
.analyze-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,68,88,0.5); }
.analyze-btn:active { transform: translateY(0); }
.analyze-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn-icon { font-size: 16px; transition: transform 0.2s; }
.analyze-btn:hover .btn-icon { transform: translateX(3px); }

/* Social proof */
.hero-social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; font-size: 13px; color: var(--text3);
  flex-wrap: wrap; margin-bottom: 16px;
}
.proof-item { display: flex; align-items: center; gap: 4px; }
.proof-divider { color: var(--border2); }

/* Platform row */
.platform-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.platform-label { font-size: 12px; color: var(--text3); }
.platform-badge {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px;
  font-size: 12px; font-weight: 500; color: var(--text2);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.how-it-works h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 48px; letter-spacing: -1px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.step {
  text-align: center; padding: 32px 24px;
  background: var(--bg3); border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  transform-style: preserve-3d; will-change: transform;
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--gradient);
  border-radius: 50%; font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.step-icon { font-size: 36px; margin-bottom: 10px; display: block; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text2); line-height: 1.5; }

/* ===== TILT CARD ===== */
.tilt-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transform-style: preserve-3d; will-change: transform;
}
.tilt-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.5); border-color: var(--border2) !important; }

/* ===== SAMPLE RESULTS ===== */
.sample-results { padding: 80px 24px; }
.sample-results h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 8px; letter-spacing: -1px; }
.section-sub { text-align: center; color: var(--text2); font-size: 16px; margin-bottom: 40px; }
.samples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.sample-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.sample-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sample-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.sample-info h4 { font-size: 14px; font-weight: 700; }
.sample-info p { font-size: 12px; color: var(--text3); }
.sample-score { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.sample-score-num {
  font-size: 36px; font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sample-score-label { font-size: 13px; color: var(--text2); }
.sample-issue {
  font-size: 13px; color: var(--text2); line-height: 1.6;
  padding: 12px; background: rgba(255,82,82,0.07);
  border: 1px solid rgba(255,82,82,0.18); border-radius: 8px;
}

/* Extended sample card elements */
.sample-score-row { margin-bottom: 14px; }
.sample-subscores { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.subscore {
  font-size: 11px; color: var(--text3);
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 9px;
}
.subscore b { color: var(--text2); }
.sample-score-low  { color: #ff5252 !important; -webkit-text-fill-color: #ff5252 !important; }
.sample-score-mid  { color: #ffd740 !important; -webkit-text-fill-color: #ffd740 !important; }
.sample-score-high { color: #00e676 !important; -webkit-text-fill-color: #00e676 !important; }
.sample-section-label {
  font-size: 12px; font-weight: 700; color: var(--text2);
  margin: 14px 0 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.sample-list {
  list-style: none; padding: 0; margin: 0 0 4px;
  display: flex; flex-direction: column; gap: 5px;
}
.sample-list li {
  font-size: 13px; color: var(--text2); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.sample-list--bad li::before  { content: '✗'; position: absolute; left: 0; color: #ff5252; font-weight: 700; }
.sample-list--good li::before { content: '✓'; position: absolute; left: 0; color: #00e676; font-weight: 700; }
.sample-rewrite {
  font-size: 13px; color: var(--text2); line-height: 1.65;
  background: rgba(255,68,88,0.07); border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0; padding: 10px 12px;
  font-style: italic;
}
.sample-rewrite--gold {
  background: rgba(0,200,83,0.07); border-left-color: #00c853;
}
.sample-order {
  font-size: 13px; color: var(--text2); line-height: 1.65;
  background: rgba(255,215,64,0.07); border-left: 3px solid #ffd740;
  border-radius: 0 6px 6px 0; padding: 10px 12px;
}

/* ===== MAIN CONTENT ===== */
.main-content { flex: 1; width: 100%; max-width: 900px; margin: 0 auto; padding: 0 48px 20px; }
.results-column { min-width: 0; }

/* ===== LOADING ===== */
.loading-section { padding: 40px 0; }
.loading-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px 32px; text-align: center;
}
.loading-spinner-wrap {
  position: relative; width: 64px; height: 64px;
  margin: 0 auto 24px;
}
.loading-spinner {
  width: 64px; height: 64px;
  border: 3px solid var(--border2); border-top-color: var(--accent);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
.loading-ring-outer {
  position: absolute; inset: -6px;
  border: 2px dashed rgba(255,68,88,0.2);
  border-radius: 50%; animation: spin 4s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.loading-progress-bar {
  width: 100%; max-width: 320px; height: 4px;
  background: var(--bg3); border-radius: 2px;
  margin: 0 auto 24px; overflow: hidden;
}
.loading-progress-fill {
  height: 100%; background: var(--gradient); border-radius: 2px;
  width: 0%; transition: width 0.3s ease;
}
.loading-steps { display: flex; flex-direction: column; gap: 10px; max-width: 320px; margin: 0 auto; }
.loading-step {
  font-size: 13px; color: var(--text3);
  transition: color 0.3s, transform 0.3s;
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px; border-radius: 6px;
}
.loading-step.active {
  color: var(--text); font-weight: 600;
  background: rgba(255,68,88,0.08);
  animation: stepPulse 1s ease-in-out infinite alternate;
}
.loading-step.done { color: var(--green); }
@keyframes stepPulse {
  from { opacity: 0.75; transform: translateX(0); }
  to   { opacity: 1;    transform: translateX(4px); }
}

/* ===== ERROR ===== */
.error-section { padding: 40px 0; }
.error-card {
  background: var(--bg2); border: 1px solid rgba(255,82,82,0.3);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
}
.error-icon { font-size: 40px; display: block; margin-bottom: 16px; }
.error-message { font-size: 15px; color: var(--text2); margin-bottom: 20px; }
.retry-btn {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 14px; font-family: var(--font); padding: 12px 24px;
  cursor: pointer; transition: background 0.2s;
}
.retry-btn:hover { background: var(--bg4); }

/* ===== RESULTS ===== */
.results-section { padding: 8px 0; display: flex; flex-direction: column; gap: 16px; }

.score-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; align-items: center; gap: 24px;
}
.score-ring-wrapper { position: relative; flex-shrink: 0; width: 100px; height: 100px; }
.score-ring { width: 100px; height: 100px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--bg3); stroke-width: 10; }
.ring-fill {
  fill: none; stroke: url(#ringGradient);
  stroke-width: 10; stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1);
}
.score-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score-number { font-size: 28px; font-weight: 900; line-height: 1; }
.score-label { font-size: 11px; color: var(--text3); }
.score-info { flex: 1; }
.score-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.score-grade { font-size: 15px; color: var(--text2); }

.preview-card {
  background: linear-gradient(135deg, rgba(255,68,88,0.1), rgba(255,107,107,0.03));
  border: 1px solid rgba(255,68,88,0.3); border-radius: var(--radius); padding: 24px;
}
.preview-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.preview-header h3 { font-size: 16px; font-weight: 700; }
.preview-icon { font-size: 20px; }
.preview-text { font-size: 15px; color: var(--text2); line-height: 1.7; }

.full-analysis-wrapper { position: relative; }
.analysis-section {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 16px;
}
.analysis-section.blurred { filter: blur(5px); pointer-events: none; user-select: none; }

/* Inline blur for individual list items */
.blurred-item {
  position: relative;
  user-select: none;
  cursor: pointer;
}
.blurred-item span {
  display: block;
  filter: blur(4px);
  color: var(--text2);
  pointer-events: none;
}
.blur-lock-badge {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--accent);
  background: rgba(10,10,10,0.55);
  border-radius: 6px;
  letter-spacing: 0.3px;
  opacity: 1;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.blurred-item::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(255,68,88,0.15);
}
.section-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* Sub-score bars */
.scores-grid { display: flex; flex-direction: column; gap: 14px; }
.score-item { display: flex; align-items: center; gap: 12px; }
.score-item-label { font-size: 13px; color: var(--text2); width: 130px; flex-shrink: 0; }
.score-bar { flex: 1; height: 6px; background: var(--bg3); border-radius: 3px; overflow: hidden; }
.score-bar-fill {
  height: 100%; background: var(--gradient); border-radius: 3px;
  width: 0%;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}
.score-item-num { font-size: 13px; font-weight: 600; width: 36px; text-align: right; color: var(--text2); }

.issues-list, .wins-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.issues-list li, .wins-list li {
  font-size: 14px; color: var(--text2); padding-left: 22px;
  position: relative; line-height: 1.5;
}
.issues-list li::before { content: "→"; position: absolute; left: 0; color: var(--red); }
.wins-list li::before { content: "→"; position: absolute; left: 0; color: var(--green); }

.bio-rewrite-box {
  background: var(--bg); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px;
}
.recs-text { font-size: 14px; color: var(--text2); line-height: 1.8; white-space: pre-wrap; }

/* Paywall */
.paywall-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 80px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 25%);
  border-radius: var(--radius); z-index: 10;
}
.paywall-card {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 32px 28px;
  text-align: center; box-shadow: var(--shadow);
  width: 100%; max-width: 480px; margin: 0 8px;
}
.paywall-lock { font-size: 40px; margin-bottom: 16px; }
.paywall-title { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.paywall-sub { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }
.paywall-features { list-style: none; text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.paywall-features li { font-size: 14px; color: var(--text2); }
.unlock-btn {
  width: 100%; background: var(--gradient); border: none;
  border-radius: var(--radius-sm); color: #fff;
  font-size: 16px; font-weight: 700; font-family: var(--font);
  padding: 18px 24px; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-accent); margin-bottom: 12px;
}
.unlock-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 30px rgba(255,68,88,0.45); }
.paywall-guarantee { font-size: 12px; color: var(--text3); }

.new-analysis-row { display: flex; justify-content: flex-start; }
.new-analysis-btn {
  background: none; border: 1px solid var(--border2);
  border-radius: var(--radius-sm); color: var(--text2);
  font-size: 14px; font-family: var(--font); padding: 10px 20px;
  cursor: pointer; transition: all 0.2s;
}
.new-analysis-btn:hover { background: var(--bg2); color: var(--text); }

/* ===== SIDEBAR ===== */
.sidebar-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.testimonial { padding: 16px 0; border-bottom: 1px solid var(--border); cursor: default; }
.testimonial:last-child { border-bottom: none; padding-bottom: 0; }
.testimonial-stars { color: var(--yellow); font-size: 13px; margin-bottom: 8px; }
.testimonial-text { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 8px; }
.testimonial-author { font-size: 12px; color: var(--text3); font-weight: 600; }
.stat-highlight { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.stat-highlight:last-child { border-bottom: none; padding-bottom: 0; }
.stat-highlight-icon { font-size: 22px; flex-shrink: 0; }
.stat-highlight-num {
  font-size: 20px; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 2px;
}
.stat-highlight-label { font-size: 12px; color: var(--text3); }

/* ===== WORKS ON ROW (above dropzone) ===== */
.works-on-row {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 12px; flex-wrap: wrap; text-align: center;
}
.works-on-label { font-size: 13px; color: var(--text3); font-weight: 600; white-space: nowrap; }
.works-on-logos { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.works-on-logo {
  width: 56px; height: 56px; border-radius: 14px;
  object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.15s;
}
.works-on-logo:hover { transform: scale(1.1); }
.works-on-more {
  font-size: 12px; color: var(--text3); padding: 4px 8px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 100px;
}

/* ===== FORM SECTION (bio + details) ===== */
.form-section { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.form-card {
  background: var(--bg3); border: 1.5px solid var(--border2);
  border-radius: var(--radius); padding: 16px 18px;
  transition: border-color 0.2s;
}
.form-card:focus-within { border-color: rgba(255,68,88,0.5); }
.form-card-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.form-card-icon { font-size: 16px; }
.form-card-label { font-size: 14px; font-weight: 700; color: var(--text); flex: 1; }
.form-optional {
  font-size: 11px; color: var(--text3); background: var(--bg4);
  padding: 2px 8px; border-radius: 100px; border: 1px solid var(--border);
}
.bio-textarea-v2 {
  width: 100%; min-height: 90px; resize: vertical;
  background: transparent; border: none; outline: none;
  color: var(--text); font-size: 16px; font-family: var(--font);
  line-height: 1.6;
}
.bio-textarea-v2::placeholder { color: var(--text3); }
.form-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.form-field-card {
  background: var(--bg3); border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.2s;
}
.form-field-card:focus-within { border-color: rgba(255,68,88,0.5); }
.form-field-label { font-size: 12px; font-weight: 700; color: var(--text2); }
.form-field-input {
  background: transparent; border: none; outline: none;
  color: var(--text); font-size: 16px; font-family: var(--font);
  width: 100%; padding: 0;
}
.form-field-input::placeholder { color: var(--text3); }
.form-field-input option { background: var(--bg2); }

/* ===== PRIVACY NOTE ===== */
.privacy-note {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 10px;
  font-size: 12px; color: var(--text3);
  margin-top: 10px; text-align: center;
}
.privacy-item { display: flex; align-items: center; gap: 4px; }
.privacy-dot { color: var(--border2); }

/* ===== LIVE COUNTER ===== */
.live-counter-row {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; font-size: 13px; color: var(--text2);
  margin-top: 12px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 6px rgba(0,230,118,0.8);
  animation: livePulse 1.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
.live-joined { color: var(--text3); }

/* ===== TRUST BADGES (legacy, kept for compat) ===== */
.trust-badges-row { display: none; }
.trust-badge { display: none; }

/* ===== TRUST STRIP (standalone section) ===== */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex; align-items: stretch;
  max-width: 900px; margin: 0 auto;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 200px;
  padding: 24px 28px;
  cursor: default;
  transition: background 0.25s;
  position: relative;
}
.trust-strip-item:hover {
  background: rgba(255,68,88,0.05);
}
.trust-strip-icon {
  font-size: 26px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.trust-strip-item:hover .trust-strip-icon {
  transform: scale(1.18) rotate(-5deg);
}
.trust-strip-text {
  display: flex; flex-direction: column; gap: 2px;
}
.trust-strip-text strong {
  font-size: 14px; font-weight: 700; color: var(--text);
}
.trust-strip-text span {
  font-size: 12px; color: var(--text3);
}
.trust-strip-divider {
  width: 1px; background: var(--border);
  align-self: stretch; margin: 12px 0;
}

/* ===== VERIFIED BADGE ===== */
.testimonial-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.verified-badge {
  font-size: 11px; font-weight: 700; color: #00c853;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3);
  border-radius: 100px; padding: 3px 10px;
  display: flex; align-items: center; gap: 3px;
}

/* ===== 3D LOADING BAR ===== */
.loading-3d-bar-wrap {
  display: flex; align-items: center; gap: 10px;
  width: 100%; max-width: 340px; margin: 0 auto 24px;
}
.loading-3d-bar {
  flex: 1; height: 12px; border-radius: 6px;
  background: var(--bg3); border: 1px solid var(--border2);
  position: relative; overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05);
}
.loading-3d-fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, #FF4458 0%, #FF8E53 60%, #FF6B6B 100%);
  width: 0%; transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255,68,88,0.6);
  position: relative; z-index: 1;
}
.loading-3d-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, transparent 100%);
  border-radius: 6px 6px 0 0; pointer-events: none; z-index: 2;
}
.loading-pct {
  font-size: 13px; font-weight: 700; color: var(--accent2);
  min-width: 36px; text-align: right;
}

/* ===== SOCIAL PROOF STRIP ===== */
.social-proof-section {
  padding: 50px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.social-proof-inner { max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.proof-strip-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-item {
  text-align: center; padding: 24px 16px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.15s, border-color 0.15s;
}
.stat-item:hover { transform: translateY(-2px); border-color: var(--border2); }
.stat-num {
  font-size: 28px; font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px; line-height: 1.1;
}
.stat-lbl { font-size: 12px; color: var(--text3); line-height: 1.4; }
.testimonials-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonials-row .testimonial {
  background: var(--bg3); border: 1px solid var(--border) !important;
  border-radius: var(--radius); padding: 20px;
  border-bottom: 1px solid var(--border) !important;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 860px; margin: 0 auto; }
.pricing-section h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 8px; letter-spacing: -1px; }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; margin: 0 auto 36px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 100px; padding: 4px; width: fit-content;
}
.toggle-btn {
  padding: 8px 22px; border: none; border-radius: 100px;
  background: transparent; color: var(--text2);
  font-size: 14px; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.toggle-btn.active { background: var(--gradient); color: #fff; }
.save-badge {
  background: rgba(255,255,255,0.25); border-radius: 100px;
  padding: 2px 8px; font-size: 11px; font-weight: 700;
}
.toggle-btn:not(.active) .save-badge {
  background: rgba(255,68,88,0.15); color: var(--accent2);
}
.pricing-cards { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: start; }
.pricing-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255,68,88,0.3), 0 8px 32px rgba(255,68,88,0.15);
  background: linear-gradient(160deg, rgba(255,68,88,0.06) 0%, var(--bg2) 60%);
}
.plan-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-size: 11px; font-weight: 800; padding: 4px 16px;
  border-radius: 100px; white-space: nowrap; letter-spacing: 0.5px;
}
.plan-name { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.plan-price-wrap { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price { font-size: 42px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.pricing-card--featured .plan-price {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.plan-period { font-size: 14px; color: var(--text3); }
.plan-annual-note { font-size: 12px; color: var(--text3); margin-bottom: 16px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 24px; }
.plan-features li { font-size: 14px; color: var(--text2); }
.plan-btn {
  width: 100%; padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; font-family: var(--font);
  cursor: pointer; border: none; transition: all 0.2s;
}
.plan-btn-free {
  background: var(--bg3); border: 1px solid var(--border2); color: var(--text);
}
.plan-btn-free:hover { background: var(--bg4); }
.plan-btn-pro { background: var(--gradient); color: #fff; box-shadow: var(--shadow-accent); }
.plan-btn-pro:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255,68,88,0.45); }
.plan-guarantee { font-size: 12px; color: var(--text3); text-align: center; margin-top: 10px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 36px 48px 24px; }
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo-img { width: 24px; height: 24px; object-fit: contain; border-radius: 4px; }
.footer-logo-text {
  font-size: 16px; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text2); }
.footer-copy { font-size: 13px; color: var(--text3); }
.footer-disclaimer {
  font-size: 12px; color: var(--text3); text-align: center;
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 16px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 200;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 36px 32px;
  text-align: center; width: 100%; max-width: 400px;
  position: relative; box-shadow: var(--shadow);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--bg3); border: none; color: var(--text2);
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  font-size: 12px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
}
.modal-icon { font-size: 44px; margin-bottom: 14px; }
.modal-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.modal-card p { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }
.modal-email {
  width: 100%; background: var(--bg3);
  border: 1.5px solid var(--border2); border-radius: var(--radius-sm);
  color: var(--text); font-size: 16px; font-family: var(--font);
  padding: 14px 16px; margin-bottom: 12px; outline: none;
  transition: border-color 0.2s;
}
.modal-email:focus { border-color: var(--accent); }
.modal-email::placeholder { color: var(--text3); }
.modal-submit {
  width: 100%; background: var(--gradient); border: none;
  border-radius: var(--radius-sm); color: #fff;
  font-size: 15px; font-weight: 700; font-family: var(--font);
  padding: 15px 20px; cursor: pointer;
  box-shadow: var(--shadow-accent); transition: transform 0.15s;
}
.modal-submit:hover { transform: translateY(-1px); }
.modal-thanks { margin-top: 14px; font-size: 14px; color: var(--green); font-weight: 600; }

/* ===== FAQ ===== */
.faq-section {
  padding: 60px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-section h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 8px; letter-spacing: -1px; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; background: none; border: none;
  color: var(--text); font-size: 15px; font-weight: 600; font-family: var(--font);
  cursor: pointer; text-align: left; gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent2); }
.faq-question[aria-expanded="true"] { color: var(--accent2); }
.faq-icon {
  font-size: 22px; font-weight: 300; color: var(--accent);
  flex-shrink: 0; transition: transform 0.3s ease;
  line-height: 1; width: 24px; text-align: center;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 4px;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: var(--text2); line-height: 1.75; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .samples-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .samples-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 900px) {
  .social-proof-section { padding: 40px 20px; }
  .pricing-section { padding: 40px 20px; }
}

@media (max-width: 768px) {
  .main-content { padding: 0 20px 20px; }
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-section { padding: 48px 20px 40px; }
  .hero-bio-row { flex-direction: column; }
  .hero-details-col { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero-details-col .field-group { flex: 1; min-width: 140px; }
  .analyze-btn { width: 100%; justify-content: center; }
  .main-content { padding: 0 20px 40px; }
  .how-it-works { padding: 40px 20px; }
  .sample-results { padding: 40px 20px; }
  .faq-section { padding: 40px 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .form-details-grid { grid-template-columns: 1fr; }
  .works-on-row { justify-content: center; }
  .trust-badges-row { gap: 6px; }
  .privacy-note { flex-direction: column; gap: 4px; }
  .privacy-dot { display: none; }
  .trust-strip-inner { flex-direction: column; }
  .trust-strip-divider { width: auto; height: 1px; margin: 0 24px; }
  .trust-strip-item { padding: 18px 24px; min-width: unset; width: 100%; }
  .site-footer { padding: 28px 20px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-social-proof { gap: 10px; }
  .proof-divider { display: none; }
  .sidebar-column { flex-direction: column; }
}
