/* ═══════════════════════════════════════════════════════════════
   AI Readiness Scorecard – Styles
   Clean, modern design for Life Science professionals
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary: #370C7B;
  --primary-dark: #2a0960;
  --accent: #FFC300;
  --text: #111111;
  --text-light: #444;
  --text-muted: #777;
  --bg: #fafafa;
  --white: #ffffff;
  --black: #000000;
  --border: #e0e0e0;
  --success: #27ae60;
  --warning: #FFC300;
  --danger: #e74c3c;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Landing Page ─────────────────────────────────────────────── */

.landing-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px;
}

.hero {
  text-align: center;
  padding: 60px 0 40px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 24px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

.gradient-text {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Signup Form */
.signup-section {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.form-card h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.signup-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.consent {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent input[type="checkbox"] {
  margin-right: 8px;
}

.consent a {
  color: var(--primary);
}

.error-msg {
  background: #fef2f2;
  color: var(--danger);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
  display: block;
  width: 100%;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 12px 28px;
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--primary);
}

.btn-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Social Proof */
.social-proof {
  text-align: center;
  margin: 48px 0;
  color: var(--text-muted);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 1px rgba(0,0,0,0.1);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Thank You / Confirmed Pages ──────────────────────────────── */

.centered-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.confirmation-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  text-align: center;
}

.check-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.confirm-text {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.confirm-sub {
  color: var(--text-light);
  margin-bottom: 24px;
}

.tip-box {
  background: rgba(55, 12, 123, 0.04);
  border-left: 4px solid var(--primary);
  padding: 16px;
  text-align: left;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 24px;
}

/* ── Scorecard ────────────────────────────────────────────────── */

.scorecard-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.scorecard-header {
  text-align: center;
  margin-bottom: 32px;
}

.scorecard-header h1 {
  font-size: 2rem;
  font-weight: 800;
}

.scorecard-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Progress */
.progress-wrap {
  background: var(--border);
  border-radius: 20px;
  height: 8px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 20px;
  transition: width 0.5s ease;
  width: 0%;
}

.progress-text {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  min-height: 1.2em;
}

/* Categories & Questions */
.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.cat-icon {
  font-size: 2rem;
}

.category-header h2 {
  font-size: 1.5rem;
}

.question-block {
  margin-bottom: 32px;
}

.question-text {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s;
}

.option-btn:hover {
  border-color: var(--primary);
  background: #f5f0ff;
}

.option-btn.selected {
  border-color: var(--primary);
  background: rgba(55, 12, 123, 0.06);
}

.option-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--bg);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
}

.selected .option-score {
  background: var(--primary);
  color: var(--white);
}

/* Scorecard Nav */
.scorecard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.scorecard-nav .btn-primary {
  width: auto;
  padding: 12px 32px;
}

/* ── Name Step ────────────────────────────────────────────────── */

.name-step {
  text-align: center;
  padding: 48px 0 24px;
}

.name-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.name-step h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.name-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 32px;
}

.name-input-wrap {
  max-width: 320px;
  margin: 0 auto;
  text-align: left;
}

.name-input-wrap label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.name-input-wrap input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1.05rem;
  transition: border-color 0.2s;
}

.name-input-wrap input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Shake animation for validation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.shake {
  animation: shake 0.5s ease;
}

/* ═══════════════════════════════════════════════════════════════
   Results Page – Dynamic Personalized Design
   ═══════════════════════════════════════════════════════════════ */

.results-hidden {
  display: none;
}

.results-visible {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* ── Results Header ──────────────────────────────────────────── */

.r-header {
  text-align: center;
  margin-bottom: 8px;
}

.r-header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
}

.r-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Score Ring ──────────────────────────────────────────────── */

.r-score-wrap {
  display: flex;
  justify-content: center;
  margin: 32px 0 40px;
}

.r-ring {
  position: relative;
  width: 180px;
  height: 180px;
}

.r-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.r-ring-bg {
  fill: none;
  stroke: #ede9f5;
  stroke-width: 8;
}

.r-ring-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dashoffset: 339.29;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.r-ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.r-score-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.r-score-of {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Category Result Cards ───────────────────────────────────── */

.r-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.r-cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  animation: fadeSlideIn 0.5s ease both;
}

.r-cat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.r-cat-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.r-cat-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

.r-cat-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.r-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid;
}

.r-cat-pct {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  min-width: 48px;
  text-align: right;
}

.r-cat-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Profile Section ─────────────────────────────────────────── */

.r-profile {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.r-profile-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.r-profile-warn {
  font-size: 1.2rem;
}

.r-profile-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.r-profile-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.r-profile-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.r-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.r-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 12px;
  border-radius: 14px;
  border: 1px solid;
}

/* ── Email Gate ──────────────────────────────────────────────── */

.r-gate {
  background: var(--black);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.r-gate::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.r-gate h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  position: relative;
}

.r-gate-sub {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 24px;
  position: relative;
}

.r-gate-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
}

.r-gate-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #ddd;
}

.r-gate-chk {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.r-gate-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 16px;
  position: relative;
}

.r-gate-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.r-gate-form input::placeholder {
  color: #888;
}

.r-gate-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-unlock {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.35);
  white-space: nowrap;
}

.btn-unlock:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 195, 0, 0.5);
}

.btn-unlock:disabled {
  opacity: 0.7;
  cursor: wait;
}

.r-gate-trust {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
  position: relative;
}

.r-gate-trust a {
  color: #888;
  text-decoration: underline;
}

.r-gate-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 8px;
  position: relative;
}

/* ── Full Analysis (after email) ─────────────────────────────── */

.r-full-header {
  text-align: center;
  margin-bottom: 24px;
}

.r-full-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.r-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.r-detail-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.r-detail-score {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

/* ── Quick Wins / Action Plan ────────────────────────────────── */

.r-wins {
  margin: 32px 0;
}

.r-wins h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.r-win {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.r-win-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.r-win strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.r-win p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.r-detail-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA – AI Impact Call ────────────────────────────────────── */

.r-cta {
  background: var(--black);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}

.r-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.r-cta-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}

.r-cta h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
  position: relative;
}

.r-cta-hook {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.r-cta-hook strong {
  color: var(--accent);
}

.r-cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
}

.r-cta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #ddd;
}

.r-cta-chk {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-cta-impact {
  display: inline-block;
  padding: 16px 44px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.35);
  position: relative;
}

.btn-cta-impact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 195, 0, 0.5);
}

.r-cta-trust {
  color: #888;
  font-size: 0.8rem;
  margin-top: 18px;
  margin-bottom: 0;
  position: relative;
}

/* ── Retake Link ─────────────────────────────────────────────── */

.r-retake {
  text-align: center;
  margin-top: 32px;
  padding-bottom: 40px;
}

.r-retake a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.r-retake a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ── Language Switcher ────────────────────────────────────────── */

.lang-switch {
  text-align: right;
  padding: 12px 0;
  font-size: 0.85rem;
}

.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.lang-switch a:hover {
  color: var(--primary);
}

.lang-switch a.active {
  color: var(--white);
  background: var(--primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  /* Landing */
  .landing-container {
    padding: 20px 16px;
  }

  .hero {
    padding: 32px 0 24px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .benefits {
    margin: 24px 0;
    gap: 16px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-card h2 {
    font-size: 1.3rem;
  }

  .signup-section {
    margin: 24px 0;
  }

  .proof-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .stat {
    align-items: center;
  }

  .social-proof {
    margin: 24px 0;
  }

  /* Scorecard */
  .scorecard-container {
    padding: 20px 16px;
  }

  .category-header h2 {
    font-size: 1.2rem;
  }

  .question-text {
    font-size: 0.95rem;
  }

  .option-btn {
    padding: 12px 14px;
    font-size: 0.88rem;
    min-height: 48px;
  }

  .scorecard-nav {
    flex-direction: column;
    gap: 12px;
  }

  .scorecard-nav .btn-secondary,
  .scorecard-nav .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Name Step */
  .name-step {
    padding: 32px 0 16px;
  }

  .name-step h2 {
    font-size: 1.3rem;
  }

  /* Results */
  .r-header h2 {
    font-size: 1.35rem;
  }

  .r-ring {
    width: 150px;
    height: 150px;
  }

  .r-score-num {
    font-size: 2.6rem;
  }

  .r-cat-card {
    padding: 16px 18px;
  }

  .r-cat-name {
    font-size: 0.85rem;
  }

  .r-cat-pct {
    font-size: 1.5rem;
  }

  .r-cat-text {
    font-size: 0.85rem;
  }

  .r-profile {
    padding: 20px 18px;
  }

  .r-profile-title {
    font-size: 1.1rem;
  }

  .r-profile-desc {
    font-size: 0.88rem;
  }

  /* Email Gate */
  .r-gate {
    padding: 28px 18px;
  }

  .r-gate h3 {
    font-size: 1.1rem;
  }

  .r-gate-form {
    flex-direction: column;
  }

  .btn-unlock {
    width: 100%;
    text-align: center;
  }

  .r-gate-item {
    font-size: 0.85rem;
    text-align: left;
  }

  /* Full Analysis */
  .r-detail-card {
    padding: 18px 16px;
  }

  .r-win {
    padding: 16px;
    gap: 12px;
  }

  /* CTA */
  .r-cta {
    padding: 28px 18px;
  }

  .r-cta h3 {
    font-size: 1.1rem;
  }

  .r-cta-hook {
    font-size: 0.9rem;
  }

  .r-cta-item {
    font-size: 0.85rem;
    text-align: left;
  }

  .btn-cta-impact {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .confirmation-card {
    padding: 36px 24px;
  }
}
