    /* Hero Section */
    .consult-hero {
      background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 55%, var(--brand-mid) 100%);
      padding: 5rem 0 4.5rem;
      position: relative; overflow: hidden;
      text-align: center;
    }
    .consult-hero::before {
      content: '';
      position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(184,115,51,0.14) 0%, transparent 65%);
      pointer-events: none;
    }
    /* Mandala ring decoration */
    .hero-ring {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 520px; height: 520px; border-radius: 50%;
      border: 1px solid rgba(184,115,51,0.1);
      pointer-events: none;
    }
    .hero-ring::before {
      content: '';
      position: absolute; inset: 30px; border-radius: 50%;
      border: 1px solid rgba(184,115,51,0.07);
    }
    .hero-ring::after {
      content: '';
      position: absolute; inset: 60px; border-radius: 50%;
      border: 1px solid rgba(184,115,51,0.05);
    }

    .hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .hero-icon {
      font-size: 3rem; margin-bottom: 1.2rem;
      display: block;
      animation: float-icon 4s ease-in-out infinite;
    }
    @keyframes float-icon {
      0%, 100% { transform: translateY(0);    }
      50%       { transform: translateY(-10px); }
    }
    .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.7rem; }
    .hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
    .hero-title em { font-style: italic; color: var(--accent-light); }
    .hero-desc { font-size: 0.92rem; color: rgba(245,245,245,0.6); line-height: 1.8; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }

    .hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
    .btn-hero-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--accent); color: #fff;
      border: none; border-radius: 3px;
      font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.9rem 2rem; text-decoration: none; cursor: pointer;
      transition: all 0.25s;
    }
    .btn-hero-primary:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,115,51,0.35); }
    .btn-hero-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.08); color: rgba(245,245,245,0.85);
      border: 1px solid rgba(255,255,255,0.18); border-radius: 3px;
      font-family: var(--font-body); font-size: 0.8rem; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.9rem 2rem; text-decoration: none; cursor: pointer;
      transition: all 0.25s;
    }
    .btn-hero-secondary:hover { background: rgba(255,255,255,0.14); color: #fff; }

    /* Stats row */
    .hero-stats {
      display: flex; 
      justify-content: center; gap: 3rem;
      margin-top: 3.5rem; flex-wrap: nowrap;
    }
    .hero-stat { text-align: center; }
    .hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--accent-light); line-height: 1; }
    .hero-stat-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,245,245,0.4); margin-top: 0.3rem; }

    /* ══════════════════════════════════
       CONSULTATION TYPES
    ══════════════════════════════════ */
    .types-section { padding: 4rem 0; background: var(--surface); border-bottom: 1px solid var(--border); }
    .section-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; text-align: center; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: var(--brand); text-align: center; margin-bottom: 0.6rem; }
    .section-title em { font-style: italic; color: var(--accent); }
    .section-sub { font-size: 0.85rem; color: var(--text-muted); text-align: center; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }

    .types-grid { display: grid; padding: 3rem; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .type-card {
      background: #fff; border: 1px solid var(--border); border-radius: 6px;
      padding: 2rem; position: relative; overflow: hidden;
      transition: var(--transition);
    }
    .type-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(42,27,56,0.1); }
    .type-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
    }
    .type-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
    .type-badge {
      position: absolute; top: 1.2rem; right: 1.2rem;
      font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 20px;
    }
    .badge-free { background: rgba(46,125,50,0.1); color: #2e7d32; }
    .badge-popular { background: rgba(184,115,51,0.12); color: var(--accent-dark); }
    .type-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--brand); margin-bottom: 0.5rem; }
    .type-subtitle { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
    .type-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
    .type-includes { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
    .type-includes li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text-muted); }
    .type-includes li i { color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
    .type-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--brand); margin-bottom: 1.2rem; }
    .type-price span { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
    .btn-book-type {
      width: 100%;
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      background: var(--brand); color: #fff; border: none; border-radius: 3px;
      font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.8rem; cursor: pointer; transition: all 0.25s;
    }
    .btn-book-type:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,115,51,0.25); }

    /* ══════════════════════════════════
       HOW IT WORKS
    ══════════════════════════════════ */
    .howitworks-section { padding: 4.5rem 0; }
    .steps-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative; margin-top: 3rem; padding: 0px 33px 0px 33px;
    }
    /* Connecting line */
    .steps-row::before {
      content: '';
      position: absolute; top: 28px; left: 12.5%; right: 12.5%;
      height: 1px; background: var(--border-accent);
      z-index: 0;
    }
    .step-item { text-align: center; padding: 0 3rem; position: relative; z-index: 1; }
    .step-bubble {
      width: 56px; height: 56px; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
      color: #fff; font-size: 1.3rem;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem;
      box-shadow: 0 4px 16px rgba(42,27,56,0.2);
      transition: transform 0.3s;
    }
    .step-item:hover .step-bubble { transform: scale(1.1) rotate(5deg); }
    .step-num-label {
      font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.35rem;
    }
    .step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--brand); margin-bottom: 0.4rem; }
    .step-desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; }

    /* ══════════════════════════════════
       ASTROLOGERS
    ══════════════════════════════════ */
    .astrologers-section { padding: 4.5rem 0; background: var(--surface); }
    .astrologers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; padding: 5rem;}
    .astrologer-card {
      background: #fff; border: 1px solid var(--border); border-radius: 6px;
      overflow: hidden; transition: var(--transition); text-align: center;
    }
    .astrologer-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(42,27,56,0.1); }

    /* Avatar placeholder */
    .astro-avatar-wrap {
      padding: 2rem 2rem 1rem;
      background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
    }
    .astro-avatar {
      width: 96px; height: 96px; border-radius: 50%;
      margin: 0 auto;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.8rem;
      border: 3px solid var(--border-accent);
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
      box-shadow: 0 6px 20px rgba(42,27,56,0.15);
    }
    .astro-body { padding: 0 1.5rem 1.8rem; }
    .astro-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--brand); margin-bottom: 0.15rem; }
    .astro-title-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; }
    .astro-rating { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-bottom: 0.8rem; }
    .astro-stars { color: var(--accent); font-size: 0.78rem; }
    .astro-rating-count { font-size: 0.72rem; color: var(--text-muted); }
    .astro-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; margin-bottom: 1rem; }
    .astro-tag {
      font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
      background: var(--surface); border: 1px solid var(--border);
      color: var(--text-muted); padding: 0.18rem 0.55rem; border-radius: 20px;
    }
    .astro-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.2rem; }
    .astro-exp { font-size: 0.72rem; color: var(--brand); font-weight: 500; margin-bottom: 1.2rem; }
    .astro-exp i { color: var(--accent); margin-right: 0.3rem; }
    .btn-book-astro {
      width: 100%;
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      background: var(--brand); color: #fff; border: none; border-radius: 3px;
      font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.75rem; cursor: pointer; transition: all 0.25s;
    }
    .btn-book-astro:hover { background: var(--accent); }
    .astro-divider { height: 1px; background: var(--border); margin: 0 1.5rem 1.2rem; }

    /* ══════════════════════════════════
       FAQ
    ══════════════════════════════════ */
    .faq-section { padding: 4.5rem 0; }
    .faq-wrap { max-width: 720px; margin: 2.5rem auto 0; }
    .faq-item {
      border: 1px solid var(--border); border-radius: 4px;
      margin-bottom: 0.7rem; overflow: hidden; transition: border-color 0.2s;
    }
    .faq-item.open { border-color: var(--border-accent); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 1.3rem; cursor: pointer; user-select: none;
      gap: 1rem;
    }
    .faq-q-text { font-size: 0.88rem; font-weight: 500; color: var(--brand); line-height: 1.4; }
    .faq-icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; color: var(--text-muted); flex-shrink: 0;
      transition: all 0.3s;
    }
    .faq-item.open .faq-icon { background: var(--brand); color: #fff; border-color: var(--brand); transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
      font-size: 0.83rem; color: var(--text-muted); line-height: 1.75;
      padding: 0 1.3rem;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 1.3rem 1.2rem; }

    /* ══════════════════════════════════
       BOTTOM CTA BANNER
    ══════════════════════════════════ */
    .cta-banner {
      background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
      padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(184,115,51,0.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-banner-inner { position: relative; z-index: 1; }
    .cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: #fff; margin-bottom: 0.6rem; }
    .cta-banner h2 em { font-style: italic; color: var(--accent-light); }
    .cta-banner p { font-size: 0.85rem; color: rgba(245,245,245,0.55); margin-bottom: 2rem; }

    /* ══════════════════════════════════
       BOOKING MODAL
    ══════════════════════════════════ */
    .modal-backdrop {
      position: fixed; inset: 0;
      background: rgba(26,15,36,0.65);
      backdrop-filter: blur(4px);
      z-index: 2000;
      display: none; align-items: center; justify-content: center;
      padding: 1rem;
    }
    .modal-backdrop.open { display: flex; }

    .modal {
      background: #fff; border-radius: 8px;
      width: 100%; max-width: 580px;
      max-height: 90vh; overflow-y: auto;
      position: relative;
      animation: modal-in 0.35s cubic-bezier(0.34,1.28,0.64,1) both;
      box-shadow: 0 32px 80px rgba(26,15,36,0.35);
    }
    @keyframes modal-in {
      0%   { opacity: 0; transform: scale(0.88) translateY(20px); }
      100% { opacity: 1; transform: scale(1)    translateY(0); }
    }

    .modal-header {
      background: linear-gradient(135deg, var(--brand-deep), var(--brand));
      padding: 1.8rem 2rem 1.4rem;
      position: relative;
    }
    .modal-close {
      position: absolute; top: 1rem; right: 1rem;
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(255,255,255,0.1); border: none;
      color: rgba(245,245,245,0.7); font-size: 0.9rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.2s;
    }
    .modal-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
    .modal-eyebrow { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.4rem; }
    .modal-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: #fff; }

    /* Type toggle inside modal */
    .modal-type-toggle {
      display: flex; gap: 0.6rem; margin-top: 1.2rem;
    }
    .toggle-pill {
      flex: 1; padding: 0.5rem 0.8rem; border-radius: 20px; cursor: pointer;
      border: 1.5px solid rgba(255,255,255,0.2);
      font-family: var(--font-body); font-size: 0.73rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(245,245,245,0.6); background: none;
      transition: all 0.2s; text-align: center;
    }
    .toggle-pill.active {
      background: var(--accent); color: #fff; border-color: var(--accent);
    }

    .modal-body { padding: 1.8rem 2rem; }

    /* Form */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-grid .full { grid-column: 1 / -1; }
    .form-group { display: flex; flex-direction: column; gap: 0.35rem; }
    .form-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .form-label .req { color: var(--accent); }
    .form-input, .form-select, .form-textarea {
      background: var(--surface); border: 1px solid var(--border); border-radius: 3px;
      font-family: var(--font-body); font-size: 0.85rem; color: var(--brand);
      padding: 0.65rem 0.9rem; outline: none;
      transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184,115,51,0.08); background: #fff;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(107,95,120,0.5); }
    .form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B5F78' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
    .form-textarea { resize: vertical; min-height: 80px; }
    .form-hint { font-size: 0.67rem; color: var(--text-muted); }

    .form-section-title {
      font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--brand); font-weight: 500;
      padding: 0.6rem 0 0.4rem;
      border-top: 1px solid var(--border); margin-top: 0.4rem;
      grid-column: 1 / -1;
    }

    /* Time slots */
    .slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
    .slot {
      text-align: center; padding: 0.5rem 0.3rem; border-radius: 3px;
      border: 1.5px solid var(--border);
      font-size: 0.72rem; color: var(--brand); cursor: pointer;
      transition: all 0.2s; background: var(--surface);
    }
    .slot:hover { border-color: var(--accent); background: #fff; }
    .slot.active { border-color: var(--accent); background: rgba(184,115,51,0.08); color: var(--accent-dark); font-weight: 500; }
    .slot.booked { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

    /* Submit */
    .modal-footer { padding: 0 2rem 2rem; }
    .btn-submit-booking {
      width: 100%; background: var(--accent); color: #fff; border: none; border-radius: 3px;
      font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 1rem; cursor: pointer; transition: all 0.25s;
      display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    }
    .btn-submit-booking:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,115,51,0.3); }
    .modal-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 0.8rem; line-height: 1.6; }

    /* ── Success state inside modal ── */
    .booking-success {
      text-align: center; padding: 3rem 2rem;
      display: none;
    }
    .booking-success .success-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem; font-size: 1.8rem; color: #fff;
    }
    .booking-success h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--brand); margin-bottom: 0.5rem; }
    .booking-success p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

    /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
    @media (max-width: 900px) {
      .astrologers-grid { grid-template-columns: 1fr 1fr; }
      .steps-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .steps-row::before { display: none; }
    }
    @media (max-width: 640px) {
      .types-grid       { grid-template-columns: 1fr; }
      .astrologers-grid { grid-template-columns: 1fr; }
      .steps-row        { grid-template-columns: 1fr; }
      .form-grid        { grid-template-columns: 1fr; }
      .form-grid .full  { grid-column: 1; }
      .slot-grid        { grid-template-columns: repeat(3, 1fr); }
      .modal-body, .modal-footer { padding-left: 1.2rem; padding-right: 1.2rem; }
      .modal-header     { padding: 1.4rem 1.2rem; }
      .hero-stats       { gap: 1.5rem; }
    }
  