/* ============================================
   DESPERATEMINDS — COMPLETE DESIGN SYSTEM
   Warm & Modern Theme
   ============================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS VARIABLES (colours, spacing, fonts) --- */
:root {
  /* Brand Colours */
  --teal:          #0D9488;
  --teal-light:    #14B8A6;
  --teal-dark:     #0F766E;
  --teal-faint:    #F0FDFA;
  --teal-border:   rgba(13, 148, 136, 0.25);

  /* Neutral Colours */
  --cream:         #FAFAF7;
  --white:         #FFFFFF;
  --charcoal:      #1C1C1E;
  --dark-2:        #2D2D30;
  --muted:         #6B7280;
  --muted-light:   #9CA3AF;
  --border:        #E5E7EB;
  --border-light:  #F3F4F6;

  /* Accent */
  --amber:         #F59E0B;
  --amber-faint:   rgba(245, 158, 11, 0.10);
  --red-soft:      #EF4444;

  /* Typography */
  --font-serif:    'Lora', 'Georgia', serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:   80px 6%;
  --max-width:     1100px;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     18px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.09);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.12);
  --shadow-teal:   0 8px 30px rgba(13,148,136,0.30);
}

/* --- RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  outline: none;
}

input, textarea {
  font-family: var(--font-sans);
  outline: none;
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6%;
}

.section {
  padding: var(--section-pad);
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--charcoal);
}

.section--teal {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; letter-spacing: -0.3px; }
h3 { font-size: clamp(18px, 3vw, 24px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p {
  font-family: var(--font-sans);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.text-teal    { color: var(--teal); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--muted); }
.text-charcoal{ color: var(--charcoal); }
.text-center  { text-align: center; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  max-width: 520px;
  margin: 14px auto 0;
  font-size: 17px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(13,148,136,0.40);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--white {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- NAVIGATION --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}

.nav__logo-text span {
  color: var(--teal);
}

.nav__logo-sub {
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted-light);
  font-family: var(--font-sans);
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  font-family: var(--font-sans);
}

.nav__link:hover {
  color: var(--teal);
}

.nav__link--active {
  color: var(--teal);
}

.nav__cta {
  background: var(--teal);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.nav__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--teal-faint) 50%, var(--cream) 100%);
  padding: 90px 6%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 2%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(13,148,136,0.10);
  border: 1px solid var(--teal-border);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 26px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.3px;
  font-family: var(--font-sans);
}

.hero__title {
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--teal);
}

.hero__subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 460px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__trust-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13,148,136,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__trust-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-sans);
}

.hero__trust-sub {
  font-size: 11px;
  color: var(--muted-light);
  font-family: var(--font-sans);
}

/* --- SCORE CARD (hero right side) --- */
.score-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 340px;
  margin: 0 auto;
}

.score-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.score-card__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.score-card__status {
  background: rgba(13,148,136,0.12);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
}

.score-card__number {
  text-align: center;
  margin-bottom: 20px;
}

.score-card__iq {
  font-family: var(--font-serif);
  font-size: 78px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.score-card__percentile {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-sans);
  margin-top: 4px;
}

.score-card__curve {
  background: rgba(13,148,136,0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.score-card__curve-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.score-card__curve-labels span {
  font-size: 10px;
  color: var(--muted-light);
  font-family: var(--font-sans);
}

.score-card__bars {
  margin-bottom: 18px;
}

.score-bar {
  margin-bottom: 11px;
}

.score-bar__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.score-bar__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  font-family: var(--font-sans);
}

.score-bar__pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-sans);
}

.score-bar__track {
  height: 5px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  border-radius: 3px;
  transition: width 1s ease;
}

.score-card__unlock {
  background: var(--amber-faint);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: #92400E;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--charcoal);
  padding: 22px 6%;
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-bar__item {
  text-align: center;
}

.trust-bar__num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-light);
}

.trust-bar__desc {
  font-size: 10px;
  color: var(--muted-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-top: 2px;
}

/* --- CARDS (general) --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card--teal {
  background: var(--teal);
  border-color: transparent;
  box-shadow: var(--shadow-teal);
  transform: translateY(-8px);
}

.card--teal:hover {
  transform: translateY(-11px);
  box-shadow: 0 24px 60px rgba(13,148,136,0.45);
}

/* --- PRICING CARDS --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  padding-top: 12px;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}

.pricing-card__tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.pricing-card__name {
  margin-bottom: 10px;
}

.pricing-card__desc {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 22px;
  min-height: 58px;
}

.pricing-card__price {
  margin-bottom: 22px;
}

.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
}

.pricing-card__note {
  font-size: 12px;
  margin-left: 6px;
  font-family: var(--font-sans);
}

.pricing-card__meta {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 12px;
  font-family: var(--font-sans);
}

.pricing-card__features {
  margin-bottom: 26px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  font-size: 13px;
  font-family: var(--font-sans);
}

.feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- HOW IT WORKS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.step {
  position: relative;
}

.step__number {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(13,148,136,0.10);
  border: 1.5px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
}

.step__connector {
  position: absolute;
  top: 27px;
  left: 60%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-border), transparent);
}

.step__title {
  margin-bottom: 10px;
}

.step__desc {
  font-size: 14px;
  line-height: 1.75;
}

/* --- REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
  font-family: var(--font-sans);
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-sans);
}

.review-card__score {
  font-size: 11px;
  background: rgba(13,148,136,0.10);
  color: var(--teal);
  font-weight: 700;
  border-radius: 6px;
  padding: 2px 9px;
  font-family: var(--font-sans);
}

/* --- BLOG CARDS --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  height: 148px;
  background: linear-gradient(135deg, rgba(13,148,136,0.12) 0%, rgba(13,148,136,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 10px;
}

.blog-card__time {
  font-size: 12px;
  color: var(--muted-light);
  font-family: var(--font-sans);
}

/* --- BLOG LISTING PAGE --- */
.blog-header {
  background: linear-gradient(160deg, var(--cream) 0%, var(--teal-faint) 100%);
  padding: 70px 6%;
  text-align: center;
}

.blog-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- BLOG ARTICLE PAGE --- */
.article-header {
  background: linear-gradient(160deg, var(--cream) 0%, var(--teal-faint) 100%);
  padding: 70px 6%;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 6%;
}

.article-body h2 {
  font-size: 26px;
  margin: 48px 0 16px;
}

.article-body h3 {
  font-size: 20px;
  margin: 34px 0 12px;
}

.article-body p {
  color: #374151;
  font-size: 17px;
  margin-bottom: 22px;
  line-height: 1.85;
}

.article-body ul {
  list-style: disc;
  padding-left: 26px;
  margin-bottom: 22px;
}

.article-body ul li {
  font-size: 17px;
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.75;
  font-family: var(--font-sans);
}

.article-cta {
  background: var(--teal-faint);
  border: 1.5px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 48px 0;
  text-align: center;
}

/* --- TEST PAGES --- */
.test-page {
  min-height: 100vh;
  background: var(--cream);
  padding: 50px 6%;
}

.test-container {
  max-width: 720px;
  margin: 0 auto;
}

.test-progress {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  margin-bottom: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.test-progress__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.test-progress__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-sans);
}

.test-progress__count {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-sans);
}

.test-progress__bar {
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.test-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.test-progress__timer {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-sans);
  margin-top: 8px;
  text-align: right;
}

.question-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.question-card__number {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-bottom: 14px;
}

.question-card__text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 28px;
}

.question-card__type {
  font-size: 11px;
  color: var(--muted-light);
  font-family: var(--font-sans);
  margin-bottom: 20px;
  font-style: italic;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-btn {
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: left;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-btn:hover {
  border-color: var(--teal);
  background: var(--teal-faint);
  color: var(--teal-dark);
}

.option-btn.selected {
  border-color: var(--teal);
  background: var(--teal-faint);
  color: var(--teal-dark);
  font-weight: 600;
}

.option-btn.correct {
  border-color: #16A34A;
  background: #F0FDF4;
  color: #15803D;
}

.option-btn.incorrect {
  border-color: var(--red-soft);
  background: #FEF2F2;
  color: #DC2626;
}

.option-letter {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.18s;
}

.option-btn:hover .option-letter,
.option-btn.selected .option-letter {
  background: var(--teal);
  color: white;
}

.question-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* --- RESULTS PAGE --- */
.results-page {
  background: var(--cream);
  min-height: 100vh;
}

.results-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 60px 6%;
  text-align: center;
  color: white;
}

.results-hero__iq {
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin: 16px 0 8px;
}

.results-hero__label {
  font-size: 16px;
  opacity: 0.85;
  font-family: var(--font-sans);
}

.results-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 6%;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.result-domain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1.5px solid var(--border);
}

.upsell-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--teal-border);
  box-shadow: var(--shadow-teal);
  text-align: center;
  margin: 40px 0;
}

/* --- FORMS & INPUTS --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-sans);
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.10);
}

/* --- CHECKOUT PAGE --- */
.checkout-page {
  background: var(--cream);
  min-height: 100vh;
  padding: 50px 6%;
}

.checkout-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.checkout-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  position: sticky;
  top: 90px;
}

.checkout-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
}

/* --- FOOTER --- */
.footer {
  background: var(--charcoal);
  padding: 52px 6% 28px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  color: white;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-text span {
  color: var(--teal-light);
}

.footer__about {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.75;
  max-width: 260px;
}

.footer__col-heading {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted-light);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: #6B7280;
  font-family: var(--font-sans);
  margin-bottom: 9px;
  transition: color 0.2s;
  cursor: pointer;
}

.footer__link:hover {
  color: var(--teal-light);
}

.footer__bottom {
  border-top: 1px solid #2D2D30;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__copy {
  font-size: 12px;
  color: #4B5563;
  font-family: var(--font-sans);
}

/* --- AD PLACEHOLDER --- */
.ad-slot {
  background: var(--border-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted-light);
  font-family: var(--font-sans);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-slot--banner {
  height: 90px;
  width: 100%;
  margin: 20px 0;
}

.ad-slot--square {
  height: 250px;
  width: 300px;
}

.ad-slot--sidebar {
  height: 600px;
  width: 160px;
}

/* --- ABOUT PAGE --- */
.about-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--teal-faint) 100%);
  padding: 80px 6%;
  text-align: center;
}

.about-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 6%;
}

.about-value {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
}

.about-value__item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
}

.about-value__icon {
  font-size: 36px;
  margin-bottom: 14px;
}

/* --- CONTACT PAGE --- */
.contact-page {
  background: var(--cream);
  min-height: 100vh;
  padding: 70px 6%;
}

.contact-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* --- POLICY PAGES --- */
.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 6%;
}

.policy-page h1 {
  margin-bottom: 10px;
}

.policy-page h2 {
  font-size: 22px;
  margin: 40px 0 12px;
}

.policy-page p {
  color: #374151;
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero__inner         { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .steps-grid          { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-grid           { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-listing        { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr 1fr; }
  .checkout-container  { grid-template-columns: 1fr; }
  .results-grid        { grid-template-columns: 1fr; }
  .about-value         { grid-template-columns: 1fr; }
  .options-grid        { grid-template-columns: 1fr; }
  .nav__links          { display: none; }
  .hero__buttons       { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 5%; }
  .hero { padding: 56px 5%; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 28px; }
}