  :root {
    --bg-deep: #1a2744;
    /* Gold primary palette */
    --forest: #d4af37;
    --forest-bright: #dfc06a;
    --forest-light: #c49b2a;
    /* Gold accent */
    --terra: #d4af37;
    --terra-bright: #dfc06a;
    --terra-dim: #c49b2a;
    /* Text tones */
    --linen: #d4af37;
    --linen-dim: rgba(255,255,255,0.65);
    /* Dark navy tones */
    --charcoal: #2c3e6b;
    --charcoal-light: #34497a;
    --dusty-blue: #34497a;
    --dusty-blue-bright: #3a5a8a;
    --dusty-blue-light: #4a6a9a;
    /* Gold translucent */
    --blush: rgba(212,175,55,0.15);
    --blush-bright: rgba(212,175,55,0.2);
    --blush-dim: rgba(212,175,55,0.1);
    /* Shared */
    --white: #ffffff;
    --off-white: rgba(255,255,255,0.08);
    --text-grey: rgba(255,255,255,0.5);
    /* Gold theme */
    --gold: #d4af37;
    --gold-bright: #dfc06a;
    --inquiry-bg-start: rgba(44,62,107,0.6);
    --inquiry-bg-end: rgba(26,39,68,0.95);
    --inquiry-border: rgba(212,175,55,0.15);
    --inquiry-border-hover: rgba(212,175,55,0.35);
    --inquiry-glow: rgba(212,175,55,0.1);
    --inquiry-glow-hover: rgba(212,175,55,0.18);
    --black-bg: rgba(255,255,255,0.04);
    --black-bg-deep: rgba(255,255,255,0.06);
    --black-bg-result: rgba(44,62,107,0.5);
    --border-grey: rgba(212,175,55,0.15);
    --border-grey-hover: rgba(212,175,55,0.45);
    --checkbox-border: rgba(212,175,55,0.25);
    --text-white: #ffffff;
    --text-light: rgba(255,255,255,0.75);
    --text-dim: rgba(255,255,255,0.65);
    --text-faint: rgba(255,255,255,0.55);
    --text-very-faint: rgba(255,255,255,0.5);
    --text-placeholder: rgba(255,255,255,0.35);
    --error-bg: rgba(229,62,62,0.12);
    --error-border: rgba(229,62,62,0.3);
    --error-text: #fc8181;
    --success-bg: rgba(212,175,55,0.08);
    --success-border: rgba(212,175,55,0.3);
    --result-border: rgba(212,175,55,0.1);
    --button-black: #d4af37;
    --gold-glow: rgba(212,175,55,0.2);
    --gold-glow-strong: rgba(212,175,55,0.38);
    --gold-select: rgba(212,175,55,0.1);
    --gold-select-border: rgba(212,175,55,0.2);
    --gold-hover: rgba(212,175,55,0.06);
    --gold-shadow-light: rgba(212,175,55,0.12);
    --gold-shadow-med: rgba(212,175,55,0.18);
    --gold-focus: rgba(212,175,55,0.15);
    --gold-focus-ring: rgba(212,175,55,0.08);
    --spinner-border: #d4af37;
    --spinner-light: #dfc06a;
    --text-email-dim: rgba(255,255,255,0.6);
    --text-loading: rgba(255,255,255,0.5);
    --text-qa: rgba(255,255,255,0.82);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-size: 0.88rem;
  }

  /* ═══ ANIMATED BACKGROUND ═══ */
  .bg-aurora {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0; overflow: hidden; pointer-events: none;
  }
  .bg-aurora::before {
    content: '';
    position: absolute;
    width: 160vw; height: 160vh;
    top: -30vh; left: -30vw;
    background: none;
    animation: auroraShift 16s ease-in-out infinite alternate;
  }
  @keyframes auroraShift {
    0% { transform: translate(0,0) scale(1) rotate(0deg); }
    33% { transform: translate(-20px,15px) scale(1.03) rotate(0.5deg); }
    66% { transform: translate(15px,-10px) scale(0.98) rotate(-0.3deg); }
    100% { transform: translate(-8px,20px) scale(1.02) rotate(0.2deg); }
  }
  .orb { position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; display: none; }
  .orb-1 { width: 280px; height: 280px; background: var(--forest); opacity: 0.06; top: 8%; left: -4%; animation: orbFloat1 20s ease-in-out infinite; }
  .orb-2 { width: 220px; height: 220px; background: var(--gold); opacity: 0.08; top: 35%; right: -6%; animation: orbFloat2 24s ease-in-out infinite; }
  .orb-3 { width: 200px; height: 200px; background: var(--forest-bright); opacity: 0.05; bottom: 15%; left: 20%; animation: orbFloat3 22s ease-in-out infinite; }
  .orb-4 { width: 180px; height: 180px; background: var(--blush); opacity: 0.12; top: 60%; right: 15%; animation: orbFloat1 18s ease-in-out infinite reverse; }
  @keyframes orbFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px,35px); } }
  @keyframes orbFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px,-25px); } }
  @keyframes orbFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(25px,-40px); } }
  body::after {
    display: none;
  }

  /* ═══ LAYOUT ═══ */
  .page-wrapper { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 40px 16px 60px; }
  .header { text-align: center; margin-bottom: 48px; animation: fadeDown 0.8s ease-out; }
  .brand-logo { max-width: 160px; width: 80%; height: auto; margin-bottom: 12px; }
  .header .subtitle { font-family: 'Sora', sans-serif; font-size: 0.8rem; color: var(--text-grey); letter-spacing: 4px; text-transform: uppercase; font-weight: 500; }
  .divider {
    width: 90px; height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest-bright), var(--terra-bright));
    margin: 18px auto 0; border-radius: 4px;
    animation: dividerShimmer 4s linear infinite;
    background-size: 300% 100%;
  }
  @keyframes dividerShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

  /* ═══ SERVICE CARDS — SHARED ═══ */
  .services-stack { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
  .service-card {
    border-radius: 20px; padding: 32px 24px 28px; text-align: center; position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    animation: fadeUp 0.7s ease-out both;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    border-radius: 20px 20px 0 0; opacity: 0; transition: opacity 0.4s ease;
  }
  .service-card:hover::before { opacity: 1; }
  .service-card:nth-child(1) { animation-delay: 0.08s; }
  .service-card:nth-child(2) { animation-delay: 0.16s; }
  .service-card:nth-child(3) { animation-delay: 0.24s; }
  .service-card:nth-child(4) { animation-delay: 0.32s; }
  .service-card:nth-child(5) { animation-delay: 0.40s; }
  .service-card:nth-child(6) { animation-delay: 0.48s; }

  /* ═══ STYLE-A: NAVY + GOLD (primary) ═══ */
  /* ═══ UNIFIED CARD STYLE (A & B identical) ═══ */
  .style-a,
  .style-b {
    background: linear-gradient(145deg, rgba(44,62,107,0.6), rgba(26,39,68,0.95));
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  .style-a:hover,
  .style-b:hover {
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    transform: translateY(-6px);
  }
  .style-a::before,
  .style-b::before { background: linear-gradient(90deg, #d4af37, #dfc06a, #d4af37); }
  .style-a .card-icon-wrap,
  .style-b .card-icon-wrap { background: rgba(212,175,55,0.08); border: 2px solid rgba(212,175,55,0.15); box-shadow: none; }
  .style-a .card-title,
  .style-b .card-title { color: #d4af37; }
  .style-a .card-desc,
  .style-b .card-desc { color: var(--linen-dim); }
  .style-a .price-amount,
  .style-b .price-amount { color: var(--gold); -webkit-text-fill-color: var(--gold); }
  .style-a .includes-list,
  .style-b .includes-list { border-top: 1px solid rgba(201,168,76,0.2); }
  .style-a .includes-list li,
  .style-b .includes-list li { color: var(--text-white); }
  .style-a .includes-list li::before,
  .style-b .includes-list li::before { color: var(--gold); }
  .style-a .card-btn,
  .style-b .card-btn { background: linear-gradient(135deg, #d4af37, #c49b2a); color: #1a2744; box-shadow: 0 4px 24px rgba(212,175,55,0.25); }
  .style-a .card-btn:hover,
  .style-b .card-btn:hover { box-shadow: 0 8px 40px rgba(212,175,55,0.38); }
  .style-a .card-faqs,
  .style-b .card-faqs { border-top-color: rgba(201,168,76,0.15); }
  .style-a .card-faqs-label,
  .style-b .card-faqs-label { background: linear-gradient(90deg, #dfc06a, #d4af37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .style-a .faq-accordion,
  .style-b .faq-accordion { background: rgba(255,255,255,0.04); border-color: rgba(212,175,55,0.1); }
  .style-a .faq-accordion:hover, .style-a .faq-accordion.open,
  .style-b .faq-accordion:hover, .style-b .faq-accordion.open { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.05); }
  .style-a .faq-question-btn:hover,
  .style-b .faq-question-btn:hover { color: #dfc06a; }
  .style-a .faq-hl,
  .style-b .faq-hl { background: rgba(212,175,55,0.05); border-image: linear-gradient(180deg, #dfc06a, #d4af37) 1; }
  .style-a .inline-qa,
  .style-b .inline-qa { border-top-color: rgba(201,168,76,0.15); }
  .style-a .inline-qa-label,
  .style-b .inline-qa-label { background: linear-gradient(90deg, #dfc06a, #d4af37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

  /* ═══ CARD INNER ELEMENTS ═══ */
  .card-icon-wrap {
    width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.8rem; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .service-card:hover .card-icon-wrap { transform: scale(1.15) rotate(5deg); }
  .card-title { font-family: 'Sora','Poppins',sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; letter-spacing: -0.3px; }
  .card-desc { font-size: 0.82rem; line-height: 1.6; margin-bottom: 16px; max-width: 440px; margin-left: auto; margin-right: auto; }
  .price-area { margin-bottom: 18px; }
  .price-original { font-size: 0.8rem; color: var(--text-grey); text-decoration: line-through; margin-bottom: 2px; }
  .price-amount { font-family: 'Sora','Poppins',sans-serif; font-weight: 800; font-size: 1.8rem; line-height: 1.1; }
  .price-label { font-size: 0.7rem; font-weight: 600; color: var(--text-grey); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
  .includes-list { list-style: none; padding: 16px 0 0; display: inline-block; text-align: left; max-width: 380px; }
  .includes-list li { font-size: 0.8rem; padding: 5px 0; padding-left: 24px; position: relative; }
  .includes-list li::before { content: '✦'; position: absolute; left: 0; font-size: 0.7rem; top: 7px; }
  .card-btn {
    display: inline-block; margin-top: 20px; padding: 14px 30px;
    font-family: 'Sora','Poppins',sans-serif; font-weight: 700; font-size: 0.88rem;
    text-decoration: none; border-radius: 12px; letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .card-btn:hover { transform: translateY(-3px) scale(1.03); }
  .card-btn:active { transform: translateY(0) scale(0.98); }

  /* ═══ DEAL BANNER ═══ */
  .deal-banner {
    background: linear-gradient(145deg, rgba(26,43,74,0.97), rgba(36,58,96,0.95));
    border: 1px solid rgba(201,168,76,0.25); border-radius: 20px; padding: 32px 24px;
    text-align: center; position: relative; overflow: hidden;
    animation: fadeUp 0.7s ease-out 0.6s both;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .deal-banner::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
    pointer-events: none; animation: rotateSlow 20s linear infinite;
  }
  @keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .deal-banner .deal-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .deal-banner h3 {
    font-family: 'Sora','Poppins',sans-serif; font-weight: 800; font-size: 1.25rem;
    background: linear-gradient(135deg, var(--gold-bright), var(--terra-bright), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px;
  }
  .deal-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto; line-height: 1.6; }

  /* ═══ FAQ SHARED ═══ */
  .card-faqs { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(212,175,55,0.1); text-align: left; max-width: 440px; margin-left: auto; margin-right: auto; }
  .card-faqs-label {
    font-family: 'Sora','Poppins',sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    text-align: center; margin-bottom: 10px;
  }
  .faq-accordion {
    border-radius: 12px; margin-bottom: 8px; overflow: hidden; transition: all 0.3s ease;
    border: 1px solid rgba(212,175,55,0.1);
  }
  .faq-question-btn {
    width: 100%; background: none; border: none; color: var(--text-white);
    font-family: 'DM Sans',sans-serif; font-weight: 600; font-size: 0.88rem;
    text-align: left; padding: 14px 16px; cursor: pointer;
    display: flex; align-items: center; gap: 10px; transition: color 0.3s ease; line-height: 1.4;
  }
  .faq-q-icon { font-size: 1rem; flex-shrink: 0; }
  .faq-toggle {
    margin-left: auto; font-size: 1rem;
    background: linear-gradient(135deg, var(--forest-bright), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    transition: transform 0.3s ease; flex-shrink: 0;
  }
  .faq-accordion.open .faq-toggle { transform: rotate(45deg); }
  .faq-answer-body { display: none; padding: 0 16px 16px; }
  .faq-accordion.open .faq-answer-body { display: block; }
  .faq-answer-body p { font-size: 0.8rem; color: var(--linen-dim); line-height: 1.7; margin-bottom: 6px; }
  .faq-answer-body strong { color: var(--gold); }
  .faq-hl {
    border-left: 3px solid; border-radius: 0 8px 8px 0; padding: 12px 14px; margin: 10px 0;
  }
  .faq-hl p { margin-bottom: 3px; }

  /* ═══ GENERAL FAQ ═══ */
  .general-faq {
    background: linear-gradient(145deg, rgba(44,62,107,0.5), rgba(26,39,68,0.9));
    border: 1px solid rgba(212,175,55,0.15); border-radius: 20px; padding: 28px 24px;
    margin-top: 24px; margin-bottom: 36px; animation: fadeUp 0.7s ease-out 0.6s both;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  .general-faq-header { text-align: center; margin-bottom: 18px; }
  .general-faq-header h3 {
    font-family: 'Sora','Poppins',sans-serif; font-weight: 700; font-size: 1.15rem;
    background: linear-gradient(135deg, var(--forest), var(--gold), var(--forest-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px;
  }
  .general-faq-header p { font-size: 0.8rem; color: var(--text-grey); }
  .general-faq .faq-accordion { background: rgba(255,255,255,0.04); border-color: rgba(212,175,55,0.1); }
  .general-faq .faq-accordion:hover, .general-faq .faq-accordion.open { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
  .general-faq .faq-question-btn:hover { color: #dfc06a; }
  .general-faq .faq-hl { background: rgba(201,168,76,0.04); border-image: linear-gradient(180deg, var(--gold), var(--forest)) 1; }
  .faq-cta-btn {
    display: inline-block; margin-top: 10px; padding: 10px 22px;
    font-family: 'Sora','Poppins',sans-serif; font-weight: 700; font-size: 0.78rem;
    text-decoration: none; border-radius: 10px;
    background: linear-gradient(135deg, var(--forest), var(--forest-bright));
    color: var(--white); transition: all 0.3s ease; box-shadow: 0 3px 16px rgba(0,0,0,0.2);
  }
  .faq-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

  /* ═══ FOOTER ═══ */
  .footer { text-align: center; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(212,175,55,0.15); animation: fadeUp 0.7s ease-out 0.7s both; }
  .footer p { font-size: 0.78rem; color: var(--text-grey); letter-spacing: 1px; }
  .footer .brand-foot {
    font-family: 'Sora','Poppins',sans-serif; font-weight: 700;
    background: linear-gradient(135deg, var(--forest-bright), var(--gold), var(--forest));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  @keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* ═══ INLINE QA ═══ */
  .inline-qa { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(212,175,55,0.1); max-width: 440px; margin-left: auto; margin-right: auto; }
  .general-faq .inline-qa { max-width: 100%; }
  .inline-qa-label {
    font-family: 'Sora','Poppins',sans-serif; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    text-align: center; margin-bottom: 12px;
  }
  .general-faq .inline-qa-label { background: linear-gradient(90deg, var(--forest), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .inline-qa-input-wrap { display: flex; gap: 8px; align-items: center; }
  .inline-qa-input {
    flex: 1; font-family: 'DM Sans',sans-serif; font-size: 0.8rem; padding: 12px 16px;
    border-radius: 12px; border: 1.5px solid rgba(212,175,55,0.2);
    background: rgba(255,255,255,0.06); color: #ffffff; outline: none;
    transition: all 0.3s ease; caret-color: var(--gold);
  }
  .inline-qa-input::placeholder { color: var(--text-placeholder); }
  .inline-qa-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(201,168,76,0.12), 0 0 20px rgba(201,168,76,0.06); }
  .inline-qa-send {
    font-family: 'Sora','Poppins',sans-serif; font-weight: 700; font-size: 0.78rem;
    padding: 12px 22px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, var(--forest), var(--forest-bright));
    color: var(--white); cursor: pointer; transition: all 0.3s ease;
    white-space: nowrap; box-shadow: 0 3px 16px rgba(0,0,0,0.2);
  }
  .inline-qa-send:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
  .inline-qa-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
  .inline-qa-response { margin-top: 12px; display: none; }
  .inline-qa-response.visible { display: block; animation: fadeUp 0.5s ease-out; }
  .inline-qa-bubble {
    background: var(--off-white); border: 1px solid rgba(212,175,55,0.1);
    border-left: 3px solid; border-image: linear-gradient(180deg, var(--forest-bright), var(--gold)) 1;
    border-radius: 0 12px 12px 0; padding: 14px 16px; font-size: 0.8rem;
    color: var(--text-white); line-height: 1.7;
  }
  .inline-qa-bubble strong { color: var(--gold); }
  .inline-qa-bubble p { margin: 0 0 8px; }
  .inline-qa-bubble p:last-child { margin-bottom: 0; }
  .inline-qa-bubble a {
    color: var(--white); text-decoration: none; display: inline-block;
    padding: 8px 18px; margin: 6px 4px 4px 0; border-radius: 10px;
    background: linear-gradient(135deg, var(--forest), var(--forest-bright));
    font-family: 'Sora','Poppins',sans-serif; font-weight: 700; font-size: 0.78rem;
    transition: all 0.3s ease; box-shadow: 0 3px 12px rgba(0,0,0,0.2); letter-spacing: 0.3px;
  }
  .inline-qa-bubble a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
  .inline-qa-typing {
    display: flex; gap: 5px; padding: 12px 16px; align-items: center;
    background: var(--off-white); border: 1px solid rgba(212,175,55,0.1);
    border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0;
  }
  .inline-qa-typing span { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--forest-bright), var(--gold)); animation: iqTyping 1.4s ease-in-out infinite; }
  .inline-qa-typing span:nth-child(2) { animation-delay: 0.15s; }
  .inline-qa-typing span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes iqTyping { 0%,60%,100% { transform: translateY(0) scale(0.85); opacity: 0.25; } 30% { transform: translateY(-8px) scale(1); opacity: 1; } }

  /* ═══ RESPONSIVE ═══ */
  @media (max-width: 480px) {
    .page-wrapper { padding: 30px 12px 50px; }
    .service-card { padding: 26px 18px 24px; }
    .card-title { font-size: 1.2rem; }
    .price-amount { font-size: 1.75rem; }
    .brand-logo { max-width: 220px; }
    .deal-banner { padding: 24px 18px; }
    .deal-banner h3 { font-size: 1.1rem; }
    .faq-question-btn { font-size: 0.8rem; padding: 14px 12px; }
    .general-faq { padding: 24px 18px; }
    .orb { opacity: 0.04; }
  }

  /* ═══ INQUIRY FORM STYLES ═══ */
  .inquiry-card {
    background: linear-gradient(145deg, var(--inquiry-bg-start), var(--inquiry-bg-end));
    border: 1px solid var(--inquiry-border);
    border-radius: 20px;
    padding: 32px 24px;
    margin-bottom: 28px;
    box-shadow: 0 0 35px var(--inquiry-glow), 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .inquiry-card:hover {
    border-color: var(--inquiry-border-hover);
    box-shadow: 0 0 50px var(--inquiry-glow-hover), 0 24px 60px rgba(0,0,0,0.2);
    transform: translateY(-3px);
  }
  .form-title { 
    font-family: 'Sora', sans-serif; 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--forest); 
    text-align: center; 
    margin: 0 0 6px 0; 
    letter-spacing: 0.5px; 
  }
  .form-subtitle { 
    font-family: 'DM Sans', sans-serif; 
    font-size: 0.95rem; 
    color: var(--text-dim); 
    text-align: center; 
    margin: 0 0 28px 0; 
    line-height: 1.6; 
  }

  /* ─── STEPS ─── */
  .step { display: none; animation: fadeUp 0.4s ease-out; }
  .step.active { display: block; }

  /* ─── SERVICE CHECKBOXES ─── */
  .services-select-label { 
    display: block; 
    font-family: 'Sora', sans-serif; 
    font-size: 0.82rem; 
    font-weight: 600; 
    color: var(--forest); 
    margin-bottom: 12px; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
  }
  .services-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    margin-bottom: 24px; 
  }
  @media (max-width: 420px) { 
    .services-grid { grid-template-columns: 1fr; } 
  }
  .service-checkbox { display: none; }
  .service-checkbox-label {
    display: flex; 
    align-items: center; 
    gap: 10px; 
    padding: 14px 16px;
    background: rgba(255,255,255,0.06); 
    border: 1.5px solid var(--border-grey); 
    border-radius: 12px;
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; 
    color: var(--text-light); 
    user-select: none; 
    -webkit-tap-highlight-color: transparent;
  }
  .service-checkbox-label:hover { 
    border-color: var(--border-grey-hover); 
    background: var(--gold-hover); 
  }
  .service-checkbox:checked + .service-checkbox-label {
    border-color: var(--gold); 
    background: var(--gold-select); 
    color: var(--forest);
    box-shadow: 0 0 16px var(--gold-shadow-light), 0 0 0 2px var(--gold-select-border);
  }
  .svc-icon { 
    font-size: 1.3rem; 
    flex-shrink: 0; 
    width: 28px; 
    text-align: center; 
  }
  .svc-check { 
    width: 20px; 
    height: 20px; 
    border-radius: 6px; 
    border: 2px solid var(--checkbox-border); 
    flex-shrink: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.25s ease; 
    margin-left: auto; 
  }
  .svc-check::after { 
    content: ''; 
    width: 10px; 
    height: 10px; 
    border-radius: 3px; 
    background: transparent; 
    transition: all 0.25s ease; 
  }
  .service-checkbox:checked + .service-checkbox-label .svc-check { 
    border-color: var(--gold); 
    background: var(--gold-select-border); 
  }
  .service-checkbox:checked + .service-checkbox-label .svc-check::after { 
    background: var(--gold); 
  }

  /* ─── DELIVERY CHOICE BUTTONS ─── */
  .delivery-section { margin-top: 8px; }
  .delivery-label { 
    display: block; 
    font-family: 'Sora', sans-serif; 
    font-size: 0.82rem; 
    font-weight: 600; 
    color: var(--forest); 
    margin-bottom: 12px; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
  }
  .delivery-options { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px; 
  }
  .delivery-btn {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    padding: 20px 16px;
    background: rgba(255,255,255,0.06); 
    border: 2px solid var(--border-grey); 
    border-radius: 14px;
    cursor: pointer; 
    transition: all 0.3s ease; 
    text-align: center;
  }
  .delivery-btn:hover { 
    border-color: var(--inquiry-border-hover); 
    background: var(--gold-hover); 
    transform: translateY(-2px); 
  }
  .delivery-btn.selected { 
    border-color: var(--gold); 
    background: var(--gold-select); 
    box-shadow: 0 0 20px var(--gold-shadow-med); 
  }
  .delivery-btn-icon { font-size: 1.8rem; }
  .delivery-btn-title { 
    font-family: 'Sora', sans-serif; 
    font-size: 0.9rem; 
    font-weight: 700; 
    color: var(--forest); 
  }
  .delivery-btn-desc { 
    font-size: 0.78rem; 
    color: var(--text-faint); 
    line-height: 1.4; 
  }

  .next-btn, .back-btn {
    display: inline-block; 
    padding: 14px 28px; 
    border: none; 
    border-radius: 12px;
    font-family: 'Sora', sans-serif; 
    font-size: 0.95rem; 
    font-weight: 700;
    letter-spacing: 0.5px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    margin-top: 20px;
  }
  .next-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--forest); 
    box-shadow: 0 4px 20px var(--gold-glow); 
    width: 100%;
  }
  .next-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px var(--gold-glow-strong); 
  }
  .next-btn:disabled { 
    opacity: 0.4; 
    cursor: not-allowed; 
    transform: none; 
  }
  .back-btn {
    background: transparent; 
    border: 1px solid var(--checkbox-border); 
    color: var(--text-very-faint);
    font-size: 0.8rem; 
    padding: 10px 20px; 
    margin-top: 14px; 
    margin-right: 10px;
  }
  .back-btn:hover { 
    border-color: var(--border-grey-hover); 
    color: var(--forest); 
  }

  /* ─── FORM FIELDS ─── */
  .form-group { margin-bottom: 20px; }
  .form-group label { 
    display: block; 
    font-family: 'Sora', sans-serif; 
    font-size: 0.82rem; 
    font-weight: 600; 
    color: var(--forest); 
    margin-bottom: 8px; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
  }
  .form-group input, .form-group textarea {
    width: 100%; 
    padding: 14px 16px; 
    background: rgba(255,255,255,0.06); 
    border: 1.5px solid var(--border-grey);
    border-radius: 10px; 
    color: var(--text-white); 
    font-family: 'DM Sans', sans-serif; 
    font-size: 0.95rem;
    transition: all 0.3s ease; 
    outline: none; 
    -webkit-appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus { 
    border-color: var(--gold); 
    box-shadow: 0 0 0 3px var(--gold-focus), 0 0 20px var(--gold-focus-ring); 
  }
  .form-group input::placeholder, .form-group textarea::placeholder { 
    color: var(--text-placeholder); 
  }
  .form-group textarea { 
    min-height: 120px; 
    resize: vertical; 
    line-height: 1.6; 
  }
  .form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
  }
  @media (max-width: 500px) { 
    .form-row { grid-template-columns: 1fr; } 
  }
  .form-hint { 
    font-size: 0.78rem; 
    color: var(--text-placeholder); 
    margin-top: 6px; 
    line-height: 1.5; 
  }
  .submit-btn {
    display: block; 
    width: 100%; 
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--forest); 
    border: none; 
    border-radius: 12px; 
    font-family: 'Sora', sans-serif;
    font-size: 1rem; 
    font-weight: 700; 
    letter-spacing: 0.5px; 
    cursor: pointer;
    transition: all 0.3s ease; 
    box-shadow: 0 4px 20px var(--gold-glow); 
    margin-top: 8px;
  }
  .submit-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px var(--gold-glow-strong); 
  }
  .submit-btn:disabled { 
    opacity: 0.6; 
    cursor: not-allowed; 
    transform: none; 
  }

  /* ─── RESPONSE / RESULTS ─── */
  .form-response { 
    display: none; 
    margin-top: 20px; 
    padding: 20px; 
    border-radius: 12px; 
    font-family: 'DM Sans', sans-serif; 
    font-size: 0.95rem; 
    line-height: 1.7; 
    text-align: center; 
    animation: fadeUp 0.4s ease-out; 
  }
  .form-response.success { 
    display: block; 
    background: var(--success-bg); 
    border: 1px solid var(--success-border); 
    color: var(--forest); 
  }
  .form-response.error { 
    display: block; 
    background: var(--error-bg); 
    border: 1px solid var(--error-border); 
    color: var(--error-text); 
  }
  .success-message-title {
    font-size: 1.1rem;
  }
  .success-message-subtitle {
    color: var(--text-email-dim);
  }
  .error-email-link {
    color: var(--gold);
  }

  #resultsArea { 
    display: none; 
    margin-top: 28px; 
    animation: fadeUp 0.5s ease-out; 
  }
  #resultsArea.visible { display: block; }
  .results-header { 
    font-family: 'Sora', sans-serif; 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: var(--forest); 
    text-align: center; 
    margin: 0 0 18px 0; 
  }
  .result-card {
    background: var(--black-bg-result); 
    border: 1px solid var(--border-grey); 
    border-radius: 14px;
    padding: 20px; 
    margin-bottom: 14px; 
    animation: fadeUp 0.4s ease-out; 
    animation-fill-mode: both;
  }
  .result-card:nth-child(2) { animation-delay: 0.08s; }
  .result-card:nth-child(3) { animation-delay: 0.16s; }
  .result-card:nth-child(4) { animation-delay: 0.24s; }
  .result-card:nth-child(5) { animation-delay: 0.32s; }
  .result-card:nth-child(6) { animation-delay: 0.40s; }
  .result-card-title { 
    font-family: 'Sora', sans-serif; 
    font-size: 1rem; 
    font-weight: 700; 
    color: var(--gold); 
    margin: 0 0 12px 0; 
  }
  .result-qa { 
    margin-bottom: 14px; 
    padding-bottom: 14px; 
    border-bottom: 1px solid var(--result-border); 
  }
  .result-qa:last-child { 
    border-bottom: none; 
    margin-bottom: 0; 
    padding-bottom: 0; 
  }
  .result-qa-q { 
    font-family: 'Sora', sans-serif; 
    font-size: 0.82rem; 
    font-weight: 600; 
    color: var(--forest); 
    margin: 0 0 6px 0; 
  }
  .result-qa-a { 
    font-size: 0.88rem; 
    color: var(--text-qa); 
    line-height: 1.7; 
  }
  .result-qa-a a { 
    color: var(--gold); 
    text-decoration: underline; 
  }

  .results-cta { 
    text-align: center; 
    margin-top: 20px; 
  }
  .results-cta-text { 
    font-family: 'DM Sans', sans-serif; 
    font-size: 0.9rem; 
    color: var(--text-very-faint); 
    margin-bottom: 12px; 
  }

  /* Spinner */
  .spinner { 
    display: inline-block; 
    width: 18px; 
    height: 18px; 
    border: 2px solid var(--spinner-border); 
    border-top-color: transparent; 
    border-radius: 50%; 
    animation: spin 0.7s linear infinite; 
    vertical-align: middle; 
    margin-right: 8px; 
  }
  .spinner-light { 
    border-color: var(--spinner-light); 
    border-top-color: transparent; 
  }
  @keyframes spin { 
    to { transform: rotate(360deg); } 
  }
  .success-icon { 
    font-size: 2.5rem; 
    margin-bottom: 12px; 
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
  }
  @keyframes popIn { 
    0% { transform: scale(0); opacity: 0; } 
    100% { transform: scale(1); opacity: 1; } 
  }

  /* Loading overlay for screen results */
  .loading-indicator { 
    text-align: center; 
    padding: 30px 0; 
    color: var(--text-loading); 
    font-family: 'DM Sans', sans-serif; 
    font-size: 0.9rem; 
  }
  .loading-indicator .spinner-light { 
    width: 24px; 
    height: 24px; 
    margin-right: 0; 
    margin-bottom: 12px; 
  }

  /* Link Button Styling */
  .link-button-wrapper {
    text-align: center;
    margin: 12px 0;
  }
  .link-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--forest) !important;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px var(--gold-glow);
  }
  .link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--gold-glow-strong);
    color: var(--forest) !important;
  }
  .link-button::before {
    content: "🔗 ";
    margin-right: 6px;
  }

  /* Welcome Box */
  .welcome-box {
    max-width: 820px;
    margin: 0 auto 24px auto;
    text-align: center;
    padding: 20px 24px;
    background: rgba(212,175,55,0.06);
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.12);
  }
  .welcome-text {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
  }
  .welcome-strong {
    color: var(--forest);
  }

  /* Label Wrapper */
  .label-wrapper {
    text-align: center;
  }

  /* Step Error */
  .step-error {
    display: none;
    margin-top: 12px;
    text-align: center;
    color: var(--error-text);
    font-size: 0.88rem;
  }

  /* Services Preview */
  .services-preview-container {
    margin-top: 14px;
  }
  .services-preview-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  .service-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-select);
    border: 1px solid var(--success-border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--forest);
    font-family: 'DM Sans', sans-serif;
  }

  /* Results CTA hidden by default */
  #resultsCta {
    display: none;
  }

  /* Email CTA Button */
  .email-cta-btn {
    width: auto;
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--forest);
    border: none;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--gold-glow);
    margin-top: 20px;
  }
  .email-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow-strong);
  }

  /* Availability Link */
  .availability-link-wrapper {
    text-align: center;
    margin: 10px 0 30px 0;
  }
  .availability-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold-select);
    border: 1px solid var(--inquiry-border);
    border-radius: 10px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .availability-link:hover {
    transform: translateY(-2px);
    background: var(--gold-hover);
    border-color: var(--inquiry-border-hover);
    box-shadow: 0 4px 16px var(--gold-shadow-light);
  }
