/* =========================================
 * RetireReady - Main Stylesheet
 * ========================================= */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1A2B4A;
  --color-secondary: #3D5A80;
  --color-accent: #27AE60;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F9FC;
  --color-text: #2C3E50;
  --color-muted: #6B7C93;
  --color-border: #E1E8F0;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(26, 43, 74, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 43, 74, 0.08);
  --shadow-lg: 0 8px 24px rgba(26, 43, 74, 0.12);
  --transition: 250ms ease-out;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.3px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #219a52;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  letter-spacing: 0.3px;
}

/* ---- Hero Section ---- */
.hero-section {
  padding: 60px 0 80px;
  background: var(--color-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-meta {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-muted);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: brightness(1.05);
}

/* ---- Hero Checklist ---- */
.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.4;
}

.hero-checklist li svg {
  flex-shrink: 0;
}

/* ---- Hero CTA Button with Arrow ---- */
.hero-cta-btn {
  gap: 10px;
}

.hero-cta-btn .btn-arrow {
  transition: transform var(--transition);
}

.hero-cta-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ---- Hero Hint ---- */
.hero-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-muted);
  font-style: italic;
}

/* ---- Hero Preview Card ---- */
.hero-preview-card {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(26, 43, 74, 0.18);
  text-align: center;
}

.preview-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.preview-card-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.preview-card-hint {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.preview-card-bar {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}

.preview-card-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 2px;
  animation: previewBarPulse 2.5s ease-in-out infinite;
}

@keyframes previewBarPulse {
  0%, 100% { width: 0%; opacity: 0.4; }
  50% { width: 60%; opacity: 1; }
}

.preview-card-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-card-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-secondary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ---- Quiz Section ---- */
.quiz-section {
  padding: 48px 0 80px;
  background: var(--color-bg-alt);
  min-height: 60vh;
}

.quiz-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

/* Progress */
.quiz-progress {
  margin-bottom: 32px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  transition: width 250ms ease-in-out;
}

/* Halfway message */
.halfway-msg {
  text-align: center;
  padding: 12px 20px;
  margin-bottom: 24px;
  background: #E8F8EF;
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  animation: fadeInUp 300ms ease-out;
}

/* Question */
.question-container {
  min-height: 300px;
}

.question-inner {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 250ms ease-out, transform 250ms ease-out;
}

.question-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.question-inner.exit {
  opacity: 0;
  transform: translateY(-8px);
}

.question-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

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

.option-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}

.option-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.option-card:active {
  transform: translateY(0);
  background: var(--color-bg-alt);
}

.option-card.selected {
  border-color: var(--color-accent);
  background: #E8F8EF;
  transform: translateY(0);
}

.option-card.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.option-label {
  width: 100%;
}

/* ---- Results Section ---- */
.results-section {
  padding: 48px 0 80px;
  background: var(--color-bg-alt);
}

.results-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.results-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 32px;
  text-align: center;
}

/* Retirement Age Card */
.result-age-card {
  background: linear-gradient(135deg, #1A2B4A 0%, #2D4A7A 100%);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}

.result-age-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.retirement-age-number {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.retirement-age-unit {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-left: 4px;
}

.result-age-context {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  line-height: 1.5;
}

/* Score Block */
.result-score-block {
  margin-bottom: 32px;
  text-align: center;
}

.result-score-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Country Selection in Results */
.results-country-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.results-country-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 24px;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 200ms ease-out;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-container {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  padding: 32px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-muted);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding-right: 30px;
}

.modal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
}

.modal-content ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.modal-content li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 8px;
}

.modal-content strong {
  color: var(--color-primary);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.results-chart {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
}

.ring-progress {
  transition: stroke-dashoffset 1200ms ease-out;
}

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

.score-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.score-label {
  font-size: 16px;
  color: var(--color-muted);
  font-weight: 500;
}

.score-grade {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.score-summary {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 40px;
}

/* Tips */
.tips-section {
  text-align: left;
  margin-bottom: 40px;
}

.tips-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
}

.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.tip-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}

/* Results CTA */
.results-cta {
  margin-top: 8px;
}

.cta-subtitle {
  margin-top: 12px;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ---- Platform Section ---- */
.platform-section {
  padding: 64px 0 80px;
  background: var(--color-bg);
}

.platform-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.platform-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 12px;
}

.platform-subtitle {
  font-size: 16px;
  color: var(--color-muted);
  text-align: center;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Checklist */
.checklist-section {
  margin-bottom: 56px;
}

.checklist-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 24px;
}

.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
  border-bottom: 1px solid var(--color-border);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item svg {
  flex-shrink: 0;
}

/* Region Selection */
.region-section {
  text-align: center;
}

.region-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.region-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.region-btn {
  padding: 14px 24px;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
}

.region-btn:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.region-btn.selected {
  border-color: var(--color-accent);
  background: #E8F8EF;
  color: var(--color-primary);
  font-weight: 600;
}

/* ---- Region Platform Cards ---- */
.region-platforms {
  margin-top: 40px;
  animation: fadeInUp 250ms ease-out;
}

.rp-header {
  text-align: center;
  margin-bottom: 36px;
}

.rp-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.rp-subtitle {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* Platform Cards Grid */
.rp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.rp-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}

.rp-card:hover {
  box-shadow: var(--shadow-md);
}

.rp-card-header {
  margin-bottom: 12px;
}

.rp-card-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.rp-card-accounts {
  font-size: 13px;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4;
}

.rp-card-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.rp-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.rp-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
}

.rp-card-features li svg {
  flex-shrink: 0;
}

/* Region Tip */
.rp-tip {
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.rp-tip-important {
  background: #FFF8E6;
  border-color: #F0D78C;
  color: #7A5D00;
  font-weight: 500;
}

/* Disclosure */
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Disclosure */
.rp-disclosure {
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.rp-disclosure-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.rp-disclosure p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.rp-disclosure p:last-child {
  margin-bottom: 0;
}

/* Other Region */
.rp-other {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.rp-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  margin-bottom: 24px;
}

.rp-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  border-bottom: 1px solid var(--color-border);
}

.rp-checklist-item:last-child {
  border-bottom: none;
}

.rp-checklist-item svg {
  flex-shrink: 0;
}

/* ---- Results Headline ---- */
.results-headline {
  text-align: center;
  margin-bottom: 32px;
}

.results-headline-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.results-headline-sub {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ---- Data Cards ---- */
.result-data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.data-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.data-card-label {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 8px;
  line-height: 1.3;
}

.data-card-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ---- Simulator ---- */
.simulator-section {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.simulator-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.simulator-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.sim-btn {
  padding: 10px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  background: #fff;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sim-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.sim-btn.selected {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.simulator-result {
  margin-top: 16px;
  padding: 12px 16px;
  background: #E8F5E9;
  border-radius: 8px;
  font-size: 15px;
  color: var(--color-text);
  animation: fadeIn 0.3s ease;
}

/* ---- Country Platforms ---- */
.country-platforms-section {
  margin-bottom: 32px;
}

.country-platforms-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
}

.country-platforms-content {
  animation: fadeIn 0.4s ease;
}

.country-other-text {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 16px;
  text-align: center;
}

.country-checklist {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.country-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.country-checklist li:last-child {
  border-bottom: none;
}

/* Platform Cards */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.platform-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.platform-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.platform-type {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.platform-audience {
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.platform-features li {
  font-size: 13px;
  color: var(--color-text);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.platform-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.platform-min {
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.platform-risk {
  font-size: 12px;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.platform-details-btn {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.platform-details-btn:hover {
  background: var(--color-bg);
  border-color: var(--color-primary);
}

.platform-details {
  margin-top: 12px;
  padding: 12px;
  background: var(--color-bg);
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}

.platform-why {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.5;
}

/* ---- Adjust Section ---- */
.adjust-section {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}

.adjust-text {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* ---- Footer ---- */
.site-footer {
  margin-top: auto;
  padding: 32px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.disclaimer {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 640px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-section {
    padding: 32px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    text-align: left;
    max-width: 100%;
    order: 1;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-checklist {
    order: 4;
    margin-bottom: 0;
  }

  .hero-cta-btn {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    order: 5;
    text-align: center;
  }

  .hero-hint {
    order: 6;
    text-align: center;
  }

  .hero-image {
    order: 2;
    max-width: 100%;
    margin: 0;
  }

  .hero-preview-card {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    margin-top: -24px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .question-text {
    font-size: 20px;
  }

  .option-card {
    padding: 16px 20px;
    font-size: 15px;
  }

  .results-title {
    font-size: 24px;
  }

  .result-age-card {
    padding: 24px 16px;
  }

  .retirement-age-number {
    font-size: 48px;
  }

  .results-country-title {
    font-size: 18px;
  }

  .modal-container {
    padding: 24px 20px;
  }

  .modal-title {
    font-size: 20px;
  }

  .score-number {
    font-size: 40px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  .result-data-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .data-card {
    padding: 16px 12px;
  }

  .data-card-value {
    font-size: 18px;
  }

  .simulator-buttons {
    flex-direction: column;
  }

  .sim-btn {
    width: 100%;
  }

  .platform-cards {
    grid-template-columns: 1fr;
  }

  .results-headline-title {
    font-size: 22px;
  }
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-title {
    font-size: 24px;
  }

  .checklist-title,
  .region-title {
    font-size: 20px;
  }

  .region-options {
    flex-direction: column;
    align-items: center;
  }

  .region-btn {
    width: 100%;
    max-width: 320px;
  }

  .rp-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rp-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .question-text {
    font-size: 19px;
  }

  .results-chart {
    width: 160px;
    height: 160px;
  }

  .score-number {
    font-size: 36px;
  }
}
