
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #0B1A2C;
      --navy-mid: #132337;
      --navy-light: #1B3051;
      --gold: #C6973F;
      --gold-light: #D4AB5A;
      --cream: #F7F3EE;
      --white: #FFFFFF;
      --text-dark: #0B1A2C;
      --text-mid: #3D5068;
      --text-soft: #7A8FA6;
      --border: #DDE3EB;
      --font-head: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', sans-serif;
      --radius: 8px;
      --shadow: 0 4px 24px rgba(11,26,44,0.10);
      --shadow-lg: 0 12px 48px rgba(11,26,44,0.18);
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--white); color: var(--text-dark); line-height: 1.65; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ── DISCLAIMER OVERLAY ── */
    #disclaimer-overlay {
      position: fixed; inset: 0;
      background: rgba(11,26,44,0.85);
      backdrop-filter: blur(5px);
      z-index: 9999;
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
    }
    #disclaimer-box {
      background: var(--white);
      border-radius: 12px;
      max-width: 700px; width: 100%;
      max-height: 90vh; overflow-y: auto;
      box-shadow: var(--shadow-lg);
      display: flex; flex-direction: column;
    }
    .disc-header {
      background: var(--navy); color: var(--white);
      padding: 22px 30px;
      border-radius: 12px 12px 0 0;
      display: flex; align-items: center; gap: 14px;
      position: sticky; top: 0; z-index: 1;
    }
    .disc-header i { color: var(--gold); font-size: 1.5rem; }
    .disc-header div h2 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
    .disc-header div p { font-size: 0.78rem; opacity: 0.65; margin-top: 2px; }
    .disc-body { padding: 28px 30px; font-size: 0.865rem; color: var(--text-mid); line-height: 1.85; }
    .disc-body h3 { font-family: var(--font-head); font-size: 0.97rem; color: var(--text-dark); margin: 22px 0 8px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
    .disc-body h3:first-child { margin-top: 0; }
    .disc-body p { margin-bottom: 10px; }
    .disc-body ul { padding-left: 18px; margin-bottom: 10px; }
    .disc-body ul li { list-style: disc; margin-bottom: 6px; }
    .disc-advisory {
      background: #FFF8EC; border-left: 4px solid var(--gold);
      padding: 14px 18px; margin: 18px 0;
      border-radius: 0 var(--radius) var(--radius) 0;
      font-size: 0.84rem;
    }
    .disc-advisory strong { color: var(--text-dark); }
    .disc-footer {
      padding: 18px 30px 26px;
      border-top: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 14px;
    }
    .disc-check {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.84rem; color: var(--text-mid); cursor: pointer;
    }
    .disc-check input { margin-top: 3px; accent-color: var(--navy); flex-shrink: 0; }
    #disc-agree-btn {
      background: var(--navy); color: var(--white);
      border: none; padding: 13px 32px;
      border-radius: var(--radius);
      font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
      letter-spacing: 0.4px; cursor: not-allowed; opacity: 0.45;
      transition: all 0.25s; align-self: flex-end;
    }
    #disc-agree-btn.active { cursor: pointer; opacity: 1; }
    #disc-agree-btn.active:hover { background: var(--navy-light); transform: translateY(-1px); }

    /* ── TICKER ── */
    .ticker-bar {
      background: var(--navy); color: rgba(255,255,255,0.72);
      font-size: 0.78rem; padding: 7px 0; overflow: hidden;
      border-bottom: 1px solid rgba(198,151,63,0.3);
    }
    .ticker-track {
      display: flex; white-space: nowrap;
      animation: ticker 45s linear infinite;
    }
    .ticker-bar:hover .ticker-track { animation-play-state: paused; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .tick-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 30px; border-right: 1px solid rgba(255,255,255,0.10); }
    .tick-item .sym { color: var(--gold-light); font-weight: 600; }
    .tick-item .up  { color: #4CAF84; }
    .tick-item .dn  { color: #E05B5B; }

    /* ── SEBI STRIP ── */
    .sebi-strip {
      background: #EFF6FF; border-bottom: 1px solid #BFDBFE;
      padding: 6px 20px; font-size: 0.78rem; color: #1E40AF;
      text-align: center;
    }
    .sebi-strip i { margin-right: 6px; }

    /* ── NAVIGATION ── */
    header {
      position: sticky; top: 0; z-index: 900;
      background: var(--white); border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(11,26,44,0.06);
    }
    nav {
      max-width: 1200px; margin: 0 auto;
      padding: 0 28px;
      display: flex; align-items: center; height: 68px; gap: 0;
    }
    .nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; margin-right: auto; }
    .logo-icon {
      width: 40px; height: 40px; background: var(--navy);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
    }
    .logo-bars { display: flex; align-items: flex-end; gap: 2.5px; }
    .logo-bars span { display: block; width: 4px; background: var(--gold); border-radius: 1px 1px 0 0; }
    .logo-bars span:nth-child(1) { height: 9px; }
    .logo-bars span:nth-child(2) { height: 16px; }
    .logo-bars span:nth-child(3) { height: 12px; }
    .logo-bars span:nth-child(4) { height: 20px; }
    .logo-text .brand { font-family: var(--font-head); font-size: 1.22rem; font-weight: 700; color: var(--navy); }
    .logo-text .sub { font-size: 0.67rem; color: var(--text-soft); letter-spacing: 1.2px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a, .nav-dropdown > span {
      padding: 8px 14px; border-radius: var(--radius);
      font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
      cursor: pointer; transition: all 0.18s; display: flex; align-items: center; gap: 5px;
    }
    .nav-links a:hover, .nav-dropdown > span:hover { background: var(--cream); color: var(--navy); }
    .nav-links a.active { color: var(--navy); font-weight: 600; }
    .nav-dropdown { position: relative; }
    .nav-dropdown > span i { font-size: 0.7rem; }
    .dropdown-menu {
      position: absolute; top: calc(100% + 6px); left: 0;
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); box-shadow: var(--shadow);
      min-width: 180px; padding: 6px;
      opacity: 0; pointer-events: none; transform: translateY(-6px);
      transition: all 0.2s;
    }
    .nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
    .dropdown-menu a {
      display: block; padding: 9px 14px; font-size: 0.855rem;
      color: var(--text-mid); border-radius: 6px;
      transition: all 0.15s;
    }
    .dropdown-menu a:hover { background: var(--cream); color: var(--navy); padding-left: 18px; }
    .nav-cta {
      margin-left: 16px;
      background: var(--navy); color: var(--white) !important;
      padding: 9px 22px !important; border-radius: var(--radius);
      font-weight: 600 !important; font-size: 0.875rem !important;
      transition: all 0.2s !important;
    }
    .nav-cta:hover { background: var(--navy-light) !important; transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-left: 12px; }
    .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.25s; }
    .mobile-nav {
      display: none; position: fixed; inset: 0; top: 60px;
      background: var(--white); z-index: 850;
      padding: 16px; flex-direction: column; gap: 4px;
      border-top: 1px solid var(--border);
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 14px 16px; border-radius: var(--radius);
      font-size: 1rem; font-weight: 500; color: var(--text-mid);
      border-bottom: 1px solid var(--border); min-height: 48px;
      display: flex; align-items: center;
    }
    .mobile-nav a:hover { background: var(--cream); }
    .mobile-nav .m-cta {
      margin-top: 12px; background: var(--navy); color: var(--white);
      text-align: center; padding: 16px; border-radius: var(--radius);
      font-weight: 600; justify-content: center;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0F2744 100%);
      min-height: 86vh; position: relative; overflow: hidden;
      display: flex; align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(198,151,63,0.08) 0%, transparent 60%);
    }
    .hero-grid-bg {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                        linear-gradient(90deg, var(--gold) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 80px 28px 60px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
      position: relative; z-index: 2;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(198,151,63,0.12); border: 1px solid rgba(198,151,63,0.3);
      color: var(--gold-light); padding: 6px 14px; border-radius: 20px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
      text-transform: uppercase; margin-bottom: 22px;
    }
    .hero-badge i { font-size: 0.75rem; }
    .hero h1 {
      font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--white); line-height: 1.25; font-weight: 700; margin-bottom: 18px;
    }
    .hero h1 em { color: var(--gold-light); font-style: normal; }
    .hero-sub {
      color: rgba(255,255,255,0.70); font-size: 1.05rem;
      line-height: 1.75; margin-bottom: 34px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: var(--navy);
      padding: 13px 28px; border-radius: var(--radius);
      font-weight: 700; font-size: 0.9rem;
      transition: all 0.22s; display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid var(--gold);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,151,63,0.35); }
    .btn-outline {
      background: transparent; color: var(--white);
      padding: 13px 28px; border-radius: var(--radius);
      font-weight: 600; font-size: 0.9rem;
      border: 2px solid rgba(255,255,255,0.3);
      transition: all 0.22s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
    .hero-stats {
      display: flex; gap: 28px; margin-top: 42px; flex-wrap: wrap;
    }
    .h-stat { border-left: 2px solid rgba(198,151,63,0.4); padding-left: 16px; }
    .h-stat .num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--white); }
    .h-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.50); margin-top: 2px; }
    .hero-card-wrap { display: flex; flex-direction: column; gap: 14px; }
    .info-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 10px; padding: 20px 22px;
      backdrop-filter: blur(10px);
      display: flex; align-items: flex-start; gap: 16px;
      transition: all 0.25s;
    }
    .info-card:hover { background: rgba(255,255,255,0.10); transform: translateX(4px); }
    .info-card .ic-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: rgba(198,151,63,0.15);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    .info-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
    .info-card p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
    .sebi-tag {
      display: inline-block; background: rgba(76,175,132,0.15);
      border: 1px solid rgba(76,175,132,0.35); color: #4CAF84;
      font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 4px;
      letter-spacing: 0.5px; margin-top: 6px;
    }

    /* ── SECTION COMMONS ── */
    section { padding: 80px 28px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 14px;
    }
    .section-sub { font-size: 1rem; color: var(--text-mid); max-width: 560px; line-height: 1.75; }
    .section-head { margin-bottom: 52px; }
    .section-head.center { text-align: center; }
    .section-head.center .section-sub { margin: 0 auto; }
    hr.gold-rule { border: none; border-top: 2px solid var(--gold); width: 48px; margin: 16px 0 0; }
    .section-head.center hr.gold-rule { margin: 16px auto 0; }

    /* ── WHY CHOOSE US ── */
    .why-section { background: var(--cream); }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
    .why-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 28px 24px;
      transition: all 0.25s; position: relative; overflow: hidden;
    }
    .why-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--gold); transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .why-card:hover::after { transform: scaleX(1); }
    .wc-icon {
      width: 48px; height: 48px; border-radius: 10px;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.2rem; margin-bottom: 18px;
    }
    .why-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
    .why-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }

    /* ── ABOUT ── */
    .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .about-visual {
      background: var(--navy); border-radius: 16px;
      padding: 40px 36px; position: relative; overflow: hidden;
    }
    .about-visual::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 180px; height: 180px; border-radius: 50%;
      background: rgba(198,151,63,0.08);
    }
    .av-row {
      display: flex; align-items: center; gap: 14px;
      padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .av-row:last-child { border-bottom: none; }
    .av-row i { color: var(--gold); font-size: 1rem; width: 20px; text-align: center; }
    .av-row .txt { font-size: 0.875rem; color: rgba(255,255,255,0.80); }
    .av-row .txt strong { color: var(--white); font-weight: 600; }
    .about-text { }
    .about-points { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
    .ap-item { display: flex; align-items: flex-start; gap: 14px; }
    .ap-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(198,151,63,0.10); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 0.9rem;
    }
    .ap-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
    .ap-item p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; }

    /* ── SERVICES ── */
    .services-section { background: var(--cream); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
    .srv-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 28px 26px;
      transition: all 0.25s; display: flex; flex-direction: column;
    }
    .srv-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gold); }
    .srv-num { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 14px; }
    .srv-icon {
      width: 48px; height: 48px;
      background: var(--navy); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.2rem; margin-bottom: 16px;
    }
    .srv-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
    .srv-card ul { flex: 1; }
    .srv-card ul li {
      font-size: 0.83rem; color: var(--text-mid); padding: 5px 0;
      border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px;
    }
    .srv-card ul li:last-child { border-bottom: none; }
    .srv-card ul li i { color: var(--gold); margin-top: 4px; font-size: 0.75rem; flex-shrink: 0; }
    .srv-card .srv-link {
      margin-top: 18px; font-size: 0.83rem; font-weight: 600;
      color: var(--navy); display: flex; align-items: center; gap: 6px;
    }
    .srv-card:hover .srv-link { color: var(--gold); }

    /* ── PROCESS ── */
    .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
    .process-grid::before {
      content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
      background: linear-gradient(to right, var(--gold), transparent);
      opacity: 0.25;
    }
    .proc-step { text-align: center; padding: 28px 20px; }
    .proc-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--navy); border: 3px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--gold);
    }
    .proc-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
    .proc-step p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; }

    /* ── PRICING ── */
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
    .price-card {
      border: 1px solid var(--border); border-radius: 12px;
      padding: 32px 28px; background: var(--white);
      display: flex; flex-direction: column; transition: all 0.25s;
      position: relative;
    }
    .price-card.featured {
      background: var(--navy); border-color: var(--gold);
      box-shadow: var(--shadow-lg);
    }
    .price-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: var(--shadow); }
    .pop-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--navy);
      font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 20px;
      letter-spacing: 0.5px; white-space: nowrap;
    }
    .price-plan { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
    .price-card.featured .price-plan { color: var(--gold); }
    .price-card:not(.featured) .price-plan { color: var(--text-soft); }
    .price-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
    .price-card.featured .price-name { color: var(--white); }
    .price-desc { font-size: 0.83rem; color: var(--text-mid); margin-bottom: 22px; }
    .price-card.featured .price-desc { color: rgba(255,255,255,0.55); }
    .price-amt {
      font-family: var(--font-head); font-size: 2rem; font-weight: 700;
      margin-bottom: 6px; display: flex; align-items: flex-start; gap: 4px;
    }
    .price-card.featured .price-amt { color: var(--gold-light); }
    .price-amt .cur { font-size: 1rem; margin-top: 8px; }
    .price-period { font-size: 0.8rem; color: var(--text-soft); margin-bottom: 28px; }
    .price-card.featured .price-period { color: rgba(255,255,255,0.4); }
    .price-features { flex: 1; border-top: 1px solid var(--border); padding-top: 20px; }
    .price-card.featured .price-features { border-color: rgba(255,255,255,0.10); }
    .price-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.845rem; padding: 7px 0;
      color: var(--text-mid);
    }
    .price-card.featured .price-features li { color: rgba(255,255,255,0.75); }
    .price-features li i { color: var(--gold); margin-top: 3px; font-size: 0.78rem; flex-shrink: 0; }
    .price-btn {
      margin-top: 24px; padding: 12px 24px;
      border-radius: var(--radius); font-weight: 700; font-size: 0.875rem;
      text-align: center; transition: all 0.22s; border: 2px solid;
      display: block;
    }
    .price-card:not(.featured) .price-btn {
      border-color: var(--navy); color: var(--navy); background: transparent;
    }
    .price-card:not(.featured) .price-btn:hover { background: var(--navy); color: var(--white); }
    .price-card.featured .price-btn {
      background: var(--gold); color: var(--navy); border-color: var(--gold);
    }
    .price-card.featured .price-btn:hover { background: var(--gold-light); }

    /* ── COMPLIANCE TABLE ── */
    .compliance-section { background: var(--cream); }
    .comp-table { width: 100%; border-collapse: collapse; font-size: 0.855rem; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
    .comp-table thead { background: var(--navy); color: var(--white); }
    .comp-table thead th { padding: 14px 18px; font-weight: 600; text-align: left; font-size: 0.82rem; }
    .comp-table tbody tr { background: var(--white); border-bottom: 1px solid var(--border); }
    .comp-table tbody tr:last-child { border-bottom: none; }
    .comp-table tbody td { padding: 12px 18px; color: var(--text-mid); }
    .comp-table tbody td:first-child { color: var(--text-dark); font-weight: 500; }
    .comp-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-soft); line-height: 1.7; }

    /* ── TESTIMONIALS ── */
    .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
    .testi-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 28px 24px;
      transition: all 0.25s; position: relative;
    }
    .testi-card::before {
      content: '\201C'; font-family: var(--font-head); font-size: 5rem; line-height: 1;
      color: var(--gold); opacity: 0.15;
      position: absolute; top: 12px; left: 20px;
    }
    .testi-card:hover { box-shadow: var(--shadow); }
    .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
    .testi-card p { font-size: 0.855rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
    }
    .testi-author .name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
    .testi-author .role { font-size: 0.75rem; color: var(--text-soft); }

    /* ── FAQ ── */
    .faq-section { background: var(--cream); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .faq-item {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
    }
    .faq-q {
      padding: 18px 22px; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
      font-weight: 600; font-size: 0.9rem; color: var(--text-dark);
      transition: background 0.15s;
    }
    .faq-q:hover { background: var(--cream); }
    .faq-q i { color: var(--gold); transition: transform 0.25s; flex-shrink: 0; }
    .faq-item.open .faq-q i { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
      padding: 0 22px;
    }
    .faq-item.open .faq-a { max-height: 200px; }
    .faq-a p {
      font-size: 0.855rem; color: var(--text-mid);
      line-height: 1.8; padding: 0 0 18px;
      border-top: 1px solid var(--border); padding-top: 14px;
    }

    /* ── CONTACT ── */
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .contact-info { display: flex; flex-direction: column; gap: 18px; }
    .ci-item { display: flex; align-items: flex-start; gap: 16px; }
    .ci-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--navy); border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    .ci-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
    .ci-item p { font-size: 0.84rem; color: var(--text-mid); }
    .contact-form-box {
      background: var(--cream); border: 1px solid var(--border);
      border-radius: 12px; padding: 36px 32px;
    }
    .contact-form-box h3 {
      font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
      color: var(--text-dark); margin-bottom: 24px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
    .form-group input, .form-group select, .form-group textarea {
      padding: 11px 14px; border: 1px solid var(--border);
      border-radius: var(--radius); font-family: var(--font-body);
      font-size: 0.875rem; color: var(--text-dark); background: var(--white);
      transition: border-color 0.2s; outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--navy);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%; padding: 13px; background: var(--navy); color: var(--white);
      border: none; border-radius: var(--radius); font-family: var(--font-body);
      font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.22s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

    /* ── IMPORTANT NOTICE BAND ── */
    .notice-band {
      background: var(--navy); padding: 20px 28px; text-align: center;
    }
    .notice-band p {
      font-size: 0.82rem; color: rgba(255,255,255,0.60); line-height: 1.7;
      max-width: 900px; margin: 0 auto;
    }
    .notice-band strong { color: var(--gold-light); }

    /* ── FOOTER ── */
    footer {
      background: #060F1A; color: rgba(255,255,255,0.65);
      padding: 60px 28px 28px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
      padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand .logo-text .brand { color: var(--white); }
    .footer-brand .logo-text .sub { color: rgba(255,255,255,0.35); }
    .footer-brand p { font-size: 0.84rem; line-height: 1.8; margin: 16px 0 20px; max-width: 300px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-socials a {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: all 0.2s;
    }
    .footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .footer-col h4 {
      font-size: 0.82rem; font-weight: 700; letter-spacing: 1.2px;
      text-transform: uppercase; color: var(--white); margin-bottom: 18px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 0.84rem; transition: color 0.15s; }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
      font-size: 0.78rem; color: rgba(255,255,255,0.35);
    }
    .footer-bottom a { color: rgba(255,255,255,0.45); }
    .footer-bottom a:hover { color: var(--gold-light); }
    .sebi-reg { color: var(--gold-light); font-weight: 600; }

    /* ── BACK TO TOP ── */
    #btt {
      position: fixed; bottom: 28px; right: 28px;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow); cursor: pointer; z-index: 800;
      opacity: 0; pointer-events: none; transition: all 0.25s; border: none;
      font-size: 1rem;
    }
    #btt.show { opacity: 1; pointer-events: all; }
    #btt:hover { background: var(--navy-light); transform: translateY(-2px); }

    /* ══════════════════════════════════════════
       MOBILE-FIRST RESPONSIVE SYSTEM
       Base = mobile, scale up with min-width
    ══════════════════════════════════════════ */

    /* ── BASE (mobile default) ── */
    section { padding: 52px 16px; }
    .container { padding: 0 4px; }
    nav { padding: 0 16px; height: 60px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero - single column stack */
    .hero { min-height: 100svh; }
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 80px 16px 40px;
    }
    .hero h1 { font-size: 1.75rem; line-height: 1.25; }
    .hero-sub { font-size: 0.92rem; }
    .hero-badge { font-size: 0.7rem; padding: 5px 10px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 13px 20px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; margin-top: 28px; }
    .h-stat { flex: 1 1 calc(50% - 16px); min-width: 100px; }
    .h-stat .num { font-size: 1.35rem; }
    .hero-card-wrap { display: grid; grid-template-columns: 1fr; gap: 10px; }
    .scroll-indicator { display: none; }

    /* About */
    .about-inner { grid-template-columns: 1fr; gap: 28px; }
    .about-visual { padding: 24px 18px; }
    .av-row { padding: 11px 0; }
    .av-row .txt { font-size: 0.8rem; }
    .about-points { gap: 12px; }

    /* Why grid */
    .why-grid { grid-template-columns: 1fr; gap: 14px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .srv-card { padding: 22px 18px; }

    /* Process */
    .process-grid { grid-template-columns: 1fr; gap: 0; }
    .process-grid::before { display: none; }
    .proc-step { padding: 20px 16px; display: flex; align-items: flex-start; gap: 16px; text-align: left; }
    .proc-num { width: 52px; height: 52px; font-size: 1.1rem; flex-shrink: 0; margin: 0; }
    .proc-step h4 { margin-bottom: 4px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .price-card { padding: 24px 20px; }

    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; gap: 10px; }
    .faq-q { font-size: 0.85rem; padding: 15px 16px; }

    /* Contact */
    .contact-inner { grid-template-columns: 1fr; gap: 28px; }
    .contact-form-box { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    footer { padding: 40px 16px 20px; }

    /* Ticker */
    .ticker-bar { font-size: 0.72rem; }

    /* Section typography */
    .section-title { font-size: 1.5rem; }
    .section-sub { font-size: 0.88rem; }
    .section-head { margin-bottom: 36px; }

    /* WhatsApp + BTT */
    .whatsapp-float { bottom: 76px; right: 16px; width: 46px; height: 46px; font-size: 1.3rem; }
    #btt { bottom: 20px; right: 16px; width: 40px; height: 40px; }

    /* Hero chart smaller */
    .hero-chart-wrap { opacity: 0.3; }

    /* Testimonials */
    .testi-grid { grid-template-columns: 1fr; gap: 14px; }
    .testi-card { padding: 22px 18px; }

    /* Compliance table */
    .comp-table thead th, .comp-table tbody td { padding: 9px 10px; font-size: 0.75rem; }

    /* ── SMALL TABLET: 480px+ ── */
    @media (min-width: 480px) {
      .hero-card-wrap { grid-template-columns: 1fr 1fr; gap: 12px; }
      .h-stat { flex: unset; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
    }

    /* ── TABLET: 640px+ ── */
    @media (min-width: 640px) {
      section { padding: 68px 24px; }
      nav { padding: 0 22px; height: 64px; }
      .hero-inner { padding: 80px 24px 52px; }
      .hero h1 { font-size: 2.1rem; }
      .hero-actions { flex-direction: row; }
      .btn-primary, .btn-outline { width: auto; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr 1fr; }
      .hero-card-wrap { grid-template-columns: 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
    }

    /* ── DESKTOP: 960px+ ── */
    @media (min-width: 960px) {
      section { padding: 80px 28px; }
      nav { padding: 0 28px; height: 68px; }
      .nav-links { display: flex; }
      .hamburger { display: none; }
      .hero { min-height: 86vh; }
      .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 80px 28px 60px;
      }
      .hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
      .hero-sub { font-size: 1.05rem; }
      .hero-card-wrap { grid-template-columns: 1fr; }
      .scroll-indicator { display: inline-flex; }
      .about-inner { grid-template-columns: 1fr 1fr; gap: 72px; }
      .about-visual { padding: 40px 36px; }
      .why-grid { grid-template-columns: repeat(3, 1fr); }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .process-grid { grid-template-columns: repeat(5, 1fr); }
      .process-grid::before { display: block; }
      .proc-step { text-align: center; padding: 28px 20px; flex-direction: column; align-items: center; }
      .proc-num { width: 72px; height: 72px; font-size: 1.4rem; margin: 0 auto 20px; }
      .pricing-grid { grid-template-columns: repeat(3, 1fr); }
      .testi-grid { grid-template-columns: repeat(3, 1fr); }
      .faq-grid { grid-template-columns: 1fr 1fr; }
      .contact-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
      .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
      .footer-bottom { flex-direction: row; align-items: center; }
      footer { padding: 60px 28px 28px; }
      .hero-chart-wrap { opacity: 0.45; }
    }

    /* ── LARGE DESKTOP: 1200px+ ── */
    @media (min-width: 1200px) {
      .container { max-width: 1200px; margin: 0 auto; }
      .hero-inner { max-width: 1200px; }
      .why-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ── HERO BACKGROUND IMAGE ── */
    .hero-bg-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; opacity: 0.18; z-index: 1; pointer-events: none;
    }
    .hero-canvas {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
    }
    .hero-inner { z-index: 3; }

    /* ── FLOATING ANIMATION ── */
    @keyframes floatUpDown {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    .animate-float {
      animation: floatUpDown 4s ease-in-out infinite;
    }

    /* ── PULSE BADGE ── */
    @keyframes pulseBadge {
      0%, 100% { box-shadow: 0 0 0 0 rgba(198,151,63,0.4); }
      50% { box-shadow: 0 0 0 10px rgba(198,151,63,0); }
    }
    .animate-pulse-badge {
      animation: pulseBadge 2.5s ease-in-out infinite;
    }

    /* ── LIVE CHART BAR ANIMATION in hero ── */
    @keyframes barGrow {
      0% { transform: scaleY(0.3); }
      50% { transform: scaleY(1); }
      100% { transform: scaleY(0.3); }
    }
    .logo-bars span {
      animation: barGrow 1.8s ease-in-out infinite;
    }
    .logo-bars span:nth-child(1) { animation-delay: 0s; }
    .logo-bars span:nth-child(2) { animation-delay: 0.2s; }
    .logo-bars span:nth-child(3) { animation-delay: 0.4s; }
    .logo-bars span:nth-child(4) { animation-delay: 0.6s; }

    /* ── SECTION GRADIENT DIVIDERS ── */
    .why-section, .services-section, .faq-section, .compliance-section {
      position: relative;
    }
    .why-section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* ── WHY CARD GLOW ── */
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(198,151,63,0.15);
      border-color: var(--gold);
    }
    .wc-icon {
      transition: transform 0.3s, background 0.3s;
    }
    .why-card:hover .wc-icon {
      transform: rotate(-8deg) scale(1.1);
      background: var(--gold);
      color: var(--navy);
    }

    /* ── SERVICE CARD SHINE ── */
    .srv-card {
      overflow: hidden;
      position: relative;
    }
    .srv-card::before {
      content: '';
      position: absolute; top: -60%; left: -60%;
      width: 60%; height: 180%;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
      transform: skewX(-20deg);
      transition: left 0.5s ease;
    }
    .srv-card:hover::before { left: 130%; }

    /* ── PROCESS STEP GLOW ── */
    .proc-num {
      transition: all 0.3s;
      position: relative;
    }
    .proc-step:hover .proc-num {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 0 20px rgba(198,151,63,0.5);
      transform: scale(1.1);
    }

    /* ── TESTIMONIAL SECTION BACKGROUND ── */
    .testi-section {
      background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%);
    }
    .testi-card {
      transition: all 0.3s;
    }
    .testi-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(11,26,44,0.12);
      border-color: var(--gold);
    }

    /* ── PROCESS SECTION BACKGROUND ── */
    .process-section {
      background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
    }

    /* ── ABOUT SECTION VISUAL IMAGE ── */
    .about-visual {
      overflow: hidden;
      position: relative;
    }
    .about-visual-img {
      width: 100%; border-radius: 12px; margin-bottom: 20px;
      opacity: 0.85;
    }

    /* ── ANIMATED COUNTER ── */
    .h-stat .num {
      display: inline-block;
      animation: countUp 0.5s ease-out;
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── GLOWING GOLD RULE ── */
    hr.gold-rule {
      animation: expandRule 0.8s ease forwards;
      width: 0;
    }
    @keyframes expandRule {
      to { width: 48px; }
    }

    /* ── FORM INPUT GLOW ── */
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(198,151,63,0.15);
    }

    /* ── PRICING CARD FEATURED GLOW ── */
    .price-card.featured {
      animation: featuredPulse 3s ease-in-out infinite;
    }
    @keyframes featuredPulse {
      0%, 100% { box-shadow: 0 12px 48px rgba(11,26,44,0.18); }
      50% { box-shadow: 0 16px 60px rgba(198,151,63,0.25); }
    }

    /* ── TICKER GLOW ── */
    .ticker-bar {
      background: linear-gradient(90deg, var(--navy) 0%, #0F2744 50%, var(--navy) 100%);
      border-bottom: 1px solid rgba(198,151,63,0.5);
    }

    /* ── BACK TO TOP PULSE ── */
    #btt.show {
      animation: bttPop 0.4s cubic-bezier(.34,1.56,.64,1) forwards;
    }
    @keyframes bttPop {
      from { transform: scale(0); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    /* ── SECTION LABEL UNDERLINE ANIMATION ── */
    .section-label {
      position: relative;
      display: inline-block;
    }

    /* ── MOBILE NAV SLIDE ── */
    .mobile-nav {
      animation: slideDown 0.25s ease;
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── HERO STATS BORDER LEFT GLOW ── */
    .h-stat {
      transition: border-color 0.3s;
    }
    .h-stat:hover {
      border-left-color: var(--gold-light);
    }

    /* ── INFO CARD HOVER GLOW ── */
    .info-card:hover {
      background: rgba(255,255,255,0.13);
      box-shadow: 0 8px 32px rgba(198,151,63,0.12);
      border-color: rgba(198,151,63,0.3);
    }

    /* ══════════════════════════════
       GIF-LIKE ANIMATED ELEMENTS
    ══════════════════════════════ */

    /* ── LIVE DOT in Ticker ── */
    .live-dot {
      display: inline-block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #4CAF84;
      margin: 0 10px 0 12px;
      vertical-align: middle;
      flex-shrink: 0;
      animation: livePulse 1.2s ease-in-out infinite;
      box-shadow: 0 0 6px #4CAF84;
    }
    @keyframes livePulse {
      0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 4px #4CAF84; }
      50% { opacity: 0.5; transform: scale(1.4); box-shadow: 0 0 12px #4CAF84; }
    }
    .ticker-bar { display: flex; align-items: center; }

    /* ── ANIMATED SVG CHART (Hero) ── */
    .hero-chart-wrap {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2; opacity: 0.45;
      pointer-events: none;
    }
    .hero-svg-chart {
      width: 100%; height: auto; display: block;
    }
    .chart-line {
      stroke-dasharray: 600;
      stroke-dashoffset: 600;
      animation: drawLine 2.5s ease forwards;
    }
    @keyframes drawLine {
      to { stroke-dashoffset: 0; }
    }
    .chart-dot {
      animation: dotPop 0.4s ease 2.4s both, dotBlink 1.5s ease 2.8s infinite;
    }
    @keyframes dotPop {
      from { r: 0; opacity: 0; }
      to   { r: 5; opacity: 1; }
    }
    @keyframes dotBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.2; }
    }
    .chart-area {
      opacity: 0;
      animation: fadeInArea 1s ease 2s forwards;
    }
    @keyframes fadeInArea {
      to { opacity: 1; }
    }
    /* Candle sticks animate in */
    .candle { transform-origin: bottom; animation: candleGrow 0.6s ease backwards; }
    .candle:nth-child(1)  { animation-delay: 0.1s; }
    .candle:nth-child(2)  { animation-delay: 0.25s; }
    .candle:nth-child(3)  { animation-delay: 0.4s; }
    .candle:nth-child(4)  { animation-delay: 0.55s; }
    .candle:nth-child(5)  { animation-delay: 0.7s; }
    .candle:nth-child(6)  { animation-delay: 0.85s; }
    .candle:nth-child(7)  { animation-delay: 1s; }
    .candle:nth-child(8)  { animation-delay: 1.15s; }
    @keyframes candleGrow {
      from { transform: scaleY(0); opacity: 0; }
      to   { transform: scaleY(1); opacity: 0.7; }
    }

    /* ── TYPED TEXT CURSOR ── */
    .typed-text {
      border-right: 3px solid var(--gold-light);
      padding-right: 3px;
      animation: cursorBlink 0.75s step-end infinite;
      color: var(--gold-light);
    }
    @keyframes cursorBlink {
      0%, 100% { border-color: var(--gold-light); }
      50% { border-color: transparent; }
    }

    /* ── SCROLL MOUSE INDICATOR ── */
    .scroll-indicator {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 44px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 14px; margin-top: 36px;
    }
    .scroll-indicator span {
      display: block; width: 4px; height: 8px;
      background: var(--gold-light); border-radius: 2px;
      animation: scrollBounce 1.6s ease infinite;
    }
    @keyframes scrollBounce {
      0% { transform: translateY(-6px); opacity: 0; }
      50% { opacity: 1; }
      100% { transform: translateY(6px); opacity: 0; }
    }

    /* ── FLOATING WHATSAPP BUTTON ── */
    .whatsapp-float {
      position: fixed; bottom: 84px; right: 28px;
      width: 52px; height: 52px; border-radius: 50%;
      background: #25D366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; z-index: 800;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      animation: waFloat 2.5s ease-in-out infinite;
      transition: transform 0.2s;
      text-decoration: none;
    }
    .whatsapp-float:hover { transform: scale(1.15); }
    .wa-tooltip {
      position: absolute; right: 62px;
      background: rgba(0,0,0,0.75); color: #fff;
      font-size: 0.75rem; padding: 5px 10px;
      border-radius: 6px; white-space: nowrap;
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s; font-family: var(--font-body);
    }
    .whatsapp-float:hover .wa-tooltip { opacity: 1; }
    @keyframes waFloat {
      0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50% { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }
    }

    /* ── LOTTIE PLAYER STYLING ── */
    .about-lottie { border-radius: 12px; }
