
    :root {
      --bg-deep: #0a0418;
      --bg-purple: #1a0d3e;
      --bg-purple-mid: #2a1858;
      --bg-purple-bright: #3d1f7a;
      --bg-electric: #5b2ebf;
      --gold: #d4af37;
      --gold-bright: #f0c849;
      --gold-dark: #b8941f;
      --gold-soft: rgba(212, 175, 55, 0.1);
      --gold-border: rgba(212, 175, 55, 0.25);
      --glass-bg: rgba(91, 46, 191, 0.15);
      --glass-border: rgba(212, 175, 55, 0.2);
      --text-primary: #f5e9d4;
      --text-secondary: #d8c5e8;
      --text-muted: #9d83be;
      --text-faint: #6b5481;
      --font-display: 'Cormorant Garamond', serif;
      --font-script: 'Cormorant', serif;
      --font-body: 'Inter', sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg-purple);
      color: var(--text-secondary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

    /* The signature swash serif headings */
    .display, h1, h2, h3 {
      font-family: var(--font-display);
      font-weight: 500;
      font-style: italic;
      font-feature-settings: "swsh" 1, "salt" 1, "ss01" 1;
      letter-spacing: 0.02em;
    }

    /* Top utility bar */
    .topbar {
      background: rgba(10, 4, 24, 0.8);
      padding: 8px 0;
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 1.5px;
      border-bottom: 0.5px solid var(--gold-border);
      position: relative;
      z-index: 50;
    }
    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* Nav */
    .nav {
      background: rgba(26, 13, 62, 0.7);
      backdrop-filter: blur(20px);
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.15);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 18px;
      padding-bottom: 18px;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand img { width: 46px; height: 46px; object-fit: contain; }
    .brand-icon {
      width: 52px !important;
      height: 52px !important;
      object-fit: contain;
      flex-shrink: 0;
      filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.3));
      transition: transform 0.2s;
    }
    .brand:hover .brand-icon { transform: scale(1.08) rotate(-5deg); }

    /* WORDMARK LOGO — RISHI (gold) + DISHA (white) */
    .brand-wordmark {
      display: inline-flex;
      align-items: baseline;
      font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
      font-weight: 700;
      font-style: normal;
      font-size: 38px;
      letter-spacing: 0.04em;
      line-height: 1;
      transition: transform 0.2s, filter 0.2s;
      filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
    }
    .brand-wordmark:hover {
      transform: scale(1.04);
      filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.45));
    }
    .brand-rishi {
      color: #f0c849;
      background: linear-gradient(180deg, #f5d970 0%, #d4af37 60%, #b8941f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .brand-disha {
      color: #f5e9d4;
      margin-left: 0.08em;
    }

    /* Footer wordmark — slightly smaller */
    .footer-wordmark {
      font-size: 26px;
    }

    .brand-text {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 500;
      font-style: italic;
      color: var(--gold);
      letter-spacing: 2px;
      font-feature-settings: "swsh" 1;
    }
    .brand-tagline {
      font-size: 9px;
      color: var(--text-muted);
      letter-spacing: 2px;
      margin-top: 2px;
      font-style: normal;
      font-family: var(--font-body);
    }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
      list-style: none;
      font-size: 13px;
      color: var(--text-secondary);
    }
    .nav-links a { transition: color 0.2s; }
    .nav-links a:hover { color: var(--gold); }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep) !important;
      padding: 10px 22px;
      border-radius: 999px;
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.5px;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
      cursor: pointer;
      border: none;
    }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4); }
    .btn-outline {
      background: rgba(212, 175, 55, 0.05);
      color: var(--gold);
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 13px;
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      transition: all 0.2s;
      display: inline-block;
      cursor: pointer;
    }
    .btn-outline:hover { background: rgba(212, 175, 55, 0.12); border-color: var(--gold); }
    .menu-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 24px; cursor: pointer; }

    /* HERO */
    .hero {
      padding: 90px 0 70px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(91, 46, 191, 0.6), transparent),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(61, 31, 122, 0.7), transparent),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-purple-mid) 100%);
    }
    /* Floating decorative star particles */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 12% 22%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 78% 18%, #fff 0.8px, transparent 0.8px),
        radial-gradient(circle at 32% 68%, var(--gold) 0.6px, transparent 0.6px),
        radial-gradient(circle at 88% 78%, #fff 0.6px, transparent 0.6px),
        radial-gradient(circle at 55% 45%, var(--gold) 0.5px, transparent 0.5px),
        radial-gradient(circle at 5% 50%, #fff 0.5px, transparent 0.5px);
      background-size: 240px 280px, 320px 280px, 200px 220px, 360px 280px, 180px 200px, 280px 320px;
      opacity: 0.5;
      pointer-events: none;
      animation: twinkle 8s ease-in-out infinite;
    }
    @keyframes twinkle { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.7; } }

    .hero .container {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 16px;
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 2px;
      margin-bottom: 28px;
    }
    .badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--gold);
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.05;
    }
    .hero h1 .gold-word {
      color: var(--gold);
      display: inline-block;
    }
    .hero-subtitle {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 28px;
      font-feature-settings: "swsh" 1;
    }
    .services-list-label {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 2px;
      margin-bottom: 14px;
    }
    .services-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 36px;
    }
    .services-list li {
      font-size: 14px;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .services-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    }
    .hero-cta { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
    .hero-stats {
      display: flex;
      gap: 36px;
      padding-top: 28px;
      border-top: 0.5px solid var(--gold-border);
    }
    .stat-num {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 28px;
      color: var(--gold);
      font-weight: 500;
      font-feature-settings: "swsh" 1;
    }
    .stat-label {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
      margin-top: 2px;
    }

    /* Hero portrait + chakra */
    .hero-portrait {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 700px;
    }
    .chakra-bg {
      position: absolute;
      width: min(640px, 105%);
      height: auto;
      max-height: 640px;
      opacity: 1;
      animation: rotate 100s linear infinite;
      pointer-events: none;
      z-index: 1;
      filter:
        drop-shadow(0 0 30px rgba(212, 175, 55, 0.5))
        drop-shadow(0 0 60px rgba(91, 46, 191, 0.4))
        saturate(1.2)
        brightness(1.05);
    }
    .chakra-glow {
      position: absolute;
      width: min(520px, 100%);
      height: min(520px, 100%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.25), rgba(91, 46, 191, 0.2) 35%, transparent 70%);
      animation: pulse 6s ease-in-out infinite;
    }
    .portrait-frame {
      position: relative;
      z-index: 2;
      width: min(380px, 80%);
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(212, 175, 55, 0.5);
      box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(212, 175, 55, 0.3);
    }
    .portrait-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      display: block;
    }
    .portrait-frame img {
      width: 100%;
      height: auto;
      display: block;
    }
    .portrait-frame::before { display: none; }
    .portrait-frame::after { display: none; }

    @keyframes rotate { to { transform: rotate(360deg); } }
    @keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }

    /* MARQUEE — scrolling tagline strip */
    .marquee {
      background: linear-gradient(90deg, transparent, var(--bg-purple-bright) 20%, var(--bg-purple-bright) 80%, transparent);
      border-top: 0.5px solid var(--gold-border);
      border-bottom: 0.5px solid var(--gold-border);
      overflow: hidden;
      position: relative;
      padding: 22px 0;
    }
    .marquee-track {
      display: flex;
      gap: 60px;
      width: max-content;
      animation: marquee 38s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 28px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      display: flex;
      align-items: center;
      gap: 60px;
    }
    .marquee-item::after {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      transform: rotate(45deg);
    }
    .marquee-item:last-child::after { display: none; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* Banner photo */
    .banner-section {
      padding: 64px 0;
      background: var(--bg-purple);
      position: relative;
    }
    .banner-frame {
      border-radius: 16px;
      overflow: hidden;
      border: 0.5px solid var(--gold-border);
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    .banner-frame img { width: 100%; }
    .banner-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 32px;
      background: linear-gradient(to top, rgba(10, 4, 24, 0.95), transparent);
      color: var(--gold);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 18px;
      letter-spacing: 1px;
      font-feature-settings: "swsh" 1;
    }

    /* Sections */
    .section { padding: 90px 0; position: relative; }
    .section-deep { background: var(--bg-deep); }

    .section-head {
      text-align: center;
      margin-bottom: 56px;
      position: relative;
      z-index: 2;
    }
    .section-eyebrow {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 4px;
      margin-bottom: 16px;
      font-family: var(--font-body);
      font-style: normal;
    }
    .section-title {
      font-size: clamp(32px, 4vw, 48px);
      color: var(--text-primary);
      margin-bottom: 16px;
    }
    .section-title .gold-word { color: var(--gold); }
    .section-lede {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Glass-morphism cards */
    .glass-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(20px);
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 32px 28px;
      transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
      position: relative;
      overflow: hidden;
    }
    .glass-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    }
    .glass-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 175, 55, 0.5);
      box-shadow: 0 20px 60px rgba(91, 46, 191, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
    }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.3), rgba(91, 46, 191, 0.2));
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .card-icon svg { width: 26px; height: 26px; }
    .card-title {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 12px;
      font-feature-settings: "swsh" 1;
    }
    .card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 18px;
    }
    .card-link {
      font-size: 12px;
      color: var(--gold);
      letter-spacing: 0.5px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .card-link:hover { gap: 10px; }

    /* Stats cards */
    .stat-card {
      text-align: center;
      padding: 36px 18px;
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.15), rgba(26, 13, 62, 0.3));
      backdrop-filter: blur(10px);
      border: 0.5px solid var(--gold-border);
      border-radius: 16px;
      position: relative;
      overflow: hidden;
    }
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .stat-card .big {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 44px;
      color: var(--gold);
      font-weight: 500;
      line-height: 1;
      font-feature-settings: "swsh" 1;
    }
    .stat-card .title { font-size: 13px; color: var(--text-primary); margin-top: 14px; font-weight: 500; }
    .stat-card .sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

    /* PRICING */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .price-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(20px);
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      transition: transform 0.3s, border-color 0.3s;
    }
    .price-card.featured {
      border: 1px solid var(--gold);
      box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
      transform: translateY(-8px);
    }
    .price-card:hover { border-color: rgba(212, 175, 55, 0.5); }
    .price-tag {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      font-size: 10px;
      letter-spacing: 1.5px;
      padding: 5px 14px;
      border-radius: 999px;
      font-weight: 500;
    }
    .price-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--text-primary);
      margin-bottom: 6px;
      font-feature-settings: "swsh" 1;
    }
    .price-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 22px; letter-spacing: 0.5px; }
    .price-amount {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 56px;
      color: var(--gold);
      font-weight: 500;
      line-height: 1;
      margin-bottom: 4px;
      font-feature-settings: "swsh" 1;
    }
    .price-amount sup { font-size: 22px; vertical-align: super; }
    .price-period { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
    .price-features {
      list-style: none;
      margin-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .price-features li {
      font-size: 13px;
      color: var(--text-secondary);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }
    .price-features li::before {
      content: '';
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      border-radius: 50%;
      background: var(--gold-soft);
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8 L7 11 L12 5' stroke='%23d4af37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-size: 12px;
      background-position: center;
      background-repeat: no-repeat;
    }
    .price-cta {
      display: block;
      text-align: center;
      width: 100%;
      padding: 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }
    .price-cta.primary {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
    }
    .price-cta.primary:hover { box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4); }
    .price-cta.secondary {
      background: rgba(212, 175, 55, 0.05);
      color: var(--gold);
      border: 0.5px solid var(--gold-border);
    }
    .price-cta.secondary:hover { background: rgba(212, 175, 55, 0.12); }

    /* WHY US split layout with cosmic illustration */
    .split-section { padding: 90px 0; position: relative; overflow: hidden; }
    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .split-text .section-eyebrow { text-align: left; }
    .split-text .section-title { text-align: left; font-size: clamp(28px, 3.5vw, 40px); }
    .split-text p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.85;
      margin-bottom: 18px;
    }
    .cosmic-illust {
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
    }

    /* Testimonials */
    .testimonial {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(20px);
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 32px 28px;
      position: relative;
    }
    .testimonial::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    }
    .quote-mark {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 64px;
      color: var(--gold);
      line-height: 0.4;
      margin-bottom: 16px;
      font-feature-settings: "swsh" 1;
    }
    .testimonial-text {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .testimonial-meta { border-top: 0.5px solid rgba(212, 175, 55, 0.2); padding-top: 16px; }
    .testimonial-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      color: var(--gold);
      font-weight: 500;
      font-feature-settings: "swsh" 1;
    }
    .testimonial-loc { font-size: 11px; color: var(--text-muted); margin-top: 3px; letter-spacing: 0.5px; }

    /* Hyderabad localities */
    .locality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
    .locality {
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      padding: 14px;
      text-align: center;
      font-size: 13px;
      color: var(--text-secondary);
      transition: all 0.2s;
    }
    .locality:hover { background: rgba(212, 175, 55, 0.15); color: var(--gold); border-color: var(--gold); }

    /* Final CTA */
    .final-cta {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(91, 46, 191, 0.6), transparent),
        linear-gradient(180deg, var(--bg-purple-mid), var(--bg-deep));
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, #fff 0.8px, transparent 0.8px),
        radial-gradient(circle at 60% 20%, var(--gold) 0.8px, transparent 0.8px);
      background-size: 280px 280px, 320px 320px, 240px 240px;
      opacity: 0.4;
      pointer-events: none;
    }
    .final-cta .container { position: relative; z-index: 2; }
    .final-cta h2 {
      font-size: clamp(32px, 5vw, 56px);
      color: var(--text-primary);
      margin-bottom: 20px;
    }
    .final-cta h2 .gold-word { color: var(--gold); }
    .final-cta p {
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
    .final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* Footer */
    footer {
      padding: 56px 0 28px;
      background: var(--bg-deep);
      border-top: 0.5px solid var(--gold-border);
    }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
    .footer-brand img { width: 36px; height: 36px; object-fit: contain; }
    .footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .footer-text { font-size: 12px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
    .footer-stars { font-size: 12px; color: var(--gold); letter-spacing: 1.5px; }
    .footer-heading {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 1.5px;
      margin-bottom: 16px;
      font-weight: 500;
    }
    .footer-list { list-style: none; font-size: 12px; color: var(--text-muted); }
    .footer-list li { padding: 5px 0; }
    .footer-list a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 0.5px solid rgba(212, 175, 55, 0.15);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-faint);
      letter-spacing: 1px;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-bottom .tagline {
      color: var(--gold);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 13px;
      font-feature-settings: "swsh" 1;
      letter-spacing: 0.5px;
    }

    /* WhatsApp float */
    .whatsapp-float {
      position: fixed;
      bottom: 26px;
      right: 26px;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
      z-index: 99;
      transition: transform 0.2s;
    }
    .whatsapp-float:hover { transform: scale(1.08); }

    @media (max-width: 900px) {
      .menu-toggle { display: block; }
      .brand-wordmark { font-size: 28px; }
      .footer-wordmark { font-size: 22px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-purple);
        padding: 24px 32px;
        gap: 18px;
        border-bottom: 0.5px solid var(--gold-border);
      }
      .hero .container { grid-template-columns: 1fr; gap: 40px; }
      .hero-portrait { min-height: auto; order: -1; }
      .portrait-frame { width: 100%; max-width: 480px; }
      .grid-3, .pricing-grid { grid-template-columns: 1fr; }
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .locality-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .split-grid { grid-template-columns: 1fr; gap: 40px; }
      .price-card.featured { transform: none; }
      .container { padding: 0 20px; }
      .section, .hero, .split-section, .final-cta { padding: 60px 0; }
      .marquee-item { font-size: 22px; }
    }

    @media (max-width: 500px) {
      .hero-stats { gap: 20px; flex-wrap: wrap; }
      .footer-grid { grid-template-columns: 1fr; }
      .portrait-frame { width: 100%; max-width: 360px; }
      .brand-wordmark { font-size: 24px; letter-spacing: 0.03em; }
    }
  
    /* GLOBE SECTION */
    .globe-section { padding: 90px 0; position: relative; overflow: hidden; }
    .globe-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 24px;
    }
    .globe-stage {
      position: relative;
      width: 100%;
      aspect-ratio: 1;
      max-width: 500px;
      margin: 0 auto;
    }
    .orbit-deco {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      animation: rotate 60s linear infinite reverse;
    }
    .globe-orb {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 78%;
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      background:
        radial-gradient(circle at 30% 30%, rgba(91, 46, 191, 0.4), transparent 70%),
        radial-gradient(circle at 50% 50%, #1a0d3e 0%, #0a0418 100%);
      box-shadow:
        inset 0 0 80px rgba(212, 175, 55, 0.15),
        inset -20px -20px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(91, 46, 191, 0.4),
        0 0 120px rgba(212, 175, 55, 0.15);
    }
    .globe-shading {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
      pointer-events: none;
      z-index: 4;
      border-radius: 50%;
    }
    .globe-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 3;
    }
    .globe-grid svg { width: 100%; height: 100%; display: block; }
    .globe-rotator {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 2;
      border-radius: 50%;
    }
    .globe-rotator svg {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
    }
    .globe-atmosphere {
      position: absolute;
      inset: -8%;
      border-radius: 50%;
      background: radial-gradient(circle, transparent 47%, rgba(212, 175, 55, 0.15) 50%, transparent 56%);
      pointer-events: none;
      z-index: 5;
    }
    @keyframes globe-spin {
      from { transform: translateX(0); }
      to { transform: translateX(-33.333%); }
    }
    .country-pin .pin-pulse {
      transform-origin: center;
      animation: pin-pulse 2s ease-in-out infinite;
    }
    @keyframes pin-pulse {
      0%, 100% { opacity: 0.6; transform: scale(1); transform-box: fill-box; transform-origin: center; }
      50% { opacity: 1; transform: scale(1.6); transform-box: fill-box; transform-origin: center; }
    }

    .country-list { display: flex; flex-direction: column; gap: 14px; }
    .country-card {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 22px;
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(10px);
      border: 0.5px solid var(--gold-border);
      border-radius: 16px;
      transition: all 0.3s;
    }
    .country-card:hover {
      border-color: rgba(212, 175, 55, 0.5);
      transform: translateX(6px);
    }
    .country-card.primary-country {
      border-color: rgba(212, 175, 55, 0.5);
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(91, 46, 191, 0.3));
    }
    .country-flag {
      font-size: 32px;
      line-height: 1;
      filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    }
    .country-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 20px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 2px;
    }
    .country-meta { font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px; }

    .locality-band {
      margin-top: 56px;
      padding: 24px 28px;
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.12), rgba(26, 13, 62, 0.3));
      backdrop-filter: blur(10px);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .locality-band-label {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 14px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
    }
    .locality-pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .locality-pill {
      font-size: 12px;
      color: var(--text-secondary);
      padding: 5px 12px;
      background: rgba(212, 175, 55, 0.06);
      border: 0.5px solid rgba(212, 175, 55, 0.2);
      border-radius: 999px;
      transition: all 0.2s;
    }
    .locality-pill:hover { background: rgba(212, 175, 55, 0.15); color: var(--gold); }

    @media (max-width: 900px) {
      .globe-wrapper { grid-template-columns: 1fr; gap: 40px; }
      .globe-stage { max-width: 360px; }
      .locality-band { flex-direction: column; border-radius: 24px; }
    }

  
    /* HOROSCOPE SECTION */
    .horoscope-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91, 46, 191, 0.4), transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 100%, rgba(138, 43, 226, 0.25), transparent 70%),
        linear-gradient(180deg, #120817 0%, #1a0d3e 100%);
    }
    /* Cosmic dust particles */
    .horoscope-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 8% 18%, rgba(219, 164, 82, 0.8) 1px, transparent 1.5px),
        radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.6) 0.8px, transparent 1.5px),
        radial-gradient(circle at 52% 22%, rgba(219, 164, 82, 0.7) 0.7px, transparent 1.5px),
        radial-gradient(circle at 78% 65%, rgba(255, 255, 255, 0.5) 0.6px, transparent 1.5px),
        radial-gradient(circle at 92% 38%, rgba(219, 164, 82, 0.6) 1px, transparent 1.5px),
        radial-gradient(circle at 14% 78%, rgba(255, 255, 255, 0.4) 0.8px, transparent 1.5px),
        radial-gradient(circle at 65% 88%, rgba(219, 164, 82, 0.5) 0.7px, transparent 1.5px);
      background-size: 320px 380px, 280px 320px, 360px 280px, 240px 280px, 380px 360px, 280px 340px, 320px 280px;
      opacity: 0.5;
      pointer-events: none;
      animation: cosmic-drift 60s ease-in-out infinite;
    }
    @keyframes cosmic-drift {
      0%, 100% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; opacity: 0.4; }
      50% { background-position: 20px 30px, -15px 20px, 30px -10px, -20px 15px, 25px 25px, -10px -15px, 15px -20px; opacity: 0.7; }
    }

    /* DOB selector */
    .dob-selector {
      display: flex;
      align-items: center;
      gap: 14px;
      justify-content: center;
      margin-bottom: 36px;
      padding: 18px 24px;
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(10px);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      flex-wrap: wrap;
    }
    .dob-selector label {
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
    }
    .dob-selector input[type="date"] {
      background: rgba(10, 4, 24, 0.6);
      border: 0.5px solid var(--gold-border);
      color: var(--text-primary);
      padding: 8px 14px;
      border-radius: 999px;
      font-family: var(--font-body);
      font-size: 13px;
      outline: none;
      color-scheme: dark;
      cursor: pointer;
    }
    .dob-selector input[type="date"]:focus { border-color: var(--gold); }
    .dob-selector .your-sign-result {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
    }

    /* Period tabs */
    .period-tabs {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-bottom: 48px;
      padding: 6px;
      background: rgba(10, 4, 24, 0.6);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      max-width: 360px;
      margin-left: auto;
      margin-right: auto;
    }
    .period-tab {
      flex: 1;
      padding: 10px 20px;
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 13px;
      letter-spacing: 1px;
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .period-tab:hover { color: var(--text-primary); }
    .period-tab.active {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      font-weight: 500;
    }

    /* Zodiac grid */
    .zodiac-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    /* ZODIAC CARD */
    .zodiac-card {
      background: rgba(18, 8, 23, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 28px 24px;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
      position: relative;
      overflow: hidden;
    }
    .zodiac-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(219, 164, 82, 0.4), transparent);
    }
    .zodiac-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 40px rgba(138, 43, 226, 0.35), 0 0 80px rgba(219, 164, 82, 0.1);
      border-color: rgba(219, 164, 82, 0.3);
    }
    .zodiac-card.user-sign {
      border-color: rgba(219, 164, 82, 0.6);
      box-shadow: 0 0 30px rgba(219, 164, 82, 0.25);
    }
    .zodiac-card.user-sign::after {
      content: 'YOUR SIGN';
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 9px;
      letter-spacing: 1.2px;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      padding: 3px 8px;
      border-radius: 999px;
      font-weight: 500;
    }

    /* Card top: symbol + constellation */
    .card-symbol-area {
      position: relative;
      height: 110px;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-constellation {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0.5;
      transition: opacity 0.4s;
    }
    .zodiac-card:hover .card-constellation { opacity: 0.9; }
    .card-constellation .star { animation: shimmer 3s ease-in-out infinite; }
    @keyframes shimmer {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }
    .card-symbol {
      font-size: 56px;
      color: var(--gold);
      line-height: 1;
      filter: drop-shadow(0 0 16px rgba(219, 164, 82, 0.6));
      position: relative;
      z-index: 2;
      transition: transform 0.6s ease;
    }
    .zodiac-card:hover .card-symbol {
      animation: gentle-rotate 8s linear infinite;
    }
    @keyframes gentle-rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .card-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 24px;
      color: #FBFBFB;
      text-align: center;
      font-feature-settings: "swsh" 1;
      margin-bottom: 4px;
    }
    .card-dates {
      text-align: center;
      font-size: 11px;
      color: #DBA452;
      letter-spacing: 1.2px;
      margin-bottom: 16px;
    }
    .card-preview {
      font-size: 13px;
      color: #D7D1E0;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 22px;
      min-height: 64px;
    }

    /* Energy meters — circular */
    .energy-meters {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-bottom: 22px;
    }
    .energy-meter {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .energy-ring {
      position: relative;
      width: 44px;
      height: 44px;
    }
    .energy-ring svg { transform: rotate(-90deg); }
    .energy-ring .ring-bg {
      fill: none;
      stroke: rgba(255, 255, 255, 0.08);
      stroke-width: 3;
    }
    .energy-ring .ring-fill {
      fill: none;
      stroke: url(#energyGradient);
      stroke-width: 3;
      stroke-linecap: round;
      stroke-dasharray: 119.4;
      transition: stroke-dashoffset 1s ease;
    }
    .energy-ring .ring-value {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 10px;
      color: #FBFBFB;
      font-weight: 500;
    }
    .energy-label {
      font-size: 9px;
      color: #D7D1E0;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    /* Lucky info */
    .lucky-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 14px;
      background: rgba(0, 0, 0, 0.25);
      border-radius: 12px;
      border: 0.5px solid rgba(255, 255, 255, 0.06);
      margin-bottom: 18px;
    }
    .lucky-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .lucky-label {
      font-size: 9px;
      color: #D7D1E0;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }
    .lucky-value {
      font-size: 12px;
      color: #DBA452;
      font-weight: 500;
    }

    .card-cta {
      display: block;
      text-align: center;
      width: 100%;
      padding: 11px;
      background: rgba(219, 164, 82, 0.08);
      color: #DBA452;
      border: 0.5px solid rgba(219, 164, 82, 0.3);
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s;
      font-family: var(--font-body);
    }
    .card-cta:hover {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border-color: transparent;
    }

    /* Compatibility tooltip (hover on a sign-name in the sidebar) */
    .compat-tooltip {
      position: fixed;
      pointer-events: none;
      background: rgba(10, 4, 24, 0.95);
      border: 0.5px solid var(--gold-border);
      backdrop-filter: blur(20px);
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 12px;
      color: var(--text-primary);
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.2s;
      transform: translate(-50%, -120%);
      white-space: nowrap;
    }
    .compat-tooltip.visible { opacity: 1; }
    .compat-tooltip .compat-score {
      color: #DBA452;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      margin-left: 6px;
    }

    /* MODAL */
    .horoscope-modal {
      position: fixed;
      inset: 0;
      background: rgba(10, 4, 24, 0.85);
      backdrop-filter: blur(12px);
      z-index: 1000;
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 20px;
      overflow-y: auto;
    }
    .horoscope-modal.active { display: flex; }
    .modal-content {
      background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(91, 46, 191, 0.4), transparent 70%),
        linear-gradient(180deg, #1a0d3e 0%, #120817 100%);
      border: 0.5px solid var(--gold-border);
      border-radius: 24px;
      max-width: 880px;
      width: 100%;
      padding: 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
      animation: modal-rise 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes modal-rise {
      from { opacity: 0; transform: translateY(40px) scale(0.95); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    /* Modal cosmic background */
    .modal-content::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(219, 164, 82, 0.5) 0.8px, transparent 1.5px),
        radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.4) 0.7px, transparent 1.5px),
        radial-gradient(circle at 45% 75%, rgba(219, 164, 82, 0.4) 0.6px, transparent 1.5px);
      background-size: 240px 280px, 320px 240px, 280px 320px;
      opacity: 0.4;
      pointer-events: none;
    }
    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 36px;
      height: 36px;
      background: rgba(0, 0, 0, 0.4);
      border: 0.5px solid var(--gold-border);
      border-radius: 50%;
      color: var(--gold);
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      z-index: 10;
      transition: all 0.2s;
    }
    .modal-close:hover { background: rgba(219, 164, 82, 0.2); transform: rotate(90deg); }

    .modal-header {
      padding: 40px 40px 28px;
      text-align: center;
      position: relative;
      z-index: 2;
      border-bottom: 0.5px solid rgba(219, 164, 82, 0.15);
    }
    .modal-symbol {
      font-size: 80px;
      color: var(--gold);
      filter: drop-shadow(0 0 24px rgba(219, 164, 82, 0.8));
      line-height: 1;
      margin-bottom: 12px;
      animation: gentle-rotate 20s linear infinite;
      display: inline-block;
    }
    .modal-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 42px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 6px;
    }
    .modal-meta {
      font-size: 13px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
    }
    .modal-meta span { color: var(--gold); margin: 0 6px; }

    /* Moon phase + planetary visualization */
    .modal-cosmic-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 24px 40px;
      border-bottom: 0.5px solid rgba(219, 164, 82, 0.15);
      position: relative;
      z-index: 2;
    }
    .cosmic-block {
      text-align: center;
      padding: 0 20px;
    }
    .cosmic-block:first-child { border-right: 0.5px solid rgba(219, 164, 82, 0.15); }
    .cosmic-block-label {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
      margin-bottom: 12px;
    }
    .moon-display {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 10px;
      position: relative;
      background: radial-gradient(circle at 30% 30%, #f5e9d4, #d4af37);
      box-shadow: 0 0 24px rgba(219, 164, 82, 0.4);
      animation: moon-glow 4s ease-in-out infinite;
    }
    @keyframes moon-glow {
      0%, 100% { box-shadow: 0 0 24px rgba(219, 164, 82, 0.4); }
      50% { box-shadow: 0 0 40px rgba(219, 164, 82, 0.7); }
    }
    .moon-phase-name {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--gold);
      font-size: 16px;
      font-feature-settings: "swsh" 1;
    }
    .planetary-display {
      width: 64px;
      height: 64px;
      margin: 0 auto 10px;
      position: relative;
    }
    .planetary-display svg { width: 100%; height: 100%; animation: gentle-rotate 30s linear infinite; }
    .planet-name {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--gold);
      font-size: 16px;
      font-feature-settings: "swsh" 1;
    }

    /* Detail sections */
    .modal-body {
      padding: 32px 40px 40px;
      position: relative;
      z-index: 2;
    }
    .detail-summary {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 18px;
      color: var(--text-primary);
      line-height: 1.7;
      text-align: center;
      margin-bottom: 32px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.25);
      border-radius: 16px;
      border: 0.5px solid rgba(219, 164, 82, 0.15);
    }
    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 24px;
    }
    .detail-block {
      padding: 20px;
      background: rgba(0, 0, 0, 0.25);
      border: 0.5px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
    }
    .detail-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(219, 164, 82, 0.3), rgba(91, 46, 191, 0.2));
      border: 0.5px solid rgba(219, 164, 82, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      font-size: 14px;
    }
    .detail-block-label {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 18px;
      color: #DBA452;
      font-feature-settings: "swsh" 1;
      margin-bottom: 8px;
    }
    .detail-block-text {
      font-size: 13px;
      color: #D7D1E0;
      line-height: 1.7;
    }

    .modal-cta-row {
      display: flex;
      gap: 12px;
      margin-top: 28px;
      padding-top: 28px;
      border-top: 0.5px solid rgba(219, 164, 82, 0.15);
      flex-wrap: wrap;
      justify-content: center;
    }

    @media (max-width: 1100px) {
      .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 800px) {
      .zodiac-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 20px;
        padding-bottom: 16px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: thin;
        scrollbar-color: rgba(219, 164, 82, 0.3) transparent;
      }
      .zodiac-grid::-webkit-scrollbar { height: 6px; }
      .zodiac-grid::-webkit-scrollbar-thumb { background: rgba(219, 164, 82, 0.3); border-radius: 999px; }
      .zodiac-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
      }
      .modal-cosmic-row { grid-template-columns: 1fr; gap: 24px; }
      .cosmic-block:first-child { border-right: none; border-bottom: 0.5px solid rgba(219, 164, 82, 0.15); padding-bottom: 24px; }
      .detail-grid { grid-template-columns: 1fr; }
      .modal-header, .modal-body, .modal-cosmic-row { padding-left: 24px; padding-right: 24px; }
      .modal-name { font-size: 32px; }
      .modal-symbol { font-size: 60px; }
    }

  
    /* ==================== STORE / SHOP ==================== */
    .store-hero {
      padding: 100px 0 60px;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91, 46, 191, 0.5), transparent 70%),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-purple-mid) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .store-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 15% 25%, var(--gold) 0.8px, transparent 1.5px),
        radial-gradient(circle at 75% 60%, #fff 0.6px, transparent 1.5px),
        radial-gradient(circle at 50% 40%, var(--gold) 0.6px, transparent 1.5px);
      background-size: 280px 320px, 320px 280px, 380px 240px;
      opacity: 0.4;
      pointer-events: none;
      animation: twinkle 8s ease-in-out infinite;
    }
    .store-hero .container { position: relative; z-index: 2; }
    .store-hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      color: var(--text-primary);
      margin-bottom: 16px;
    }
    .store-hero h1 .gold-word { color: var(--gold); }
    .store-hero p {
      font-size: 16px;
      color: var(--text-secondary);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Category filter pills */
    .category-bar {
      padding: 32px 0 24px;
      background: var(--bg-deep);
      position: sticky;
      top: 73px;
      z-index: 50;
      border-bottom: 0.5px solid var(--gold-border);
      backdrop-filter: blur(20px);
    }
    .category-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .category-pill {
      padding: 10px 22px;
      background: rgba(91, 46, 191, 0.15);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      color: var(--text-secondary);
      font-size: 13px;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s;
      font-family: var(--font-body);
    }
    .category-pill:hover { color: var(--gold); border-color: var(--gold); }
    .category-pill.active {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border-color: transparent;
      font-weight: 500;
    }

    /* Product grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      padding: 56px 0 80px;
    }
    .product-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(20px);
      border: 0.5px solid var(--gold-border);
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .product-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 175, 55, 0.5);
      box-shadow: 0 20px 50px rgba(91, 46, 191, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
    }
    .product-image {
      width: 100%;
      aspect-ratio: 1;
      background: radial-gradient(circle at 50% 50%, rgba(91, 46, 191, 0.3), rgba(10, 4, 24, 0.6));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.15);
    }
    .product-image .product-glyph {
      font-size: 88px;
      color: var(--gold);
      filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    }
    .product-image .product-glyph svg { width: 88px; height: 88px; }
    .product-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 4px 10px;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      font-size: 9px;
      letter-spacing: 1.2px;
      border-radius: 999px;
      font-weight: 500;
    }
    .product-info { padding: 22px 20px 20px; flex: 1; display: flex; flex-direction: column; }
    .product-cat {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
      margin-bottom: 8px;
    }
    .product-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 20px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .product-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }
    .product-price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 16px;
    }
    .product-price {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 26px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
      font-weight: 500;
    }
    .product-price-strike {
      font-size: 14px;
      color: var(--text-faint);
      text-decoration: line-through;
    }
    .product-add {
      width: 100%;
      padding: 12px;
      background: rgba(212, 175, 55, 0.08);
      color: var(--gold);
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s;
      font-family: var(--font-body);
    }
    .product-add:hover {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border-color: transparent;
    }
    .product-add.added {
      background: rgba(46, 204, 113, 0.15);
      color: #2ecc71;
      border-color: rgba(46, 204, 113, 0.4);
    }

    /* Cart drawer */
    .nav-home-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background: rgba(212, 175, 55, 0.08);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      color: var(--gold);
      transition: all 0.2s;
    }
    .nav-home-icon:hover {
      background: rgba(212, 175, 55, 0.15);
      border-color: var(--gold);
      transform: scale(1.05);
    }
    .cart-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 18px;
      background: rgba(212, 175, 55, 0.08);
      border: 0.5px solid var(--gold-border);
      border-radius: 999px;
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .cart-toggle:hover { background: rgba(212, 175, 55, 0.15); border-color: var(--gold); }
    .cart-count {
      background: var(--gold);
      color: var(--bg-deep);
      font-size: 10px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 999px;
      min-width: 18px;
      text-align: center;
    }
    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 420px;
      height: 100vh;
      background:
        radial-gradient(ellipse at top, rgba(91, 46, 191, 0.3), transparent 70%),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-deep) 100%);
      border-left: 0.5px solid var(--gold-border);
      z-index: 1000;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    }
    .cart-drawer.open { transform: translateX(0); }
    .cart-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(10, 4, 24, 0.7);
      backdrop-filter: blur(8px);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .cart-backdrop.open { opacity: 1; pointer-events: auto; }
    .cart-header {
      padding: 24px 28px;
      border-bottom: 0.5px solid var(--gold-border);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .cart-header h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 24px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
    }
    .cart-close {
      width: 32px;
      height: 32px;
      background: rgba(0, 0, 0, 0.4);
      border: 0.5px solid var(--gold-border);
      border-radius: 50%;
      color: var(--gold);
      font-size: 18px;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .cart-close:hover { transform: rotate(90deg); }
    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 16px 28px;
    }
    .cart-item {
      display: grid;
      grid-template-columns: 56px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px 0;
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.1);
    }
    .cart-item-img {
      width: 56px;
      height: 56px;
      border-radius: 10px;
      background: radial-gradient(circle, rgba(91, 46, 191, 0.4), rgba(10, 4, 24, 0.6));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--gold);
    }
    .cart-item-img svg { width: 28px; height: 28px; }
    .cart-item-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 15px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 4px;
    }
    .cart-item-price { font-size: 12px; color: var(--gold); }
    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
    }
    .qty-btn {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(212, 175, 55, 0.1);
      border: 0.5px solid rgba(212, 175, 55, 0.3);
      color: var(--gold);
      font-size: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    .qty-btn:hover { background: rgba(212, 175, 55, 0.2); }
    .qty-value {
      font-size: 13px;
      color: var(--text-primary);
      min-width: 18px;
      text-align: center;
    }
    .cart-item-remove {
      background: none;
      border: none;
      color: var(--text-faint);
      font-size: 14px;
      cursor: pointer;
      padding: 4px;
      transition: color 0.2s;
    }
    .cart-item-remove:hover { color: #ff6b6b; }
    .cart-empty {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .cart-empty svg { width: 64px; height: 64px; opacity: 0.3; margin-bottom: 16px; }
    .cart-empty h4 {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--text-secondary);
      font-size: 18px;
      margin-bottom: 8px;
      font-feature-settings: "swsh" 1;
    }
    .cart-footer {
      padding: 24px 28px;
      border-top: 0.5px solid var(--gold-border);
      background: rgba(10, 4, 24, 0.6);
    }
    .cart-total-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 8px;
    }
    .cart-total-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
    .cart-total-value {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 28px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
    }
    .cart-checkout {
      display: block;
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border: none;
      border-radius: 999px;
      font-size: 13px;
      letter-spacing: 0.5px;
      font-weight: 500;
      cursor: pointer;
      text-align: center;
      margin-top: 12px;
      transition: all 0.2s;
      text-decoration: none;
    }
    .cart-checkout:hover { box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4); transform: translateY(-1px); }
    .cart-note {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 12px;
      line-height: 1.5;
    }

    /* ==================== SERVICES PAGE ==================== */
    .services-hero {
      padding: 100px 0 60px;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91, 46, 191, 0.5), transparent 70%),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-purple-mid) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .service-detail {
      padding: 80px 0;
      border-bottom: 0.5px solid var(--gold-border);
    }
    .service-detail:nth-child(even) {
      background: var(--bg-deep);
    }
    .service-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .service-detail:nth-child(odd) .service-detail-grid > div:first-child {
      order: 2;
    }
    .service-detail-icon {
      width: 100%;
      max-width: 400px;
      aspect-ratio: 1;
      margin: 0 auto;
      background:
        radial-gradient(circle at 30% 30%, rgba(91, 46, 191, 0.4), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.15), transparent 60%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 0.5px solid var(--gold-border);
      position: relative;
    }
    .service-detail-icon::after {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 0.5px dashed rgba(212, 175, 55, 0.2);
      animation: rotate 60s linear infinite;
    }
    .service-detail-icon svg { width: 50%; height: 50%; }
    .service-detail h2 {
      font-size: clamp(28px, 4vw, 42px);
      color: var(--text-primary);
      margin-bottom: 16px;
      text-align: left;
    }
    .service-detail h2 .gold-word { color: var(--gold); }
    .service-eyebrow {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 4px;
      margin-bottom: 12px;
      font-family: var(--font-body);
      font-style: normal;
    }
    .service-detail p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .service-features {
      list-style: none;
      margin: 24px 0;
    }
    .service-features li {
      padding: 10px 0;
      padding-left: 28px;
      position: relative;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .service-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 16px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(212, 175, 55, 0.1);
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8 L7 11 L12 5' stroke='%23d4af37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-size: 12px;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* ==================== ABOUT PAGE ==================== */
    .about-hero {
      padding: 100px 0 60px;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91, 46, 191, 0.5), transparent 70%),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-purple-mid) 100%);
      position: relative;
      overflow: hidden;
    }
    .about-hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .about-portrait {
      max-width: 380px;
      width: 100%;
      height: auto;
      border-radius: 16px;
      margin: 0 auto;
      display: block;
      filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.25));
    }
    .about-content h1 {
      font-size: clamp(32px, 4.5vw, 48px);
      color: var(--text-primary);
      margin-bottom: 14px;
      line-height: 1.1;
    }
    .about-content h1 .gold-word { color: var(--gold); }
    .about-subtitle {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 20px;
      color: var(--gold);
      margin-bottom: 24px;
      font-feature-settings: "swsh" 1;
    }
    .about-content p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .lineage-section { padding: 80px 0; }
    .lineage-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .lineage-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(20px);
      border: 0.5px solid var(--gold-border);
      border-radius: 18px;
      padding: 32px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .lineage-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .lineage-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(91, 46, 191, 0.2));
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      color: var(--gold);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 24px;
      font-feature-settings: "swsh" 1;
    }
    .lineage-card h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 10px;
    }
    .lineage-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ==================== CONTACT PAGE ==================== */
    .contact-hero {
      padding: 100px 0 60px;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91, 46, 191, 0.5), transparent 70%),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-purple-mid) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      padding: 80px 0;
      align-items: start;
    }
    .contact-info-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(20px);
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }
    .contact-info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .contact-info-card h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 28px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 24px;
    }
    .contact-method {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.1);
    }
    .contact-method:last-child { border-bottom: none; }
    .contact-method-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(91, 46, 191, 0.2));
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }
    .contact-method-icon svg { width: 18px; height: 18px; }
    .contact-method-label {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
      margin-bottom: 4px;
    }
    .contact-method-value {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 17px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
    }
    .contact-method-sub {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .contact-form {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      backdrop-filter: blur(20px);
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
    }
    .contact-form::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .contact-form h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 28px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 24px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    .form-group { margin-bottom: 14px; }
    .form-label {
      display: block;
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 1.2px;
      margin-bottom: 6px;
    }
    .form-input, .form-textarea, .form-select {
      width: 100%;
      padding: 12px 16px;
      background: rgba(10, 4, 24, 0.6);
      border: 0.5px solid var(--gold-border);
      border-radius: 12px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 13px;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4 L6 8 L10 4' stroke='%23d4af37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }
    .form-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border: none;
      border-radius: 999px;
      font-size: 13px;
      letter-spacing: 0.5px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 8px;
    }
    .form-submit:hover { box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4); }

    .map-container {
      grid-column: 1 / -1;
      margin-top: 24px;
      border-radius: 20px;
      overflow: hidden;
      border: 0.5px solid var(--gold-border);
      height: 360px;
      background: var(--bg-deep);
    }
    .map-container iframe { width: 100%; height: 100%; border: none; filter: invert(0.92) hue-rotate(180deg) saturate(0.7); }

    /* ==================== 404 PAGE ==================== */
    .error-page {
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 20px;
      text-align: center;
      background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(91, 46, 191, 0.4), transparent 70%),
        var(--bg-purple);
      position: relative;
      overflow: hidden;
    }
    .error-page::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1.5px),
        radial-gradient(circle at 75% 60%, #fff 0.8px, transparent 1.5px);
      background-size: 280px 320px, 320px 280px;
      opacity: 0.4;
      pointer-events: none;
      animation: twinkle 8s ease-in-out infinite;
    }
    .error-content { position: relative; z-index: 2; }
    .error-symbol {
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(120px, 25vw, 220px);
      color: var(--gold);
      line-height: 1;
      margin-bottom: 24px;
      font-feature-settings: "swsh" 1;
      filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.4));
    }
    .error-content h1 {
      font-size: clamp(28px, 4vw, 42px);
      color: var(--text-primary);
      margin-bottom: 14px;
    }
    .error-content h1 .gold-word { color: var(--gold); }
    .error-content p {
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    /* Mobile adjustments for new pages */
    @media (max-width: 900px) {
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
      .service-detail:nth-child(odd) .service-detail-grid > div:first-child { order: 0; }
      .about-hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .about-portrait { max-width: 280px; }
      .lineage-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 24px; }
      .form-row { grid-template-columns: 1fr; }
      .category-bar { top: 65px; }
    }
    @media (max-width: 500px) {
      .product-grid { grid-template-columns: 1fr; }
    }

    /* ==================== TRUST & SAFETY BADGES ==================== */
    .trust-section {
      padding: 70px 0;
      background:
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(91, 46, 191, 0.2), transparent 70%),
        var(--bg-deep);
      border-top: 0.5px solid var(--gold-border);
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 36px;
    }
    .trust-badge {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.12), rgba(26, 13, 62, 0.3));
      border: 0.5px solid var(--gold-border);
      border-radius: 14px;
      padding: 22px 18px;
      text-align: center;
      transition: border-color 0.3s;
    }
    .trust-badge:hover { border-color: rgba(212, 175, 55, 0.45); }
    .trust-badge .trust-icon {
      width: 38px;
      height: 38px;
      margin: 0 auto 12px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(91, 46, 191, 0.2));
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }
    .trust-badge .trust-icon svg { width: 18px; height: 18px; }
    .trust-badge h4 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 6px;
    }
    .trust-badge p {
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.55;
    }
    .disclaimer-box {
      margin-top: 36px;
      padding: 22px 28px;
      background: rgba(212, 175, 55, 0.04);
      border: 0.5px dashed rgba(212, 175, 55, 0.3);
      border-radius: 14px;
      text-align: center;
    }
    .disclaimer-box p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 760px;
      margin: 0 auto;
    }
    .disclaimer-box .gold-word { color: var(--gold); font-style: italic; font-family: var(--font-display); font-feature-settings: "swsh" 1; font-size: 14px; }

    /* ==================== DEVOTIONAL STORE CATEGORY GRID ==================== */
    .devotional-section {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91, 46, 191, 0.3), transparent 70%),
        var(--bg-purple);
      position: relative;
    }
    .category-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 48px;
    }
    .cat-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      border: 0.5px solid var(--gold-border);
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .cat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .cat-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 175, 55, 0.5);
      box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    }
    .cat-image {
      aspect-ratio: 4 / 3;
      background: radial-gradient(circle at 50% 50%, rgba(91, 46, 191, 0.35), rgba(10, 4, 24, 0.6));
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.15);
      color: var(--gold);
      filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4));
    }
    .cat-image svg { width: 64px; height: 64px; }
    .cat-info { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
    .cat-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 8px;
    }
    .cat-benefit {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
      flex: 1;
    }
    .cat-price {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--gold);
      font-size: 14px;
      font-feature-settings: "swsh" 1;
      margin-bottom: 14px;
    }
    .cat-cta {
      display: block;
      text-align: center;
      padding: 11px;
      background: rgba(212, 175, 55, 0.08);
      color: var(--gold);
      border: 0.5px solid rgba(212, 175, 55, 0.3);
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.5px;
      transition: all 0.3s;
    }
    .cat-cta:hover {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border-color: transparent;
    }

    /* ==================== GEMSTONE & PEARL DETAIL CARDS ==================== */
    .gem-section {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(91, 46, 191, 0.35), transparent 70%),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-purple-mid) 100%);
      position: relative;
    }
    .gem-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .gem-card {
      background: rgba(18, 8, 23, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      padding: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .gem-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .gem-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 175, 55, 0.5);
      box-shadow: 0 0 30px rgba(138, 43, 226, 0.35);
    }
    .gem-visual {
      height: 130px;
      background: radial-gradient(circle at 50% 50%, rgba(91, 46, 191, 0.4), rgba(10, 4, 24, 0.6));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.15);
      overflow: hidden;
    }
    .gem-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
      pointer-events: none;
    }
    .gem-visual svg {
      width: 70px;
      height: 70px;
      filter: drop-shadow(0 0 20px currentColor);
      position: relative;
      z-index: 2;
    }
    .gem-cert {
      position: absolute;
      top: 10px;
      right: 10px;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      font-size: 9px;
      letter-spacing: 1.2px;
      padding: 4px 9px;
      border-radius: 999px;
      font-weight: 500;
      z-index: 3;
    }
    .gem-info { padding: 20px; }
    .gem-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 4px;
    }
    .gem-planet {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 1.5px;
      margin-bottom: 12px;
    }
    .gem-benefit {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 14px;
      min-height: 60px;
    }
    .gem-warning {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      background: rgba(255, 165, 0, 0.06);
      border: 0.5px solid rgba(255, 165, 0, 0.25);
      border-radius: 10px;
      font-size: 11px;
      color: #f0c849;
      margin-bottom: 14px;
      line-height: 1.4;
    }
    .gem-warning svg { width: 14px; height: 14px; flex-shrink: 0; }
    .gem-cta {
      display: block;
      text-align: center;
      width: 100%;
      padding: 11px;
      background: rgba(212, 175, 55, 0.08);
      color: var(--gold);
      border: 0.5px solid rgba(212, 175, 55, 0.3);
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.5px;
      transition: all 0.3s;
    }
    .gem-cta:hover {
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border-color: transparent;
    }

    /* Pearl section: softer pearl-white + lavender glow */
    .pearl-section {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(216, 197, 232, 0.15), transparent 70%),
        radial-gradient(ellipse 60% 50% at 30% 100%, rgba(180, 165, 220, 0.1), transparent 70%),
        linear-gradient(180deg, var(--bg-purple-mid) 0%, var(--bg-purple) 100%);
    }
    .pearl-card {
      background: rgba(18, 8, 23, 0.85);
      border: 1px solid rgba(216, 197, 232, 0.15);
      border-radius: 18px;
      padding: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .pearl-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 233, 212, 0.5), transparent);
    }
    .pearl-card:hover {
      transform: translateY(-6px);
      border-color: rgba(216, 197, 232, 0.5);
      box-shadow: 0 0 35px rgba(216, 197, 232, 0.25);
    }
    .pearl-visual {
      height: 140px;
      background: radial-gradient(circle at 35% 35%, rgba(245, 233, 212, 0.25), rgba(91, 46, 191, 0.15) 50%, rgba(10, 4, 24, 0.6) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 0.5px solid rgba(216, 197, 232, 0.15);
      position: relative;
      overflow: hidden;
    }
    .pearl-orb {
      width: 78px;
      height: 78px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, #ffffff, #f5e9d4 35%, #d8c5e8 70%, #9d83be 100%);
      box-shadow: 0 0 30px rgba(245, 233, 212, 0.5), inset -8px -8px 16px rgba(91, 46, 191, 0.3);
      animation: pearl-glow 4s ease-in-out infinite;
    }
    @keyframes pearl-glow {
      0%, 100% { box-shadow: 0 0 30px rgba(245, 233, 212, 0.5), inset -8px -8px 16px rgba(91, 46, 191, 0.3); }
      50% { box-shadow: 0 0 50px rgba(245, 233, 212, 0.7), inset -8px -8px 16px rgba(91, 46, 191, 0.3); }
    }
    .pearl-orb.mala { width: auto; height: auto; background: none; box-shadow: none; animation: none; display: flex; gap: 4px; }
    .pearl-orb.mala::before, .pearl-orb.mala::after, .pearl-orb.mala span {
      content: '';
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, #ffffff, #f5e9d4 50%, #d8c5e8 100%);
      box-shadow: 0 0 10px rgba(245, 233, 212, 0.6);
      display: inline-block;
    }

    /* ==================== VASTU CHECKER ==================== */
    .vastu-section {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(91, 46, 191, 0.3), transparent 70%),
        var(--bg-deep);
    }
    .vastu-checker-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 48px;
      align-items: start;
    }
    .vastu-form-card, .vastu-result-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 32px 28px;
      position: relative;
    }
    .vastu-form-card::before, .vastu-result-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .vastu-form-card h3, .vastu-result-card h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 22px;
    }
    .vastu-field { margin-bottom: 16px; }
    .vastu-field label {
      display: block;
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 1.2px;
      margin-bottom: 6px;
    }
    .vastu-field select {
      width: 100%;
      padding: 11px 14px;
      background: rgba(10, 4, 24, 0.6);
      border: 0.5px solid var(--gold-border);
      color: var(--text-primary);
      border-radius: 10px;
      font-size: 13px;
      font-family: var(--font-body);
      outline: none;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4 L6 8 L10 4' stroke='%23d4af37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }
    .vastu-field select:focus { border-color: var(--gold); }
    .vastu-check-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
      color: var(--bg-deep);
      border: none;
      border-radius: 999px;
      font-size: 13px;
      letter-spacing: 0.5px;
      font-weight: 500;
      cursor: pointer;
      margin-top: 8px;
      transition: all 0.2s;
    }
    .vastu-check-btn:hover { box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4); }
    .vastu-result-empty {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .vastu-result-empty svg { width: 56px; height: 56px; opacity: 0.4; margin-bottom: 14px; }
    .vastu-score-display {
      text-align: center;
      padding: 24px 0;
      margin-bottom: 24px;
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.15);
    }
    .vastu-score-circle {
      width: 130px;
      height: 130px;
      margin: 0 auto 14px;
      position: relative;
    }
    .vastu-score-circle svg { transform: rotate(-90deg); }
    .vastu-score-bg {
      fill: none;
      stroke: rgba(255, 255, 255, 0.08);
      stroke-width: 6;
    }
    .vastu-score-fill {
      fill: none;
      stroke: url(#vastuGradient);
      stroke-width: 6;
      stroke-linecap: round;
      transition: stroke-dashoffset 1s ease;
    }
    .vastu-score-num {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 36px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
    }
    .vastu-score-label {
      font-size: 13px;
      color: var(--text-secondary);
      letter-spacing: 1px;
    }
    .zone-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 22px;
    }
    .zone-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.5;
    }
    .zone-item.positive {
      background: rgba(46, 204, 113, 0.08);
      border: 0.5px solid rgba(46, 204, 113, 0.25);
      color: #2ecc71;
    }
    .zone-item.problem {
      background: rgba(255, 107, 107, 0.08);
      border: 0.5px solid rgba(255, 107, 107, 0.25);
      color: #ff6b6b;
    }
    .zone-item.neutral {
      background: rgba(212, 175, 55, 0.06);
      border: 0.5px solid rgba(212, 175, 55, 0.2);
      color: var(--text-secondary);
    }
    .zone-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .zone-text strong {
      display: block;
      color: var(--text-primary);
      font-weight: 500;
      margin-bottom: 2px;
      font-size: 12px;
    }

    /* ==================== PANCHANG ==================== */
    .panchang-section {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(91, 46, 191, 0.35), transparent 70%),
        linear-gradient(180deg, var(--bg-purple) 0%, var(--bg-deep) 100%);
    }
    .panchang-date {
      text-align: center;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
      margin-bottom: 8px;
    }
    .panchang-day {
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 2px;
      margin-bottom: 36px;
    }
    .panchang-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 36px;
    }
    .panchang-card {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      border: 0.5px solid var(--gold-border);
      border-radius: 16px;
      padding: 22px 18px;
      position: relative;
      text-align: center;
    }
    .panchang-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .panchang-icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 10px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(91, 46, 191, 0.2));
      border: 0.5px solid rgba(212, 175, 55, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }
    .panchang-icon svg { width: 16px; height: 16px; }
    .panchang-label {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
      margin-bottom: 6px;
    }
    .panchang-value {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      line-height: 1.3;
    }
    .panchang-cta {
      text-align: center;
      padding: 22px;
      background: rgba(212, 175, 55, 0.04);
      border: 0.5px dashed rgba(212, 175, 55, 0.3);
      border-radius: 14px;
    }
    .panchang-cta p {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 14px;
      line-height: 1.6;
    }

    /* ==================== FREE KUNDLI PREVIEW ==================== */
    .kundli-section {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(91, 46, 191, 0.35), transparent 70%),
        radial-gradient(ellipse 60% 50% at 70% 70%, rgba(138, 43, 226, 0.2), transparent 70%),
        var(--bg-purple);
    }
    .kundli-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 48px;
      align-items: start;
    }
    .kundli-form, .kundli-result {
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 32px 28px;
      position: relative;
    }
    .kundli-form::before, .kundli-result::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    .kundli-form h3, .kundli-result h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 22px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 22px;
    }
    .kundli-result-empty {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .kundli-result-empty .symbol-large {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 80px;
      color: rgba(212, 175, 55, 0.3);
      font-feature-settings: "swsh" 1;
      margin-bottom: 14px;
    }
    .kundli-zodiac-display {
      text-align: center;
      padding: 20px 0 24px;
      border-bottom: 0.5px solid rgba(212, 175, 55, 0.15);
      margin-bottom: 24px;
    }
    .kundli-symbol {
      font-size: 64px;
      color: var(--gold);
      filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
      margin-bottom: 8px;
      line-height: 1;
    }
    .kundli-sign-name {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 28px;
      color: var(--text-primary);
      font-feature-settings: "swsh" 1;
      margin-bottom: 4px;
    }
    .kundli-sign-meta {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 1.5px;
    }
    .kundli-attrs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 22px;
    }
    .kundli-attr {
      padding: 14px;
      background: rgba(0, 0, 0, 0.25);
      border-radius: 10px;
      border: 0.5px solid rgba(212, 175, 55, 0.1);
    }
    .kundli-attr-label {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 1.2px;
      margin-bottom: 4px;
    }
    .kundli-attr-value {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      color: var(--gold);
      font-feature-settings: "swsh" 1;
    }
    .kundli-personality {
      padding: 16px;
      background: rgba(0, 0, 0, 0.25);
      border-radius: 12px;
      border: 0.5px solid rgba(212, 175, 55, 0.1);
      margin-bottom: 22px;
    }
    .kundli-personality h4 {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 16px;
      color: #DBA452;
      font-feature-settings: "swsh" 1;
      margin-bottom: 8px;
    }
    .kundli-personality p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .kundli-honest-note {
      padding: 14px;
      background: rgba(212, 175, 55, 0.05);
      border: 0.5px dashed rgba(212, 175, 55, 0.25);
      border-radius: 10px;
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.6;
      text-align: center;
      margin-bottom: 16px;
    }
    .kundli-honest-note strong { color: var(--gold); font-style: italic; }

    /* ==================== STRONG BOOKING FORM ==================== */
    .booking-section {
      padding: 100px 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(91, 46, 191, 0.35), transparent 70%),
        var(--bg-deep);
    }
    .booking-form {
      max-width: 720px;
      margin: 48px auto 0;
      background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
      border: 0.5px solid var(--gold-border);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
    }
    .booking-form::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }

    /* ==================== MOBILE: SWIPEABLE PRODUCT/CATEGORY GRIDS ==================== */
    @media (max-width: 800px) {
      .category-grid, .gem-grid, .panchang-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 20px;
        padding: 0 20px 16px;
        margin: 36px -20px 0;
        scrollbar-width: thin;
        scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
      }
      .category-grid::-webkit-scrollbar, .gem-grid::-webkit-scrollbar, .panchang-grid::-webkit-scrollbar { height: 6px; }
      .category-grid::-webkit-scrollbar-thumb, .gem-grid::-webkit-scrollbar-thumb, .panchang-grid::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 999px; }
      .cat-card, .gem-card, .pearl-card { flex: 0 0 280px; scroll-snap-align: center; }
      .panchang-card { flex: 0 0 160px; scroll-snap-align: center; }
      .vastu-checker-wrapper, .kundli-wrapper { grid-template-columns: 1fr; gap: 24px; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .kundli-attrs { grid-template-columns: 1fr 1fr; }
      .booking-form { padding: 24px 20px; }
      /* Larger touch targets for CTAs on mobile */
      .cat-cta, .gem-cta, .vastu-check-btn, .form-submit, .btn-primary, .btn-outline {
        min-height: 48px;
        padding: 14px 22px;
      }
    }
    @media (max-width: 500px) {
      .trust-grid { grid-template-columns: 1fr; }
      .kundli-attrs { grid-template-columns: 1fr; }
    }

/* ==================== FREE ASTROLOGY TOOL ==================== */
.astro-tool-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(91, 46, 191, 0.35), transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(138, 43, 226, 0.2), transparent 70%),
    var(--bg-purple);
}
.astro-tool-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.astro-tool-form, .astro-tool-result {
  background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
  border: 0.5px solid var(--gold-border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.astro-tool-form::before, .astro-tool-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}
.astro-tool-form h3, .astro-tool-result h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--text-primary);
  font-feature-settings: "swsh" 1;
  margin-bottom: 22px;
}
.form-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 14px;
  font-style: italic;
}
.astro-result-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.astro-result-empty .symbol-large {
  font-size: 64px;
  color: rgba(212, 175, 55, 0.4);
  margin-bottom: 14px;
}

/* Astro tabs */
.astro-tabs {
  display: flex;
  gap: 6px;
  background: rgba(10, 4, 24, 0.6);
  border: 0.5px solid var(--gold-border);
  border-radius: 999px;
  padding: 5px;
  margin: 18px 0 22px;
}
.astro-tab {
  flex: 1;
  padding: 9px 14px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.8px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
}
.astro-tab:hover { color: var(--text-primary); }
.astro-tab.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--bg-deep);
  font-weight: 500;
}
.astro-tab-content { display: none; }
.astro-tab-content.active { display: block; }

/* Basic tab — trio */
.basic-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.trio-item {
  padding: 18px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 0.5px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  text-align: center;
}
.trio-label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.trio-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  margin-bottom: 6px;
  line-height: 1.2;
}
.trio-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.basic-extra {
  background: rgba(0, 0, 0, 0.25);
  border: 0.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 16px 18px;
}
.extra-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(212, 175, 55, 0.1);
  font-size: 13px;
  color: var(--text-secondary);
}
.extra-row:last-child { border-bottom: none; }
.extra-row strong { color: var(--gold); font-family: var(--font-display); font-style: italic; font-feature-settings: "swsh" 1; font-size: 15px; }

/* D1+D9 tab */
.chart-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.chart-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  margin-bottom: 10px;
  text-align: center;
}
.planet-list {
  background: rgba(0, 0, 0, 0.3);
  border: 0.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
}
.planet-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 0.5px solid rgba(212, 175, 55, 0.08);
  font-size: 12px;
}
.planet-row:last-child { border-bottom: none; }
.planet-name {
  color: var(--text-secondary);
  font-weight: 500;
}
.planet-rashi {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-feature-settings: "swsh" 1;
}
.d9-lagna-row {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
  color: var(--text-secondary);
}
.d9-lagna-row strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-feature-settings: "swsh" 1;
  font-size: 14px;
}
.chart-note {
  margin-top: 14px;
  padding: 12px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* Mahadasha tab */
.dasha-intro {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
  font-style: italic;
  padding: 0 10px;
}
.dasha-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dasha-row {
  display: grid;
  grid-template-columns: 90px 1fr 60px;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 0.5px solid rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  font-size: 12px;
  position: relative;
}
.dasha-row.current {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(91, 46, 191, 0.25));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.dasha-lord {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
}
.dasha-period { color: var(--text-secondary); font-size: 11px; }
.dasha-years { color: var(--text-muted); font-size: 11px; text-align: right; }
.dasha-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--bg-deep);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

/* Astro disclaimer */
.astro-disclaimer {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(212, 175, 55, 0.05);
  border: 0.5px dashed rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.65;
}
.astro-disclaimer strong { color: var(--gold); font-style: italic; }

/* ==================== KUNDALI MATCHING ==================== */
.kundali-match-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(91, 46, 191, 0.35), transparent 70%),
    var(--bg-deep);
}
.kundali-match-wrapper {
  margin-top: 48px;
}
.kundali-match-form {
  background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
  border: 0.5px solid var(--gold-border);
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 32px;
  position: relative;
}
.kundali-match-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}
.match-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.match-partner-card {
  padding: 22px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 0.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 14px;
}
.match-partner-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(91, 46, 191, 0.2));
  border: 0.5px solid rgba(212, 175, 55, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Match result */
.kundali-match-result {
  background: linear-gradient(135deg, rgba(91, 46, 191, 0.18), rgba(26, 13, 62, 0.4));
  border: 0.5px solid var(--gold-border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.kundali-match-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}
.kundali-match-result h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--text-primary);
  font-feature-settings: "swsh" 1;
  margin-bottom: 22px;
  text-align: center;
}
.kundali-match-result h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  margin: 28px 0 14px;
}
.match-result-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.match-result-empty .symbol-large {
  font-size: 72px;
  color: rgba(212, 175, 55, 0.4);
  margin-bottom: 14px;
}

.match-summary {
  margin-bottom: 28px;
}
.couple-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  margin-bottom: 22px;
  text-align: center;
}
.couple-row .lbl {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.couple-row strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
}
.match-icon {
  font-size: 32px;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
}

.match-score-display {
  text-align: center;
}
.match-score-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 14px;
  position: relative;
}
.match-score-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  text-align: center;
  line-height: 1;
}
.match-score-num span {
  font-size: 18px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.match-verdict {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-feature-settings: "swsh" 1;
  margin-top: 8px;
}

/* Koot list */
.koot-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.koot-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 0.5px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}
.koot-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--text-primary);
  font-feature-settings: "swsh" 1;
}
.koot-bar-wrap {
  position: relative;
  height: 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.koot-bar {
  height: 100%;
  border-radius: 999px;
  transition: width 0.8s ease;
}
.koot-score {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--text-primary);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.koot-note {
  grid-column: 2;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Mangal block */
.mangal-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(212, 175, 55, 0.15);
}
.mangal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.mangal-card {
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}
.mangal-card.no-dosha {
  background: rgba(46, 204, 113, 0.08);
  border: 0.5px solid rgba(46, 204, 113, 0.3);
}
.mangal-card.has-dosha {
  background: rgba(255, 107, 107, 0.08);
  border: 0.5px solid rgba(255, 107, 107, 0.3);
}
.mangal-name {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-primary);
  font-size: 14px;
  font-feature-settings: "swsh" 1;
  margin-bottom: 6px;
}
.mangal-status {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.no-dosha .mangal-status { color: #2ecc71; }
.has-dosha .mangal-status { color: #ff6b6b; }
.mangal-detail {
  font-size: 11px;
  color: var(--text-muted);
}
.mangal-verdict {
  padding: 12px 14px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

.match-disclaimer {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(212, 175, 55, 0.05);
  border: 0.5px dashed rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.65;
}
.match-disclaimer strong { color: var(--gold); font-style: italic; }

/* Mobile responsive */
@media (max-width: 900px) {
  .astro-tool-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .basic-trio { grid-template-columns: 1fr; }
  .chart-grid-2 { grid-template-columns: 1fr; gap: 18px; }
  .match-grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .mangal-grid { grid-template-columns: 1fr; }
  .dasha-row { grid-template-columns: 80px 1fr; }
  .dasha-row .dasha-years { display: none; }
  .koot-row { grid-template-columns: 1fr; gap: 6px; }
  .koot-name { font-size: 13px; }
  .couple-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ==================== KUNDLI CHART RENDERING ==================== */
.kundli-chart-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}
.chart-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  padding: 16px 14px;
  border: 0.5px solid rgba(212, 175, 55, 0.12);
}
.couple-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.couple-charts > div {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 12px;
  border: 0.5px solid rgba(212, 175, 55, 0.12);
}
@media (max-width: 700px) {
  .couple-charts { grid-template-columns: 1fr; }
}

/* ==================== RASHI CHART (South Indian style) ==================== */
.rashi-chart-wrap {
  display: flex;
  justify-content: center;
  padding: 8px;
}
.rashi-chart {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.15));
}

/* ==================== ASTRO TOOL ENHANCEMENTS ==================== */
.astro-loading {
  text-align: center;
  padding: 40px 20px;
}
.loader-ring {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 4px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.astro-loading p { color: var(--text-muted); font-style: italic; font-size: 13px; }

.result-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin: -12px 0 18px;
  letter-spacing: 0.5px;
}

/* North Indian Kundali chart */
.chart-wrapper {
  text-align: center;
  padding: 18px 8px;
}
.chart-label-large {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  margin-bottom: 14px;
}
.kundali-chart {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}
.chart-legend {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 10px 14px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  text-align: left;
  font-style: italic;
}

/* Planet table */
.planet-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  font-size: 13px;
}
.planet-table th {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  padding: 10px 12px;
  text-align: left;
  font-family: var(--font-display);
  font-style: italic;
  font-feature-settings: "swsh" 1;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.planet-table td {
  padding: 9px 12px;
  border-bottom: 0.5px solid rgba(212, 175, 55, 0.1);
  color: var(--text-secondary);
}
.planet-table tr:last-child td { border-bottom: none; }
.planet-table strong { color: var(--text-primary); font-weight: 500; }
.retrograde {
  color: #ff8a8a;
  font-weight: 600;
  font-size: 12px;
}

/* ==================== KUNDALI CHART (NORTH INDIAN) ==================== */
.kundali-chart {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.kundali-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 18px;
}
.kundali-chart-wrap {
  background: rgba(0, 0, 0, 0.25);
  border: 0.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 16px 12px;
}
.match-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0;
}
.match-chart-wrap {
  text-align: center;
}
.match-chart-wrap .kundali-chart {
  max-width: 200px;
}
.match-chart-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  margin-bottom: 8px;
}

.planet-list.compact .planet-row {
  font-size: 11px;
  padding: 4px 0;
}

/* Loading spinner */
.astro-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.astro-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 3px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.astro-loading p {
  font-size: 12px;
  font-style: italic;
}
.astro-error {
  background: rgba(255, 107, 107, 0.08);
  border: 0.5px solid rgba(255, 107, 107, 0.4);
  border-radius: 12px;
  padding: 18px;
  font-size: 13px;
  color: var(--text-secondary);
}
.astro-error strong { color: #ff6b6b; }

@media (max-width: 700px) {
  .kundali-charts { grid-template-columns: 1fr; }
  .match-charts { grid-template-columns: 1fr; }
}

/* ============ KUNDALI CHART (D1 + D9 NORTH INDIAN) ============ */
.kundali-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
.kundali-box {
  background: rgba(10, 4, 24, 0.4);
  border: 0.5px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.kundali-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  font-feature-settings: "swsh" 1;
  margin-bottom: 12px;
}
.kundali-chart-svg {
  width: 100%;
  height: auto;
  max-width: 320px;
}

/* ============ LOADING SPINNER ============ */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.astro-loading {
  text-align: center;
  padding: 50px 20px;
}
.loading-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ============ ERROR STATE ============ */
.astro-error {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 107, 107, 0.05);
  border: 0.5px solid rgba(255, 107, 107, 0.25);
  border-radius: 12px;
  color: var(--text-secondary);
}
.astro-error strong {
  color: #ff6b6b;
  display: block;
  margin-bottom: 8px;
}
.error-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .kundali-grid { grid-template-columns: 1fr; }
  .kundali-chart-svg { max-width: 280px; }
}
