  :root {
    --bg-deep: #050303;
    /* Forest Green + Terracotta + Linen */
    --forest: #2d6a4f;
    --forest-bright: #40916c;
    --forest-light: #52b788;
    --terra: #c07850;
    --terra-bright: #d4956e;
    --terra-dim: #a86540;
    --linen: #faf0e6;
    --linen-dim: #e8ddd0;
    /* Charcoal + Dusty Blue + Blush */
    --charcoal: #36393f;
    --charcoal-light: #4a4e56;
    --dusty-blue: #7ea8c4;
    --dusty-blue-bright: #9dc1da;
    --dusty-blue-light: #b5d4e8;
    --blush: #e8bfbf;
    --blush-bright: #f0d0d0;
    --blush-dim: #c9a0a0;
    /* Shared */
    --white: #ffffff;
    --off-white: #f0ece4;
    --text-grey: #8a8880;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: var(--bg-deep);
    color: var(--white);
    font-family: 'DM Sans', 'Sora', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  /* ═══ 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:
      radial-gradient(ellipse 500px 400px at 15% 25%, rgba(45,106,79,0.2), transparent),
      radial-gradient(ellipse 450px 350px at 80% 15%, rgba(126,168,196,0.15), transparent),
      radial-gradient(ellipse 500px 450px at 50% 75%, rgba(192,120,80,0.12), transparent),
      radial-gradient(ellipse 400px 350px at 85% 65%, rgba(232,191,191,0.1), transparent);
    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; }
  .orb-1 { width: 280px; height: 280px; background: var(--forest); opacity: 0.25; top: 8%; left: -4%; animation: orbFloat1 20s ease-in-out infinite; }
  .orb-2 { width: 220px; height: 220px; background: var(--dusty-blue); opacity: 0.2; top: 35%; right: -6%; animation: orbFloat2 24s ease-in-out infinite; }
  .orb-3 { width: 200px; height: 200px; background: var(--terra); opacity: 0.15; 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 {
    content: ''; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0;
  }

  /* ═══ 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: 260px; width: 80%; height: auto; margin-bottom: 12px; }
  .header .subtitle { font-family: 'Sora', sans-serif; font-size: 0.85rem; color: var(--linen-dim); letter-spacing: 4px; text-transform: uppercase; font-weight: 500; }
  .divider {
    width: 90px; height: 3px;
    background: linear-gradient(90deg, var(--forest-bright), var(--terra), var(--dusty-blue), var(--blush));
    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(24px); -webkit-backdrop-filter: blur(24px);
  }
  .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: FOREST GREEN + TERRACOTTA + LINEN ═══ */
  .style-a {
    background: linear-gradient(145deg, rgba(45,106,79,0.1), rgba(12,14,20,0.88));
    border: 1px solid rgba(255,255,0,0.25);
    box-shadow:
      0 0 35px rgba(255,255,0,0.15),
      0 0 70px rgba(255,255,0,0.08),
      0 0 120px rgba(255,255,0,0.04),
      0 8px 32px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .style-a:hover {
    border-color: rgba(255,255,0,0.55);
    box-shadow:
      0 0 50px rgba(255,255,0,0.25),
      0 0 100px rgba(255,255,0,0.12),
      0 0 150px rgba(255,255,0,0.06),
      0 24px 60px rgba(255,255,0,0.15);
    transform: translateY(-6px);
  }
  .style-a::before { background: linear-gradient(90deg, var(--forest), var(--terra), var(--forest-bright)); }
  .style-a .card-icon-wrap { background: rgba(45,106,79,0.15); border: 2px solid rgba(64,145,108,0.3); box-shadow: 0 0 24px rgba(45,106,79,0.2); }
  .style-a .card-title { color: var(--linen); }
  .style-a .card-desc { color: var(--linen-dim); }
  .style-a .price-amount { color: #FFD700; -webkit-text-fill-color: #FFD700; }
  .style-a .includes-list { border-top: 1px solid rgba(192,120,80,0.15); }
  .style-a .includes-list li { color: var(--off-white); }
  .style-a .includes-list li::before { color: #FFD700; }
  .style-a .card-btn { background: linear-gradient(135deg, var(--forest), var(--forest-bright)); color: var(--linen); box-shadow: 0 4px 24px rgba(45,106,79,0.35); }
  .style-a .card-btn:hover { box-shadow: 0 8px 40px rgba(45,106,79,0.55); }
  .style-a .card-faqs { border-top-color: rgba(192,120,80,0.12); }
  .style-a .card-faqs-label { background: linear-gradient(90deg, var(--forest-bright), var(--terra)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .style-a .faq-accordion { background: rgba(45,106,79,0.06); border-color: rgba(45,106,79,0.12); }
  .style-a .faq-accordion:hover, .style-a .faq-accordion.open { border-color: rgba(64,145,108,0.35); background: rgba(45,106,79,0.12); }
  .style-a .faq-question-btn:hover { color: var(--terra-bright); }
  .style-a .faq-hl { background: rgba(192,120,80,0.05); border-image: linear-gradient(180deg, var(--forest-bright), var(--terra)) 1; }
  .style-a .inline-qa { border-top-color: rgba(192,120,80,0.12); }
  .style-a .inline-qa-label { background: linear-gradient(90deg, var(--forest-bright), var(--terra)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

  /* ═══ EVERY OTHER CARD: SILVER GLOW ═══ */
  .service-card:nth-child(even) {
    border-color: rgba(192,192,192,0.25);
    box-shadow:
      0 0 35px rgba(192,192,192,0.15),
      0 0 70px rgba(192,192,192,0.08),
      0 0 120px rgba(192,192,192,0.04),
      0 8px 32px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .service-card:nth-child(even):hover {
    border-color: rgba(192,192,192,0.55);
    box-shadow:
      0 0 50px rgba(192,192,192,0.25),
      0 0 100px rgba(192,192,192,0.12),
      0 0 150px rgba(192,192,192,0.06),
      0 24px 60px rgba(192,192,192,0.15);
  }

  /* ═══ STYLE-B: CHARCOAL + DUSTY BLUE + BLUSH ═══ */
  .style-b {
    background: linear-gradient(145deg, rgba(126,168,196,0.08), rgba(12,14,20,0.88));
    border: 1px solid rgba(255,255,0,0.22);
    box-shadow:
      0 0 35px rgba(255,255,0,0.12),
      0 0 70px rgba(255,255,0,0.06),
      0 0 120px rgba(255,255,0,0.04),
      0 8px 32px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .style-b:hover {
    border-color: rgba(255,255,0,0.5);
    box-shadow:
      0 0 50px rgba(255,255,0,0.2),
      0 0 100px rgba(255,255,0,0.1),
      0 0 150px rgba(255,255,0,0.06),
      0 24px 60px rgba(255,255,0,0.12);
    transform: translateY(-6px);
  }
  .style-b::before { background: linear-gradient(90deg, var(--dusty-blue), var(--blush), var(--dusty-blue-bright)); }
  .style-b .card-icon-wrap { background: rgba(126,168,196,0.12); border: 2px solid rgba(157,193,218,0.3); box-shadow: 0 0 24px rgba(126,168,196,0.18); }
  .style-b .card-title { color: var(--dusty-blue-light); }
  .style-b .card-desc { color: rgba(181,212,232,0.7); }
  .style-b .price-amount { color: #FFD700; -webkit-text-fill-color: #FFD700; }
  .style-b .includes-list { border-top: 1px solid rgba(232,191,191,0.12); }
  .style-b .includes-list li { color: var(--off-white); }
  .style-b .includes-list li::before { color: #FFD700; }
  .style-b .card-btn { background: linear-gradient(135deg, var(--dusty-blue), var(--dusty-blue-bright)); color: #111; box-shadow: 0 4px 24px rgba(126,168,196,0.3); }
  .style-b .card-btn:hover { box-shadow: 0 8px 40px rgba(126,168,196,0.5); }
  .style-b .card-faqs { border-top-color: rgba(232,191,191,0.12); }
  .style-b .card-faqs-label { background: linear-gradient(90deg, var(--dusty-blue-bright), var(--blush)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .style-b .faq-accordion { background: rgba(126,168,196,0.05); border-color: rgba(126,168,196,0.1); }
  .style-b .faq-accordion:hover, .style-b .faq-accordion.open { border-color: rgba(157,193,218,0.3); background: rgba(126,168,196,0.1); }
  .style-b .faq-question-btn:hover { color: var(--blush-bright); }
  .style-b .faq-hl { background: rgba(232,191,191,0.05); border-image: linear-gradient(180deg, var(--dusty-blue), var(--blush)) 1; }
  .style-b .inline-qa { border-top-color: rgba(232,191,191,0.1); }
  .style-b .inline-qa-label { background: linear-gradient(90deg, var(--dusty-blue-bright), var(--blush)); -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.35rem; margin-bottom: 8px; letter-spacing: -0.3px; }
  .card-desc { font-size: 0.9rem; 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: 2.2rem; 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.85rem; 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(45,106,79,0.06), rgba(126,168,196,0.04), rgba(12,14,20,0.88));
    border: 1px solid rgba(64,145,108,0.18); border-radius: 20px; padding: 32px 24px;
    text-align: center; position: relative; overflow: hidden;
    animation: fadeUp 0.7s ease-out 0.6s both;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 30px rgba(45,106,79,0.08), 0 0 60px rgba(126,168,196,0.04), 0 8px 32px rgba(0,0,0,0.3);
  }
  .deal-banner::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(192,120,80,0.04) 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(--forest-bright), var(--terra-bright), var(--dusty-blue-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px;
  }
  .deal-banner p { font-size: 0.9rem; color: var(--off-white); 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(255,255,255,0.06); 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(255,255,255,0.06);
  }
  .faq-question-btn {
    width: 100%; background: none; border: none; color: var(--off-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(--dusty-blue));
    -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.85rem; color: var(--off-white); line-height: 1.7; margin-bottom: 6px; }
  .faq-answer-body strong { color: var(--terra-bright); }
  .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(126,168,196,0.05), rgba(232,191,191,0.03), rgba(12,14,20,0.88));
    border: 1px solid rgba(126,168,196,0.15); border-radius: 20px; padding: 28px 24px;
    margin-top: 24px; margin-bottom: 36px; animation: fadeUp 0.7s ease-out 0.6s both;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 30px rgba(126,168,196,0.08), 0 0 60px rgba(232,191,191,0.03), 0 8px 32px rgba(0,0,0,0.3);
  }
  .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(--dusty-blue-bright), var(--blush), 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(126,168,196,0.04); border-color: rgba(126,168,196,0.08); }
  .general-faq .faq-accordion:hover, .general-faq .faq-accordion.open { border-color: rgba(157,193,218,0.25); }
  .general-faq .faq-question-btn:hover { color: var(--dusty-blue-bright); }
  .general-faq .faq-hl { background: rgba(126,168,196,0.04); border-image: linear-gradient(180deg, var(--dusty-blue), var(--blush)) 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(--linen); transition: all 0.3s ease; box-shadow: 0 3px 16px rgba(45,106,79,0.3);
  }
  .faq-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45,106,79,0.45); }

  /* ═══ FOOTER ═══ */
  .footer { text-align: center; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); 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(--terra), var(--dusty-blue-bright));
    -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(255,255,255,0.06); 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(--dusty-blue), var(--blush)); -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.85rem; padding: 12px 16px;
    border-radius: 12px; border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04); color: #fff; outline: none;
    transition: all 0.3s ease; caret-color: var(--forest-bright); backdrop-filter: blur(8px);
  }
  .inline-qa-input::placeholder { color: #555; }
  .inline-qa-input:focus { border-color: rgba(64,145,108,0.4); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 3px rgba(64,145,108,0.1), 0 0 20px rgba(64,145,108,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(--linen); cursor: pointer; transition: all 0.3s ease;
    white-space: nowrap; box-shadow: 0 3px 16px rgba(45,106,79,0.3);
  }
  .inline-qa-send:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45,106,79,0.45); }
  .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: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid; border-image: linear-gradient(180deg, var(--forest-bright), var(--terra)) 1;
    border-radius: 0 12px 12px 0; padding: 14px 16px; font-size: 0.85rem;
    color: var(--off-white); line-height: 1.7; backdrop-filter: blur(8px);
  }
  .inline-qa-bubble strong { color: var(--terra-bright); }
  .inline-qa-bubble p { margin: 0 0 8px; }
  .inline-qa-bubble p:last-child { margin-bottom: 0; }
  .inline-qa-bubble a {
    color: var(--linen); 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(45,106,79,0.25); letter-spacing: 0.3px;
  }
  .inline-qa-bubble a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,79,0.4); }
  .inline-qa-typing {
    display: flex; gap: 5px; padding: 12px 16px; align-items: center;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--forest-bright); 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(--terra)); 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.85rem; padding: 14px 12px; }
    .general-faq { padding: 24px 18px; }
    .orb { opacity: 0.12; }
  }
