/* ============================================================ */
/* WEW EDWIN — SELLER STRATEGY LANDING PAGE                     */
/* Colour Palette: Deep Emerald, Charcoal, White, Warm Grey     */
/* Fonts: Inter + Playfair Display                              */
/* ============================================================ */

/* —— CSS Variables —— */
:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50: #ecfdf5;

  --charcoal-900: #0f172a;
  --charcoal-800: #1e293b;
  --charcoal-700: #334155;
  --charcoal-600: #475569;
  --charcoal-500: #64748b;
  --charcoal-400: #94a3b8;
  --charcoal-300: #cbd5e1;
  --charcoal-200: #e2e8f0;
  --charcoal-100: #f1f5f9;
  --charcoal-50: #f8fafc;

  --warm-grey: #f5f4f2;
  --white: #ffffff;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --success: #059669;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--emerald-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* —— Typography —— */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal-900);
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.btn--large {
  padding: 18px 36px;
  font-size: 16px;
  min-height: 56px;
}

.btn--primary {
  background-color: var(--emerald-700);
  color: var(--white);
}

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

.btn--primary:active {
  background-color: var(--emerald-900);
  transform: translateY(0);
}

.btn--secondary {
  background-color: var(--white);
  color: var(--emerald-700);
  border: 2px solid var(--emerald-700);
}

.btn--secondary:hover {
  background-color: var(--emerald-50);
  border-color: var(--emerald-800);
  color: var(--emerald-800);
}

.btn--secondary:active {
  background-color: var(--emerald-100);
}

.btn--ghost {
  background-color: transparent;
  color: var(--charcoal-600);
  border: 1px solid var(--charcoal-300);
}

.btn--ghost:hover {
  background-color: var(--charcoal-100);
  color: var(--charcoal-800);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* —— Section Headlines —— */
.section-headline {
  font-size: 28px;
  margin-bottom: 16px;
}

.section-headline--center {
  text-align: center;
}

.section-headline--light {
  color: var(--white);
}

.section-subheadline {
  font-size: 16px;
  color: var(--charcoal-600);
  margin-bottom: 32px;
}

.section-subheadline--center {
  text-align: center;
}

@media (min-width: 768px) {
  .section-headline {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .section-subheadline {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .section-headline {
    font-size: 42px;
  }
}

/* ============================================================ */
/* HEADER                                                       */
/* ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--charcoal-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--emerald-800);
  line-height: 1.2;
}

.logo-role {
  font-size: 11px;
  color: var(--charcoal-500);
  line-height: 1.2;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-700);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--emerald-700);
}

.nav-link--cta {
  background-color: var(--emerald-700);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav-link--cta:hover {
  background-color: var(--emerald-800);
  color: var(--white);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

/* ============================================================ */
/* STICKY MOBILE BOTTOM BAR                                     */
/* ============================================================ */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background-color: var(--white);
  border-top: 1px solid var(--charcoal-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.bottom-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition);
  min-height: 48px;
}

.bottom-bar-btn--primary {
  background-color: var(--emerald-700);
  color: var(--white);
}

.bottom-bar-btn--primary:hover,
.bottom-bar-btn--primary:active {
  background-color: var(--emerald-800);
}

.bottom-bar-btn--secondary {
  background-color: var(--white);
  color: var(--emerald-700);
  border: 2px solid var(--emerald-700);
}

.bottom-bar-btn--secondary:hover,
.bottom-bar-btn--secondary:active {
  background-color: var(--emerald-50);
}

/* Hide bottom bar on larger screens */
@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

/* Add padding to footer to account for bottom bar */
.site-footer {
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .site-footer {
    padding-bottom: 0;
  }
}

/* ============================================================ */
/* SECTION 1 — HERO                                             */
/* ============================================================ */
.hero {
  padding: 48px 0 56px;
  background: linear-gradient(135deg, var(--charcoal-50) 0%, var(--warm-grey) 100%);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-content {
  order: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 12px;
}

.hero-headline {
  font-size: 32px;
  margin-bottom: 16px;
}

.hero-subheadline {
  font-size: 17px;
  color: var(--charcoal-700);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-body {
  font-size: 15px;
  color: var(--charcoal-600);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust {
  font-size: 13px;
  color: var(--charcoal-700);
  margin-bottom: 8px;
  font-weight: 500;
}

.hero-compliance {
  font-size: 12px;
  color: var(--charcoal-500);
}

/* Hero Image */
.hero-image-wrapper {
  order: 2;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--emerald-700) 0%, var(--charcoal-800) 60%, var(--charcoal-900) 100%);
  border-radius: var(--radius-xl);
  opacity: 0.08;
  transform: scale(1.05);
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero {
    padding: 64px 0 72px;
  }
  .hero-headline {
    font-size: 40px;
  }
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-image {
    max-width: 420px;
    border-radius: var(--radius-xl);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 80px 0 96px;
  }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .hero-content {
    flex: 1;
    order: 1;
  }
  .hero-image-wrapper {
    flex: 0 0 45%;
    order: 2;
    justify-content: flex-end;
  }
  .hero-headline {
    font-size: 48px;
  }
  .hero-subheadline {
    font-size: 19px;
  }
  .hero-image {
    max-width: 100%;
    height: 560px;
    object-position: center 15%;
  }
}

/* ============================================================ */
/* TRUST STRIP                                                  */
/* ============================================================ */
.trust-strip {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
}

.trust-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trust-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.trust-divider {
  display: none;
  width: 1px;
  height: 48px;
  background-color: #c9a96e;
  opacity: 0.5;
  flex-shrink: 0;
}

.trust-subline {
  text-align: center;
  font-size: 14px;
  color: var(--emerald-100);
  opacity: 0.85;
  margin-top: 24px;
  font-style: italic;
}

@media (min-width: 768px) {
  .trust-strip {
    padding: 48px 0;
  }

  .trust-points {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .trust-point {
    flex: 1;
    max-width: 280px;
  }

  .trust-divider {
    display: block;
  }

  .trust-label {
    font-size: 18px;
  }

  .trust-subline {
    margin-top: 28px;
  }
}

/* ============================================================ */
/* SECTION 2 — WHY A VALUATION IS NOT ENOUGH                    */
/* ============================================================ */
.valuation-section {
  padding: 64px 0;
  background-color: var(--white);
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.card-grid--four {
  grid-template-columns: 1fr;
}

.card-grid--two {
  grid-template-columns: 1fr;
}

.info-card {
  background-color: var(--charcoal-50);
  border: 1px solid var(--charcoal-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.info-card:hover {
  border-color: var(--emerald-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--emerald-50);
  border-radius: var(--radius-md);
  color: var(--emerald-700);
  margin-bottom: 16px;
}

.info-card-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 8px;
}

.info-card-text {
  font-size: 14px;
  color: var(--charcoal-600);
  line-height: 1.6;
}

.valuation-closing {
  text-align: center;
  margin-top: 36px;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal-700);
  font-style: italic;
}

@media (min-width: 640px) {
  .card-grid--four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .valuation-section {
    padding: 80px 0;
  }
  .card-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
  .card-grid--two {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================ */
/* SECTION 3 — EDITORIAL AUTHORITY                              */
/* ============================================================ */
.authority-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--charcoal-900) 0%, var(--charcoal-800) 100%);
}

.authority-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.authority-image-wrapper {
  flex-shrink: 0;
  width: 100%;
  max-width: 380px;
}

.authority-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.authority-content {
  color: var(--charcoal-300);
}

.authority-content .section-headline {
  color: var(--white);
  margin-bottom: 24px;
}

.authority-body {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--charcoal-300);
}

.authority-content .btn {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .authority-image {
    height: 480px;
  }
}

@media (min-width: 1024px) {
  .authority-section {
    padding: 80px 0;
  }
  .authority-inner {
    flex-direction: row;
    gap: 60px;
  }
  .authority-image-wrapper {
    flex: 0 0 42%;
    max-width: none;
  }
  .authority-image {
    height: 520px;
  }
  .authority-content {
    flex: 1;
  }
}

/* ============================================================ */
/* VALUE SECTION — WHAT YOU WILL GET IN 60 SECONDS              */
/* ============================================================ */
.value-section {
  padding: 64px 0;
  background-color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  position: relative;
  padding: 32px 28px 28px;
  background-color: var(--charcoal-50);
  border: 1px solid var(--charcoal-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--emerald-300);
  box-shadow: var(--shadow-md);
}

.value-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #c9a96e;
  opacity: 0.5;
  line-height: 1;
}

.value-card-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 10px;
}

.value-card-text {
  font-size: 15px;
  color: var(--charcoal-600);
  line-height: 1.6;
}

.value-closing {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--charcoal-500);
  font-style: italic;
}

@media (min-width: 768px) {
  .value-section {
    padding: 80px 0;
  }
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ============================================================ */
/* SECTION 4 — SELLER READINESS SCORECARD                       */
/* ============================================================ */
.scorecard-section {
  padding: 64px 0;
  background-color: var(--warm-grey);
}

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

.form-container {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .scorecard-section {
    padding: 80px 0;
  }
  .form-container {
    padding: 48px 40px;
  }
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 6px;
  background-color: var(--charcoal-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-600), var(--emerald-700));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
  width: 14.28%;
}

.progress-text {
  font-size: 13px;
  color: var(--charcoal-500);
  text-align: center;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Form Steps */
.form-step {
  border: none;
  display: none;
  animation: fadeIn 0.35s ease;
}

.form-step--active {
  display: block;
}

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

.form-step-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 24px;
  line-height: 1.3;
}

.form-question {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal-800);
  margin-bottom: 12px;
  margin-top: 24px;
  line-height: 1.4;
}

.form-question:first-of-type {
  margin-top: 0;
}

.form-question--sub {
  border-top: 1px solid var(--charcoal-200);
  padding-top: 24px;
}

.step7-intro {
  font-size: 15px;
  color: var(--charcoal-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .form-question {
    font-size: 26px;
  }
}

/* Radio Cards */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .radio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background-color: var(--charcoal-50);
  border: 2px solid var(--charcoal-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.radio-card:hover {
  border-color: var(--emerald-400);
  background-color: var(--emerald-50);
}

.radio-card:has(input:checked) {
  border-color: var(--emerald-700);
  background-color: var(--emerald-50);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.radio-card input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: var(--emerald-700);
  flex-shrink: 0;
  cursor: pointer;
}

.radio-card-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal-800);
  cursor: pointer;
  user-select: none;
}

/* Text Inputs */
.text-field-group {
  margin-bottom: 20px;
}

.text-field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-800);
  margin-bottom: 8px;
}

.label-optional {
  font-weight: 400;
  color: var(--charcoal-500);
}

.text-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--charcoal-900);
  background-color: var(--charcoal-50);
  border: 2px solid var(--charcoal-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.text-input::placeholder {
  color: var(--charcoal-400);
}

.text-input:hover {
  border-color: var(--charcoal-400);
}

.text-input:focus {
  border-color: var(--emerald-500);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  outline: none;
}

.text-input--textarea {
  resize: vertical;
  min-height: 90px;
}

/* Checkbox */
.consent-group {
  margin-top: 24px;
  margin-bottom: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--emerald-700);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-text {
  font-size: 14px;
  color: var(--charcoal-700);
  line-height: 1.5;
}

.privacy-note {
  font-size: 12px;
  color: var(--charcoal-500);
  margin-bottom: 20px;
}

/* Conditional Message */
.conditional-message {
  padding: 14px 18px;
  background-color: var(--emerald-50);
  border-left: 4px solid var(--emerald-600);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--emerald-800);
  margin-bottom: 20px;
  line-height: 1.6;
  display: none;
}

.conditional-message--visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Field Errors */
.field-error {
  font-size: 13px;
  color: var(--error);
  margin-top: 8px;
  min-height: 18px;
  font-weight: 500;
}

.form-error-message {
  margin-top: 16px;
  padding: 14px 18px;
  background-color: var(--error-bg);
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  color: var(--error);
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--charcoal-200);
}

.form-nav .btn {
  min-width: 120px;
}

/* ============================================================ */
/* SCORE SCREEN                                                 */
/* ============================================================ */
.score-screen {
  text-align: center;
  padding: 32px 0;
  animation: fadeIn 0.5s ease;
}

.score-screen-heading {
  font-size: 28px;
  margin-bottom: 24px;
}

.score-display {
  margin-bottom: 16px;
}

.score-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--emerald-700);
  line-height: 1;
}

.score-total {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal-500);
}

.score-badge {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.score-badge--well {
  background-color: var(--emerald-50);
  color: var(--emerald-700);
  border: 1px solid var(--emerald-200);
}

.score-badge--partial {
  background-color: #fef9e7;
  color: #9a7b1a;
  border: 1px solid #f5e6a3;
}

.score-badge--early {
  background-color: var(--charcoal-50);
  color: var(--charcoal-700);
  border: 1px solid var(--charcoal-200);
}

.score-description {
  font-size: 16px;
  color: var(--charcoal-600);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.priority-section {
  background-color: var(--charcoal-50);
  border: 1px solid var(--charcoal-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
  text-align: left;
}

.priority-heading {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 16px;
}

.priority-list {
  list-style: none;
  counter-reset: priority;
}

.priority-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--charcoal-700);
  line-height: 1.6;
}

.priority-list li::before {
  counter-increment: priority;
  content: counter(priority);
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background-color: var(--emerald-700);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.priority-list li:last-child {
  margin-bottom: 0;
}

.score-closing {
  font-size: 15px;
  color: var(--charcoal-600);
  margin-bottom: 24px;
  font-style: italic;
}

.what-next {
  background-color: var(--charcoal-50);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 32px 0;
  text-align: left;
}

.what-next-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 16px;
}

.what-next-list {
  list-style: none;
  counter-reset: steps;
}

.what-next-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--charcoal-700);
  line-height: 1.6;
}

.what-next-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background-color: var(--emerald-700);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.what-next-list li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .score-screen-heading {
    font-size: 34px;
  }
  .score-number {
    font-size: 72px;
  }
  .score-total {
    font-size: 32px;
  }
  .priority-section {
    padding: 32px 28px;
  }
}

/* ============================================================ */
/* SECTION 5 — HDB VS CONDO                                     */
/* ============================================================ */
.strategy-section {
  padding: 64px 0;
  background-color: var(--white);
}

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

.strategy-card {
  background-color: var(--charcoal-50);
  border: 1px solid var(--charcoal-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.strategy-card:hover {
  border-color: var(--emerald-300);
  box-shadow: var(--shadow-md);
}

.strategy-card-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--emerald-800);
  margin-bottom: 20px;
}

.strategy-list {
  list-style: none;
}

.strategy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--charcoal-700);
  line-height: 1.5;
}

.strategy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--emerald-600);
  border-radius: 2px;
}

.strategy-list li:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .strategy-section {
    padding: 80px 0;
  }
}

/* ============================================================ */
/* WHATSAPP QUESTION SECTION                                    */
/* ============================================================ */
.whatsapp-question-section {
  padding: 40px 0;
  background-color: var(--white);
  border-top: 1px solid var(--charcoal-200);
  border-bottom: 1px solid var(--charcoal-200);
}

.whatsapp-question-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.whatsapp-question-text {
  font-size: 16px;
  color: var(--charcoal-700);
  margin: 0;
}

@media (min-width: 768px) {
  .whatsapp-question-section {
    padding: 48px 0;
  }
  .whatsapp-question-inner {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

/* ============================================================ */
/* SECTION 6 — WHY EDWIN                                        */
/* ============================================================ */
/* ============================================================ */
/* WHY EDWIN                                                    */
/* ============================================================ */
.why-section {
  padding: 64px 0;
  background-color: var(--warm-grey);
}

.why-inner {
  max-width: 720px;
  margin: 0 auto;
}

.why-body {
  font-size: 16px;
  color: var(--charcoal-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-cta {
  margin-top: 8px;
  margin-bottom: 24px;
}

/* Agent Card */
.agent-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--charcoal-200);
}

.agent-card-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.agent-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal-900);
  line-height: 1.3;
}

.agent-role {
  font-size: 14px;
  color: var(--emerald-700);
  font-weight: 600;
  margin-bottom: 8px;
}

.agent-detail {
  font-size: 13px;
  color: var(--charcoal-600);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .why-section {
    padding: 80px 0;
  }
}

/* ============================================================ */
/* SECTION 7 — FAQ                                              */
/* ============================================================ */
.faq-section {
  padding: 64px 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  border: 1px solid var(--charcoal-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--charcoal-300);
}

.faq-item[open] {
  border-color: var(--emerald-300);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--emerald-700);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--emerald-50);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.faq-item[open] .faq-question::after {
  content: "−";
  background-color: var(--emerald-700);
  color: var(--white);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--charcoal-600);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 8px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
  .faq-question {
    font-size: 16px;
    padding: 20px 24px;
  }
  .faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
  }
}

/* ============================================================ */
/* FINAL CTA                                                    */
/* ============================================================ */
.final-cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner .section-headline {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-subheadline {
  font-size: 16px;
  color: var(--emerald-100);
  margin-bottom: 28px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 480px) {
  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .final-cta-section {
    padding: 80px 0;
  }
  .final-cta-subheadline {
    font-size: 18px;
  }
}

/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */
.site-footer {
  padding: 40px 0 24px;
  background-color: var(--charcoal-900);
  color: var(--charcoal-400);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-compliance {
  font-size: 13px;
  color: var(--charcoal-400);
  line-height: 1.6;
}

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

.footer-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal-400);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-disclaimer {
  padding-top: 16px;
  border-top: 1px solid var(--charcoal-800);
  font-size: 12px;
  color: var(--charcoal-500);
  line-height: 1.7;
  max-width: 720px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--charcoal-600);
}

/* ============================================================ */
/* MODALS                                                       */
/* ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease;
  z-index: 1;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--charcoal-100);
  border: none;
  border-radius: var(--radius-full);
  font-size: 20px;
  color: var(--charcoal-600);
  cursor: pointer;
  transition: all var(--transition);
}

.modal-close:hover {
  background-color: var(--charcoal-200);
  color: var(--charcoal-900);
}

.modal-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.modal-body {
  font-size: 14px;
  color: var(--charcoal-700);
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 12px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 40px 36px;
  }
  .modal-title {
    font-size: 26px;
  }
  .modal-body {
    font-size: 15px;
  }
}

/* ============================================================ */
/* UTILITY                                                      */
/* ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================ */
/* PRINT STYLES                                                 */
/* ============================================================ */
@media print {
  .mobile-bottom-bar,
  .site-header,
  .hero-ctas,
  .form-nav,
  .btn {
    display: none !important;
  }
}
