      *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }
    html { scroll-behavior: smooth; }
    body {
      background-color: #ffffff;
      color: #0f172a;
      overflow-x: hidden;
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .font-display { font-family: 'Space Grotesk', sans-serif; }
    ::selection { background: #FF671F; color: #ffffff; }

    /* ---------- Background Grid ---------- */
    .bg-grid {
      position: fixed; inset: 0; z-index: -10;
      background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .glow-blob {
      position: fixed; border-radius: 50%;
      opacity: 0.22; z-index: -9; pointer-events: none;
      filter: blur(60px);
    }
    .blob-saffron {
      top: -10%; left: -10%; width: 550px; height: 550px;
      background: radial-gradient(circle, rgba(255,103,31,0.5) 0%, transparent 70%);
    }
    .blob-green {
      bottom: -10%; right: -10%; width: 550px; height: 550px;
      background: radial-gradient(circle, rgba(4,106,56,0.5) 0%, transparent 70%);
    }

    /* ---------- Fighter Jets ---------- */
    .sky-container { position: fixed; inset: 0; z-index: -5; pointer-events: none; overflow: hidden; }
    .jet-wrap { position: absolute; will-change: transform; }
    .jet {
      position: relative; width: 40px; height: 12px;
      background: linear-gradient(180deg, #cbd5e1, #94a3b8);
      border-radius: 50% 10% 10% 50%;
      box-shadow: inset -2px -2px 4px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.1);
    }
    .jet::after {
      content: ''; position: absolute; top: -10px; left: 15px;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 12px solid #64748b;
    }
    .jet::before {
      content: ''; position: absolute; top: 1px; left: 5px; width: 10px; height: 5px;
      background: #cbd5e1; border-radius: 5px 5px 0 0;
    }
    .smoke-trail {
      position: absolute; top: 50%; right: 100%; transform: translateY(-50%);
      height: 6px; width: 280px; border-radius: 10px; opacity: 0.85;
    }
    .smoke-saffron { background: linear-gradient(90deg, transparent, #FF671F); }
    .smoke-white { background: linear-gradient(90deg, transparent, #e2e8f0); box-shadow: 0 0 5px rgba(0,0,0,0.08); }
    .smoke-green { background: linear-gradient(90deg, transparent, #046A38); }

    .jet-1 { top: 15%; left: -300px; animation: flyRight 22s linear infinite; }
    .jet-2 { top: 17.5%; left: -300px; animation: flyRight 22s linear infinite 0.15s; }
    .jet-3 { top: 20%; left: -300px; animation: flyRight 22s linear infinite 0.3s; }

    @keyframes flyRight {
      0%   { transform: translate3d(0, 0, 0) scale(1.1) rotate(-5deg); }
      100% { transform: translate3d(calc(100vw + 500px), -220px, 0) scale(1.1) rotate(-10deg); }
    }

    /* ---------- Rotating Chakra ---------- */
    .ashoka-chakra {
      position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 650px; height: 650px; border-radius: 50%;
      border: 3px dashed rgba(6, 3, 141, 0.05);
      animation: spin 45s linear infinite; z-index: -1; pointer-events: none;
    }
    .ashoka-chakra::before {
      content: ''; position: absolute; inset: 50px;
      border-radius: 50%; border: 2px dashed rgba(6, 3, 141, 0.04);
    }
    .ashoka-chakra::after {
      content: ''; position: absolute; inset: 110px;
      border-radius: 50%; border: 1px dashed rgba(255, 103, 31, 0.05);
    }
    @keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

    /* ---------- Top Tricolor Border ---------- */
    .tricolor-border {
      height: 4px; width: 100%;
      background: linear-gradient(90deg, #FF671F 33.3%, #ffffff 33.3% 66.6%, #046A38 66.6%);
      position: relative; z-index: 60;
    }

    /* ---------- Marquee ---------- */
    .marquee-top {
      overflow: hidden; white-space: nowrap; display: flex;
      background: linear-gradient(90deg, #FF671F, #fff5e6, #ffffff, #e6f4ec, #046A38);
      padding: 8px 0;
      color: #06038D;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      position: relative; z-index: 50;
    }
    .marquee-top-content {
      display: flex; animation: marquee 32s linear infinite;
      gap: 40px;
    }
    .marquee-top-content span { display: inline-flex; align-items: center; gap: 8px; }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ---------- Navbar ---------- */
    .glass-nav {
      position: sticky; top: 0; z-index: 40;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .nav-container {
      max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
      height: 74px; display: flex; justify-content: space-between; align-items: center;
      gap: 16px;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 12px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800; font-size: 20px; color: #0f172a;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-brand-icon {
      width: 42px; height: 42px;
      background: linear-gradient(135deg, #FF671F, #06038D 55%, #046A38);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 18px;
      box-shadow: 0 6px 18px rgba(6, 3, 141, 0.25);
    }
    .nav-brand-text-gradient {
      background: linear-gradient(90deg, #FF671F, #06038D, #046A38);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-links {
      display: flex; align-items: center; gap: 6px;
      list-style: none;
    }
    .nav-links a {
      color: #334155; text-decoration: none;
      font-weight: 700; font-size: 14px;
      padding: 10px 16px; border-radius: 10px;
      cursor: pointer; transition: all 0.25s ease;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .nav-links a i { font-size: 13px; color: #64748b; transition: color 0.25s; }
    .nav-links a:hover {
      background: #f8fafc; color: #06038D;
    }
    .nav-links a:hover i { color: #06038D; }
    .nav-links a.active {
      background: linear-gradient(135deg, #06038D, #1e1eb5);
      color: #fff;
      box-shadow: 0 6px 18px rgba(6, 3, 141, 0.25);
    }
    .nav-links a.active i { color: #fff; }

    /* ---------- Hero ---------- */
    .hero {
      padding: 3.5rem 1.5rem 5rem;
      text-align: center;
      position: relative; z-index: 10;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 16px;
      background: #fff; border: 1px solid #e2e8f0;
      border-radius: 9999px;
      font-size: 12px; font-weight: 800;
      color: #334155; letter-spacing: 0.04em;
      text-transform: uppercase;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      margin-bottom: 20px;
    }
    .hero-badge-dots { display: inline-flex; gap: 4px; }
    .hero-badge-dots span {
      width: 6px; height: 6px; border-radius: 50%;
    }
    .hero-badge-dots .d-saffron { background: #FF671F; }
    .hero-badge-dots .d-white { background: #fff; border: 1px solid #cbd5e1; }
    .hero-badge-dots .d-green { background: #046A38; }

    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(28px, 5vw, 44px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      max-width: 820px;
      margin: 0 auto 16px;
      color: #0f172a;
    }
    .hero h1 .grad {
      background: linear-gradient(90deg, #FF671F, #06038D, #046A38);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero p {
      font-size: 16px;
      color: #64748b;
      max-width: 560px;
      margin: 0 auto;
      font-weight: 500;
      line-height: 1.65;
    }

    /* ---------- Sections ---------- */
    .section-wrap {
      position: relative; z-index: 10;
      padding: 0 1.5rem 4rem;
    }
    .container-narrow {
      max-width: 1100px; margin: 0 auto;
    }

    /* ---------- White Card Base ---------- */
    .card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.07);
      border-radius: 22px;
      padding: 2rem;
      box-shadow: 0 20px 45px rgba(6, 3, 141, 0.06), 0 4px 15px rgba(255, 103, 31, 0.03);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #FF671F, #06038D, #046A38);
      opacity: 0.9;
    }
    .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 60px rgba(6, 3, 141, 0.1), 0 6px 20px rgba(255, 103, 31, 0.06);
    }

    /* ---------- Section Header ---------- */
    .section-head {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 1.5rem;
    }
    .section-head-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #FF671F, #06038D 55%, #046A38);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 18px;
      box-shadow: 0 8px 18px rgba(6, 3, 141, 0.22);
    }
    .section-head h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px; font-weight: 800; color: #0f172a;
    }
    .section-head p {
      font-size: 13px; color: #64748b; margin-top: 2px; font-weight: 500;
    }

    /* ---------- QR Generator Grid ---------- */
    .qr-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: stretch;
    }
    @media (max-width: 860px) {
      .qr-grid { grid-template-columns: 1fr; }
    }

    /* Tabs */
    .tabs {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px;
    }
    .tabs button {
      flex: 1; min-width: 84px;
      padding: 12px 8px;
      border: 1.5px solid #e2e8f0;
      background: #fff;
      cursor: pointer;
      border-radius: 12px;
      font-weight: 700; font-size: 12px;
      color: #64748b;
      transition: all 0.25s ease;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      font-family: inherit;
    }
    .tabs button i { font-size: 17px; }
    .tabs button:hover {
      border-color: #06038D; color: #06038D;
      transform: translateY(-2px);
    }
    .tabs button.active {
      background: linear-gradient(135deg, #06038D, #1e1eb5);
      color: #fff; border-color: transparent;
      box-shadow: 0 8px 20px rgba(6, 3, 141, 0.28);
      transform: translateY(-2px);
    }
    .tabs button.active i { color: #fff; }

    /* Form */
    .form-tab { display: block; }
    .form-tab.hidden { display: none; }
    .form-label {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 700; color: #334155;
      margin-bottom: 8px;
    }
    .form-label i { color: #06038D; font-size: 13px; }

    .input-wrapper {
      position: relative;
      display: flex; align-items: center;
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      transition: all 0.25s ease;
    }
    .input-wrapper:focus-within {
      border-color: #06038D;
      box-shadow: 0 0 0 4px rgba(6, 3, 141, 0.1);
    }
    .input-prefix {
      padding-left: 14px;
      color: #94a3b8;
      font-size: 15px;
      display: flex; align-items: center;
      transition: color 0.25s;
    }
    .input-wrapper:focus-within .input-prefix { color: #06038D; }
    .form-input {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      padding: 14px;
      font-size: 14px;
      font-family: inherit;
      color: #0f172a;
      font-weight: 500;
    }
    .form-input::placeholder { color: #94a3b8; }

    /* QR Preview */
    .qr-preview {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      gap: 16px;
    }
    .qr-preview-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 800;
      color: #334155; text-transform: uppercase; letter-spacing: 0.08em;
    }
    .qr-preview-label i { color: #06038D; }
    .qr-container {
      background: linear-gradient(135deg, #fff8f3, #f0f4ff 55%, #eefbf3);
      padding: 22px;
      border-radius: 18px;
      display: inline-block;
      border: 1.5px dashed #c7d2fe;
      position: relative;
      transition: all 0.3s ease;
    }
    .qr-container::before {
      content: '';
      position: absolute; inset: 8px;
      border-radius: 12px;
      border: 1px dashed rgba(6, 3, 141, 0.08);
      pointer-events: none;
    }
    .qr-container img {
      width: 220px; height: 220px;
      object-fit: contain;
      background: #fff;
      border-radius: 10px;
      display: block;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

    /* ---------- Encode / Decode ---------- */
    .encode-box textarea {
      width: 100%;
      padding: 15px 16px;
      margin-top: 10px;
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      font-family: 'JetBrains Mono', 'Courier New', monospace;
      font-size: 14px;
      box-sizing: border-box;
      resize: vertical;
      min-height: 120px;
      transition: all 0.25s;
      background: #fbfcfe;
      color: #0f172a;
    }
    .encode-box textarea:focus {
      outline: none;
      border-color: #06038D;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(6, 3, 141, 0.1);
    }
    .btn-group {
      margin-top: 18px;
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .btn-navy {
      padding: 13px 26px;
      background: #06038D;
      color: #ffffff;
      border-radius: 9999px;
      font-weight: 800; font-size: 14px;
      border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 10px 25px -4px rgba(6, 3, 141, 0.3);
      transition: all 0.25s ease;
      font-family: inherit;
      position: relative; overflow: hidden;
    }
    .btn-navy::after {
      content: ''; position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s;
    }
    .btn-navy:hover::after { left: 100%; }
    .btn-navy:hover {
      background: #FF671F;
      box-shadow: 0 10px 25px -4px rgba(255, 103, 31, 0.45);
      transform: translateY(-2px);
    }
    .btn-outline {
      padding: 13px 26px;
      background: #fff;
      color: #06038D;
      border: 1.5px solid #06038D;
      border-radius: 9999px;
      font-weight: 800; font-size: 14px;
      cursor: pointer;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s ease;
      font-family: inherit;
    }
    .btn-outline:hover {
      background: #06038D; color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 22px -6px rgba(6, 3, 141, 0.35);
    }
    .btn-ghost {
      padding: 13px 20px;
      background: #f8fafc;
      color: #64748b;
      border: 1.5px solid #e2e8f0;
      border-radius: 9999px;
      font-weight: 700; font-size: 14px;
      cursor: pointer;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s ease;
      font-family: inherit;
    }
    .btn-ghost:hover {
      color: #EF4444; border-color: #EF4444; background: #fff;
    }

    .back-link {
      margin-top: 22px;
      display: inline-flex; align-items: center; gap: 8px;
      color: #06038D; cursor: pointer;
      font-weight: 800; font-size: 14px;
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .back-link:hover { gap: 12px; color: #FF671F; }

    /* ---------- Legal Tabs ---------- */
    .legal-tabs {
      background: #fff;
      padding: 8px;
      border-radius: 16px;
      display: flex; gap: 8px;
      margin-bottom: 22px;
      box-shadow: 0 12px 30px rgba(6, 3, 141, 0.06);
      border: 1px solid rgba(0,0,0,0.05);
      flex-wrap: wrap;
    }
    .legal-tabs button {
      flex: 1; min-width: 140px;
      padding: 14px 20px;
      border: none; background: transparent;
      cursor: pointer; border-radius: 12px;
      font-weight: 700; font-size: 14px;
      color: #64748b;
      transition: all 0.25s ease;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-family: inherit;
    }
    .legal-tabs button i { font-size: 14px; }
    .legal-tabs button:hover { color: #06038D; background: #f8fafc; }
    .legal-tabs button.active {
      background: linear-gradient(135deg, #06038D, #1e1eb5);
      color: #fff;
      box-shadow: 0 8px 20px rgba(6, 3, 141, 0.28);
    }

    .legal-content h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800; color: #0f172a;
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 12px;
      font-size: 22px;
    }
    .legal-content h4 i { color: #06038D; }
    .legal-content h5 {
      font-weight: 800; color: #1e293b;
      margin-top: 24px; margin-bottom: 8px;
      font-size: 16px;
      display: flex; align-items: center; gap: 8px;
    }
    .legal-content h5::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: linear-gradient(135deg, #FF671F, #046A38);
      display: inline-block;
    }
    .legal-content p, .legal-content li {
      color: #475569; line-height: 1.75; font-size: 14.5px;
      font-weight: 500;
    }
    .legal-content ul { padding-left: 22px; margin-top: 6px; }
    .legal-content ul li { margin: 6px 0; }
    .legal-content ul.check-list { list-style: none; padding-left: 0; }
    .legal-content ul.check-list li {
      display: flex; align-items: center; gap: 10px;
    }
    .legal-content ul.check-list li i {
      color: #046A38; font-size: 13px;
      background: #e6f4ec;
      width: 22px; height: 22px;
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .legal-content .effective {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 800;
      background: #fff8f3;
      color: #FF671F;
      padding: 6px 14px; border-radius: 9999px;
      text-transform: uppercase; letter-spacing: 0.06em;
      margin-bottom: 18px;
    }

    /* ---------- Pricing ---------- */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
      margin-top: 24px;
    }
    .price-card {
      background: #fff;
      border-radius: 22px;
      padding: 32px 28px;
      border: 1.5px solid #e2e8f0;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .price-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 55px rgba(6, 3, 141, 0.13);
      border-color: #c7d2fe;
    }
    .price-card.featured {
      background: linear-gradient(160deg, #06038D 0%, #0a0aa5 60%, #1e1eb5 100%);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 24px 55px rgba(6, 3, 141, 0.35);
    }
    .price-card.featured::before {
      content: 'POPULAR';
      position: absolute;
      top: 20px; right: -34px;
      background: linear-gradient(90deg, #FF671F, #ffae42);
      color: #fff;
      padding: 6px 42px;
      font-size: 10px; font-weight: 900;
      transform: rotate(45deg);
      letter-spacing: 0.12em;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .price-card.featured::after {
      content: '';
      position: absolute; top: -40%; right: -30%;
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(255,103,31,0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .plan-icon {
      width: 58px; height: 58px;
      border-radius: 16px;
      background: linear-gradient(135deg, #fff8f3, #eef2ff);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; color: #06038D;
      margin-bottom: 18px;
      border: 1px solid rgba(6, 3, 141, 0.08);
    }
    .price-card.featured .plan-icon {
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
    }
    .price-card h5 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800; font-size: 22px;
      margin-bottom: 4px;
    }
    .price-card .duration {
      font-size: 13px; font-weight: 700;
      color: #64748b; text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
    }
    .price-card.featured .duration { color: rgba(255,255,255,0.75); }
    .price-card .price {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 44px; font-weight: 800;
      margin: 8px 0 22px;
      display: flex; align-items: baseline; gap: 6px;
      line-height: 1;
    }
    .price-card .price span {
      font-size: 14px; font-weight: 600;
      color: #94a3b8;
    }
    .price-card.featured .price span { color: rgba(255,255,255,0.65); }
    .price-card ul {
      list-style: none; padding: 0;
      margin: 0 0 24px;
    }
    .price-card ul li {
      padding: 9px 0;
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; font-weight: 500;
      color: #475569;
    }
    .price-card.featured ul li { color: rgba(255,255,255,0.92); }
    .price-card ul li i {
      color: #046A38; font-size: 13px;
      background: #e6f4ec;
      width: 22px; height: 22px;
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .price-card.featured ul li i {
      background: rgba(255,255,255,0.2);
      color: #fff;
    }
    .buy-btn {
      width: 100%;
      padding: 14px;
      border-radius: 9999px;
      border: 1.5px solid #06038D;
      background: #fff;
      color: #06038D;
      font-weight: 800; font-size: 14px;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: inherit;
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    }
    .buy-btn:hover {
      background: #06038D; color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 25px -6px rgba(6, 3, 141, 0.4);
    }
    .price-card.featured .buy-btn {
      background: #FF671F; color: #fff;
      border-color: transparent;
      box-shadow: 0 12px 25px -6px rgba(255, 103, 31, 0.5);
    }
    .price-card.featured .buy-btn:hover {
      background: #fff; color: #06038D;
    }

    /* ---------- Dynamic Placeholder ---------- */
    .dynamic-hero {
      text-align: center;
      padding: 60px 30px;
    }
    .dynamic-icon {
      width: 88px; height: 88px;
      border-radius: 24px;
      background: linear-gradient(135deg, #06038D, #1e1eb5);
      margin: 0 auto 22px;
      display: flex; align-items: center; justify-content: center;
      font-size: 38px; color: #fff;
      box-shadow: 0 20px 45px rgba(6, 3, 141, 0.3);
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .dynamic-hero h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 26px; font-weight: 800;
      color: #0f172a; margin-bottom: 12px;
    }
    .dynamic-hero p {
      color: #64748b; font-size: 15px;
      max-width: 500px; margin: 0 auto 24px;
      line-height: 1.7; font-weight: 500;
    }

    /* ---------- Footer ---------- */
    .footer-clean {
      border-top: 1px solid #f1f5f9;
      background: #ffffff;
      padding: 2rem 1rem;
      text-align: center;
      position: relative; z-index: 10;
    }
    .footer-brand {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 12px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800; font-size: 16px;
      color: #0f172a;
    }
    .footer-brand-icon {
      width: 34px; height: 34px;
      background: linear-gradient(135deg, #FF671F, #06038D 55%, #046A38);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 14px;
    }
    .footer-socials {
      display: flex; justify-content: center; gap: 10px;
      margin: 14px 0;
    }
    .footer-socials a {
      width: 40px; height: 40px; border-radius: 50%;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      display: flex; align-items: center; justify-content: center;
      color: #64748b;
      text-decoration: none;
      transition: all 0.25s;
    }
    .footer-socials a:hover {
      background: linear-gradient(135deg, #06038D, #1e1eb5);
      color: #fff; border-color: transparent;
      transform: translateY(-4px);
      box-shadow: 0 8px 18px rgba(6, 3, 141, 0.28);
    }
    .footer-text {
      font-size: 12.5px;
      font-weight: 600;
      color: #94a3b8;
      display: flex; flex-wrap: wrap;
      align-items: center; justify-content: center; gap: 6px;
    }
    .flag-dots { display: inline-flex; gap: 4px; align-items: center; margin: 0 4px; }
    .flag-dots span { width: 6px; height: 6px; border-radius: 50%; }
    .dot-saffron { background: #FF671F; }
    .dot-white { background: #fff; border: 1px solid #cbd5e1; }
    .dot-green { background: #046A38; }

    /* ---------- Sections visibility ---------- */
    .hidden { display: none !important; }

    /* ---------- Responsive ---------- */
    @media (max-width: 768px) {
      .nav-container { height: 68px; padding: 0 1rem; }
      .nav-brand { font-size: 17px; }
      .nav-brand-icon { width: 38px; height: 38px; font-size: 16px; }
      .nav-links a { padding: 9px 10px; font-size: 12.5px; }
      .nav-links a span { display: none; }
      .nav-links a i { font-size: 16px; }
      .hero { padding: 2.5rem 1rem 3.5rem; }
      .card { padding: 1.5rem; border-radius: 18px; }
      .ashoka-chakra { width: 420px; height: 420px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }