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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── HEADER ─── */
  header {
    background: var(--primary);
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  }

  footer{
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
    footer a{
    color: var(--primary);
    padding: 0px 2px;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .logo span {
    color: var(--cream);
    font-style: italic;
    font-weight: 400;
  }

  /* ─── HERO ─── */
  .hero {
    background: var(--green-deep);
    color: var(--cream);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,151,58,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 em {
    color: var(--gold-light);
    font-style: italic;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(245,240,232,0.75);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.75;
  }

  .hero-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

  .hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 48px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--cream-dark);
    border-top: 1px solid rgba(196,151,58,0.2);
    border-bottom: 1px solid rgba(196,151,58,0.2);
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-deep);
  }

  .trust-item svg { color: var(--gold); flex-shrink: 0; }

  /* ─── SECTION ─── */
  .section {
    padding: 5rem 1.5rem;
    max-width: 860px;
    margin: 0 auto;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--green-deep);
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .section-title em { color: var(--gold); font-style: italic; }

  .section-sub {
    text-align: center;
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.7;
  }

  .gold-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
  }

  /* ─── STEPS ─── */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .step-card {
    background: var(--white);
    border: 1px solid rgba(196,151,58,0.18);
    border-radius: 4px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .step-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

  .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--green-deep);
    margin-bottom: 0.5rem;
  }

  .step-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ─── QUIZ SECTION ─── */
  #quiz-section {
    padding: 4rem 1.5rem 6rem;
    background: var(--primary);
    position: relative;
  }

  .quiz-container {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .quiz-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 0.6rem;
  }

  .quiz-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 500;
    color: var(--cream);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
  }

  .quiz-card {
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .quiz-progress-bar {
    height: 4px;
    background: var(--cream-dark);
  }

  .quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-mid), var(--gold));
    transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
  }

  .quiz-body {
    padding: 2.25rem 2rem 2rem;
  }

  .quiz-step-label {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
  }

  .quiz-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.45;
  }

  .quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
  }

  .option-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    text-align: left;
    background: var(--cream);
    border: 1.5px solid rgba(44,74,62,0.12);
    border-radius: 3px;
    padding: 0.875rem 1.1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.18s;
  }

  .option-btn:hover {
    border-color: var(--green-mid);
    background: var(--white);
    color: var(--green-deep);
  }

  .option-btn.selected {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--cream);
    font-weight: 700;
  }

  .option-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.18s;
  }

  .option-btn.selected .option-dot {
    opacity: 1;
    background: var(--gold);
    border-color: var(--gold);
  }

  .option-btn.selected .option-dot::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--white);
  }

  .quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(44,74,62,0.08);
    padding-top: 1.25rem;
  }

  .btn-back {
    background: transparent;
    border: 1px solid rgba(44,74,62,0.2);
    border-radius: 3px;
    padding: 0.65rem 1.25rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.18s;
    letter-spacing: 0.04em;
  }
  .btn-back:hover { border-color: var(--primary); color: var(--primary); }
  .btn-back:disabled { opacity: 0.3; cursor: default; }

  .btn-next {
    background: var(--primary);
    border: none;
    border-radius: 3px;
    padding: 0.7rem 1.75rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: all 0.18s;
  }
  .btn-next:hover { background: var(--primary); }
  .btn-next:disabled { opacity: 0.35; cursor: default; }

  /* Start screen */
  .quiz-start {
    padding: 2.5rem 2rem 2.25rem;
    text-align: center;
  }

  .quiz-start-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
  }

  .quiz-start h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
  }

  .quiz-start p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 1.75rem;
    font-weight: 300;
  }

  .btn-start {
    background: var(--gold);
    border: none;
    border-radius: 3px;
    padding: 0.85rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-start:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* Contact form */
  .form-body { padding: 2.25rem 2rem 2rem; }

  .form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }

  .radio-choice-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .radio-choice {
    flex: 1;
    min-width: 130px;
    border: 1.5px solid rgba(44,74,62,0.15);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-mid);
    transition: all 0.18s;
    background: var(--cream);
  }
  .radio-choice:hover { border-color: var(--primary); color: var(--primary); }
  .radio-choice.selected { background: var(--primary); border-color: var(--primary); color: var(--cream); font-weight: 700; }

  .form-group { margin-bottom: 1rem; }

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem;
  }

  .form-group input {
    width: 100%;
    border: 1px solid rgba(44,74,62,0.18);
    border-radius: 3px;
    padding: 0.7rem 0.9rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.18s;
    outline: none;
  }
  .form-group input:focus { border-color: var(--green-mid); }
  .form-group input::placeholder { color: var(--text-light); }

  /* Result */
  .result-header {
    background: var(--green-deep);
    padding: 2rem;
    text-align: center;
  }

  .result-eyebrow {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
  }

  .result-type-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.2;
  }

  .result-body {
    padding: 2rem 2rem 2.25rem;
  }

  .result-desc {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .result-cta-label {
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.65;
  }

  .result-cta-label strong { color: var(--primary); }

  .cta-benefits {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    border-radius: 0 3px 3px 0;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cta-benefits h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.875rem;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 0.45rem;
    line-height: 1.5;
  }

  .benefit-check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
  }

  .btn-calendly {
    display: block;
    width: 100%;
    background: var(--gold);
    border: none;
    border-radius: 3px;
    padding: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-calendly:hover { background: var(--gold-light); transform: translateY(-1px); }


  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .quiz-card { animation: fadeUp 0.45s ease both; }

  /* Responsive */
  @media (max-width: 480px) {
    .quiz-body, .form-body, .result-body { padding: 1.5rem 1.25rem; }
    .result-header { padding: 1.5rem 1.25rem; }
    .hero { padding: 3.5rem 1.25rem 3rem; }
    .trust-bar { gap: 1.25rem; }
  }