/* ============================================================
   FLEURIR ONLINE — Scale Readiness Audit
   styles.css
   ============================================================ */

/* ------------------------------------------------------------
   FONTS
   ------------------------------------------------------------ */

@font-face {
  font-family: 'Recoleta Light';
  src: url('recoleta-light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Karla loaded via Google Fonts in index.html */

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #F6F0E9;
  color: #363636;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: #4A5D49;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  border: none;
  background: none;
}

/* ------------------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------------------ */

.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;
}

:focus-visible {
  outline: 2px solid #4A5D49;
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main-content {
  flex: 1;
}

.content-wrap {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.content-narrow {
  max-width: 680px;
}

.content-wide {
  max-width: 800px;
}

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */

.header {
  background-color: #F6F0E9;
  border-bottom: 1px solid #E8CFC4;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.logo {
  height: 36px;
  width: auto;
}

.header--hidden {
  display: none;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */

.footer {
  background-color: #F6F0E9;
  border-top: 1px solid #E8CFC4;
  padding: 24px;
  text-align: center;
}

.footer p {
  font-size: 14px;
  color: #363636;
  letter-spacing: 0.02em;
}

.footer a {
  color: #4A5D49;
}

/* ------------------------------------------------------------
   PROGRESS BAR
   ------------------------------------------------------------ */

.progress-wrap {
  padding: 20px 24px 0;
  max-width: 680px;
  margin: 0 auto;
}

.progress-label {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: #4A5D49;
  margin-bottom: 8px;
}

.progress-bar-bg {
  background-color: #E8CFC4;
  height: 4px;
  border-radius: 2px;
  width: 100%;
}

.progress-bar-fill {
  background-color: #4A5D49;
  height: 4px;
  border-radius: 2px;
  transition: width 0.3s ease;
  min-width: 4px;
}

/* ------------------------------------------------------------
   SCREENS — shared
   ------------------------------------------------------------ */

.screen {
  padding-top: 64px;
  padding-bottom: 64px;
}

/* ------------------------------------------------------------
   WELCOME SCREEN
   ------------------------------------------------------------ */

.screen-welcome {
  padding-top: 48px;
  padding-bottom: 48px;
}

.welcome-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 48px 40px 40px;
  text-align: center;
}

.welcome-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 36px;
}

.display-heading {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 1.15;
  color: #363636;
  margin-bottom: 20px;
  text-align: center;
}

.subheading {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #A9704A;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 28px;
}

.body-copy {
  font-size: 18px;
  line-height: 1.7;
  color: #363636;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.body-copy:last-of-type {
  margin-bottom: 36px;
}

.welcome-card .body-copy {
  text-align: center;
}

.footnote {
  font-size: 14px;
  color: #8CA486;
  margin-top: 12px;
  text-align: center;
}

/* ------------------------------------------------------------
   PRIMARY BUTTON
   ------------------------------------------------------------ */

.btn-primary {
  display: block;
  width: 100%;
  background-color: #A9704A;
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: 2px solid #A9704A;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #8A5A38;
  border-color: #8A5A38;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ------------------------------------------------------------
   QUESTION SCREEN
   ------------------------------------------------------------ */

.screen-question {
  padding-top: 0;
  padding-bottom: 64px;
}

.question-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 36px;
  margin-top: 24px;
}

.question-text {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.35;
  color: #363636;
  margin-bottom: 32px;
}

.answer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.answer-card {
  display: block;
  width: 100%;
  background-color: #F2DED3;
  border: 2px solid #E8CFC4;
  border-radius: 4px;
  padding: 18px 20px;
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #363636;
  text-align: left;
  line-height: 1.5;
  transition: border-color 0.15s ease, background-color 0.1s ease;
  min-height: 48px;
}

.answer-card:hover {
  border-color: #8CA486;
}

.answer-card:focus-visible {
  border-color: #4A5D49;
  outline: none;
}

.answer-card.selected {
  border-color: #4A5D49;
  border-width: 2px;
}

/* ------------------------------------------------------------
   TRANSITION SCREENS (branch, rejoin)
   ------------------------------------------------------------ */

.screen-transition {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 64px - 72px);
}

.transition-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 48px 40px 40px;
  text-align: center;
}

.transition-card .body-copy {
  font-size: 16px;
  text-align: center;
}

.transition-heading {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.25;
  color: #363636;
  margin-bottom: 28px;
  text-align: center;
}

/* ------------------------------------------------------------
   EMAIL CAPTURE
   ------------------------------------------------------------ */

.screen-email {
  min-height: calc(100vh - 64px - 72px);
  display: flex;
  align-items: center;
  background-color: #F6F0E9;
}

.email-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 48px 40px 40px;
  text-align: center;
}

.email-card .body-copy {
  font-size: 16px;
  text-align: center;
}

.email-card .body-copy:last-of-type {
  margin-bottom: 0;
}

.section-heading {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.25;
  color: #363636;
  margin-bottom: 24px;
  text-align: center;
}

.email-form {
  margin-top: 32px;
}

.field-wrap {
  margin-bottom: 16px;
}

.text-input {
  display: block;
  width: 100%;
  background-color: #F6F0E9;
  border: 1.5px solid #8CA486;
  border-radius: 6px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #363636;
  padding: 14px 18px;
  transition: border-color 0.15s ease;
}

.text-input::placeholder {
  color: #8CA486;
}

.text-input:focus {
  border-color: #4A5D49;
  outline: none;
}

.form-error {
  color: #8A5A38;
  font-size: 15px;
  min-height: 20px;
  margin-bottom: 8px;
}

.consent-text {
  font-size: 14px;
  color: #363636;
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
}

.consent-link {
  color: #363636;
  text-decoration: underline;
}

.consent-link:hover {
  color: #A9704A;
}

/* ------------------------------------------------------------
   LOADING SCREEN
   ------------------------------------------------------------ */

.screen-loading {
  min-height: calc(100vh - 64px - 72px);
  display: flex;
  align-items: center;
}

.loading-inner {
  text-align: center;
}

.loading-pulse {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #A9704A;
  margin: 0 auto 32px;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50%       { transform: scale(1);   opacity: 1; }
}

.loading-heading {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 34px;
  color: #363636;
  margin-bottom: 20px;
}

.loading-line {
  font-size: 18px;
  color: #4A5D49;
  transition: opacity 0.2s ease;
}

/* ------------------------------------------------------------
   RESULT PAGE — main white card
   ------------------------------------------------------------ */

.screen-result {
  padding: 48px 24px;
  background-color: #F6F0E9;
}

/* The single white container for all result content */
.result-wrap {
  background: #FFFFFF;
  border: 1px solid #E0D8CE;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(74, 93, 73, 0.10), 0 1px 4px rgba(74, 93, 73, 0.06);
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}

/* Hero section at the top of the white card */
.result-hero-inner {
  padding: 48px 40px 36px;
  text-align: center;
}

.result-tag {
  display: block;
  color: #A9704A;
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 20px;
}

/* Score circle */
.score-circle {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 1.5px solid #A9704A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.score-num {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: #363636;
}

.score-denom {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8CA486;
  margin-top: 2px;
}

.result-headline {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.25;
  color: #363636;
  margin-bottom: 16px;
}

.result-subheadline {
  font-size: 18px;
  font-weight: 700;
  color: #4A5D49;
  line-height: 1.5;
}

/* Main diagnosis — no inner card, flows on white bg */
.result-diagnosis-section {
  padding: 0 40px 32px;
}

/* Shared inner rule */
.result-rule {
  height: 1px;
  background: #F0EAE2;
}

/* Service type paragraph — cream box with rounded corners */
.result-service-section {
  background: #F6F0E9;
  border-radius: 12px;
  margin: 24px 0;
  padding: 24px 28px;
}

.result-service-copy {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #4A5D49;
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

.result-service-copy + .result-service-copy {
  margin-top: 12px;
}

/* Inner section padding — used for readiness, steps, KSS */
.result-section-pad {
  padding: 0 40px 24px;
}

/* Standardised body copy for result page */
.result-body-copy {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #363636;
  line-height: 1.8;
  margin-bottom: 16px;
}

.result-body-copy:last-of-type {
  margin-bottom: 0;
}

/* Closing section */
.result-closing-section {
  padding: 32px 40px 40px;
  text-align: center;
}

/* Diagnosis blocks — inside white card, use light bg/border to distinguish */
.diagnosis-block {
  background-color: #FAFAF9;
  border: 1px solid #EDE8E2;
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 0;
}

.diagnosis-block p {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #363636;
  margin-bottom: 14px;
}

.diagnosis-block p:last-child {
  margin-bottom: 0;
}

/* Combination block — pink tinted */
.diagnosis-block--combination {
  background-color: #FAF4F0;
  border: 1px solid #E8CFC4;
  border-radius: 6px;
  padding: 20px 24px;
}

.block-heading {
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: #A9704A;
  margin-bottom: 14px;
}

.block-subheading {
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: #A9704A;
  margin-bottom: 10px;
}

/* Legacy result-section margin (unused in new layout — kept for safety) */
.result-section {
  margin-bottom: 0;
}

/* Where you likely are — checklist section */
.where-you-are-list {
  margin: 8px 0 0 0;
  padding: 0 0 0 20px;
  list-style: disc;
}

.where-you-are-item {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #363636;
  line-height: 1.8;
  margin-bottom: 6px;
}

.where-you-are-item:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   OFFER SECTION — two-column coloured cards, equal height
   ------------------------------------------------------------ */

/* Single-column stacked offers */
.offers-two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 28px 32px;
}

.offer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 28px;
  border-radius: 12px;
}

/* Per-card background colours */
.offer-col--light-green { background-color: #8CA486; }
.offer-col--dark-green  { background-color: #4A5D49; }
.offer-col--pink        { background-color: #F2DED3; }
.offer-col--rust        { background-color: #A9704A; }

.offer-col-label {
  font-family: 'Karla', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Label colour per card type */
.offer-col--dark-green  .offer-col-label { color: rgba(246, 240, 233, 0.70); }
.offer-col--light-green .offer-col-label { color: rgba(246, 240, 233, 0.70); }
.offer-col--rust        .offer-col-label { color: rgba(246, 240, 233, 0.70); }
.offer-col--pink        .offer-col-label { color: #A9704A; }

.offer-col-name {
  font-family: 'Recoleta Light', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Name colour per card type */
.offer-col--dark-green  .offer-col-name { color: #F6F0E9; }
.offer-col--light-green .offer-col-name { color: #F6F0E9; }
.offer-col--rust        .offer-col-name { color: #F6F0E9; }
.offer-col--pink        .offer-col-name { color: #363636; }

.offer-col-body {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Body colour per card type */
.offer-col--dark-green  .offer-col-body { color: #F6F0E9; }
.offer-col--light-green .offer-col-body { color: #F6F0E9; }
.offer-col--rust        .offer-col-body { color: #F6F0E9; }
.offer-col--pink        .offer-col-body { color: #363636; }

/* Button — always pinned to bottom of card via margin-top: auto */
.btn-offer-col {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
  border: none;
}

/* Button colour per card type */
.offer-col--dark-green .btn-offer-col {
  background-color: #8CA486;
  color: #F6F0E9;
}

.offer-col--light-green .btn-offer-col {
  background-color: #F2DED3;
  color: #363636;
}

.offer-col--pink .btn-offer-col {
  background-color: #A9704A;
  color: #F6F0E9;
}

.offer-col--rust .btn-offer-col {
  background-color: #4A5D49;
  color: #F6F0E9;
}

.btn-offer-col:hover,
.btn-offer-col:focus-visible {
  opacity: 0.85;
  text-decoration: none;
}

/* Waitlist confirmation states (legacy) */

.waitlist-confirm {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
}

.waitlist-confirm--success {
  color: #F6F0E9;
}

.waitlist-confirm--error {
  color: #F2DED3;
}

/* ------------------------------------------------------------
   CLOSING / RETAKE — inside white card
   ------------------------------------------------------------ */

.retake-btn {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #8CA486;
  text-decoration: none;
  border: 1.5px solid #8CA486;
  border-radius: 6px;
  padding: 10px 24px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.retake-btn:hover {
  color: #4A5D49;
  border-color: #4A5D49;
}

/* ------------------------------------------------------------
   READINESS CARDS
   ------------------------------------------------------------ */

.readiness-section {
  margin-bottom: 12px;
}

.readiness-label,
.steps-label {
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #A9704A;
  margin-bottom: 16px;
}

.readiness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.readiness-card {
  background: #FFFFFF;
  border: 1px solid #E0D8CE;
  border-radius: 4px;
  padding: 14px 16px;
}

.readiness-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.readiness-card-title {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #363636;
}

.card-tag {
  font-family: 'Karla', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-strong {
  background: #EAF3DE;
  color: #3B6D11;
}

.tag-building {
  background: #F0EFF6;
  color: #4A5D49;
}

.tag-needs {
  background: #FFF3E8;
  color: #A9704A;
}

.tag-critical {
  background: #FDE8D8;
  color: #8B3A0F;
  border: 1px solid #D4885A;
}

.readiness-card-body {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #363636;
  line-height: 1.8;
}

/* ------------------------------------------------------------
   STEPS SECTION
   ------------------------------------------------------------ */

.steps-section {
  background: #FFFFFF;
  border: 1.5px solid #F2DED3;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 28px 32px;
  margin-bottom: 12px;
}

.step-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  margin-bottom: 24px;
  align-items: start;
}

.step-row:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4A5D49;
  color: #F6F0E9;
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A9704A;
  margin-bottom: 6px;
}

.step-body {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #363636;
  line-height: 1.8;
}

/* ------------------------------------------------------------
   KEEP / STOP / START
   ------------------------------------------------------------ */

.kss-section {
  margin-bottom: 12px;
}

.kss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E0D8CE;
  border: 1px solid #E0D8CE;
  border-radius: 4px;
  overflow: hidden;
}

.kss-cell {
  background: #FFFFFF;
  padding: 18px 16px;
}

.kss-label {
  font-family: 'Karla', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kss-label--keep  { color: #4A5D49; }
.kss-label--stop  { color: #A9704A; }
.kss-label--start { color: #363636; }

.kss-body {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #363636;
  line-height: 1.8;
}

/* (old single-column offer styles removed — replaced by .offers-two-col above) */

/* ------------------------------------------------------------
   MOBILE — max-width: 768px
   ------------------------------------------------------------ */

@media (max-width: 768px) {

  .screen {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Welcome */
  .screen-welcome {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .welcome-card {
    padding: 36px 24px 28px;
  }

  .welcome-logo {
    height: 44px;
    margin-bottom: 28px;
  }

  .display-heading {
    font-size: 36px;
  }

  /* Questions */
  .question-card {
    padding: 28px 20px;
    margin-top: 16px;
  }

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

  .answer-card {
    font-size: 16px;
    padding: 16px 18px;
  }

  /* Transition */
  .transition-card {
    padding: 36px 24px 28px;
  }

  .transition-heading {
    font-size: 30px;
  }

  /* Email */
  .screen-email {
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: flex-start;
  }

  .email-card {
    padding: 36px 24px 28px;
  }

  .section-heading {
    font-size: 30px;
  }

  /* Loading */
  .loading-heading {
    font-size: 24px;
  }

  /* Result page */
  .screen-result {
    padding: 24px 16px;
  }

  .result-hero-inner {
    padding: 36px 24px 28px;
  }

  .result-diagnosis-section {
    padding: 0 24px 24px;
  }

  .result-service-section {
    margin: 16px 0;
    padding: 20px 20px;
  }

  .result-section-pad {
    padding: 0 24px 20px;
  }

  .result-closing-section {
    padding: 24px 24px 32px;
  }

  .score-circle {
    width: 96px;
    height: 96px;
  }

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

  .result-headline {
    font-size: 24px;
  }

  .result-subheadline {
    font-size: 16px;
  }

  .diagnosis-block {
    padding: 16px 18px;
  }

  /* Offer section — reduce padding on mobile */
  .offers-two-col {
    padding: 0 16px 24px;
    gap: 12px;
  }

  .offer-col {
    padding: 28px 20px;
  }

  /* Action cards — stack to single column on mobile */
  .action-grid {
    grid-template-columns: 1fr;
  }

  .action-text {
    font-size: 15px;
  }

  /* Readiness cards — stack on mobile */
  .readiness-grid {
    grid-template-columns: 1fr;
  }

  /* Steps section */
  .steps-section {
    padding: 22px 20px;
  }

  /* KSS — stack on mobile */
  .kss-grid {
    grid-template-columns: 1fr;
  }

  /* Offer col name — same on mobile */
  .offer-col-name {
    font-size: 18px;
  }

}

/* ------------------------------------------------------------
   VERY SMALL SCREENS
   ------------------------------------------------------------ */

@media (max-width: 375px) {
  .display-heading {
    font-size: 32px;
  }

  .result-headline {
    font-size: 28px;
  }
}
