:root {
    --orange: #FF5722;
    --dark: #1A1A2E;
    --bg: #FAFAF7;
    --black: #111111;
    --yellow: #FFD600;
    --white: #FFFFFF;
    --green: #00C853;
    --shadow: 5px 5px 0px #111111;
    --shadow-lg: 8px 8px 0px #111111;
    --shadow-sm: 3px 3px 0px #111111;
    --border: 3px solid #111111;
    --border-thick: 4px solid #111111;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    font-family: 'Archivo', sans-serif;
    color: var(--black);
    overflow-x: hidden;
  }

  /* Bengali-only sections use Hind Siliguri */
  .hero-sub,
  .why-intro,
  .why-card-title,
  .why-card-desc,
  .reality-text-body,
  .serve-desc,
  .service-desc,
  .step-desc,
  .testi-quote,
  .cta-banner-sub,
  .footer-brand p {
    font-family: 'Hind Siliguri', sans-serif !important;
  }
  .why-section .section-title {
    font-family: 'Hind Siliguri', sans-serif !important;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.6;
  }

  /* ── MARQUEE TOP ── */
  .top-bar {
    background: var(--orange);
    border-bottom: var(--border-thick);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .top-bar-track {
    display: inline-flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
  }
  .top-bar-item {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .top-bar-item::before { content: '★ '; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── NAVBAR ── */
  nav {
    background: var(--bg);
    border-bottom: var(--border-thick);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 500;
  }
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img {
    height: 44px;
    width: auto;
  }
  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 6px 14px;
    border: var(--border);
    border-left: none;
    transition: background 0.1s;
    display: block;
  }
  .nav-links li:first-child a { border-left: var(--border); border-radius: 8px 0 0 8px; }
  .nav-links li:last-child a { border-radius: 0 8px 8px 0; }
  .nav-links a:hover { background: var(--yellow); }
  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    border: var(--border) !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    box-shadow: var(--shadow-sm);
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 13px !important;
    transition: all 0.1s !important;
    text-decoration: none;
  }
  .nav-cta:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 5px 5px 0 var(--black) !important;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
  }
  .hamburger span {
    display: block;
    width: 22px; height: 3px;
    background: var(--black);
    border-radius: 2px;
  }

  /* ── HERO ── */
  .hero {
    padding: 60px 24px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    border: var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    text-transform: uppercase;
  }
  .badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid var(--black);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.4); }
  }
  .hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(42px, 10vw, 86px);
    line-height: 0.95;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -2px;
  }
  .hero-title .highlight {
    background: var(--orange);
    color: var(--white);
    padding: 0 12px;
    display: inline-block;
    transform: rotate(-1deg);
    border: var(--border);
    box-shadow: var(--shadow);
  }
  .hero-title .underline-yellow {
    position: relative;
    display: inline-block;
  }
  .hero-title .underline-yellow::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 8px;
    background: var(--yellow);
    z-index: -1;
    border: 2px solid var(--black);
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 500;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    padding: 16px 32px;
    border: var(--border-thick);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.12s;
    letter-spacing: 0.5px;
  }
  .btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--black);
    background: var(--white);
    color: var(--black);
  }
  .btn-secondary {
    background: var(--white);
    color: var(--black);
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    padding: 16px 32px;
    border: var(--border-thick);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.12s;
  }
  .btn-secondary:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--black);
    background: var(--orange);
    color: var(--white);
  }

  /* Stats row */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: var(--border-thick);
    border-radius: 14px;
    overflow: hidden;
  }
  .stat-box {
    padding: 22px 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: var(--border-thick);
  }
  .stat-box:last-child { border-right: none; }
  .stat-box:hover { background: var(--yellow); }
  .stat-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    color: var(--orange);
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
  }

  /* ── SHARED SECTION ── */
  .section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-tag {
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 48px;
    letter-spacing: -1px;
  }

  /* ── WHY WEBSITE ── */
  .why-section {
    background: var(--dark);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    padding: 80px 24px;
  }
  .why-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .why-section .section-title,
  .why-section .section-tag {
    font-family: 'Hind Siliguri', 'Archivo Black', sans-serif !important;
  }
  .why-section .section-title { color: var(--white); }
  .why-section .section-tag { color: var(--yellow); }

  .why-intro {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 52px;
    font-weight: 500;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
  }
  .why-card {
    border: var(--border-thick);
    border-radius: 14px;
    padding: 28px 24px;
    background: var(--bg);
    box-shadow: var(--shadow);
    transition: all 0.12s;
    position: relative;
  }
  .why-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 var(--black);
    background: var(--white);
  }
  .why-icon {
    width: 56px; height: 56px;
    background: var(--yellow);
    border: 3px solid var(--black);
    border-radius: 10px;
    box-shadow: 4px 4px 0px var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
  }
  .why-icon svg { width: 26px; height: 26px; }
  .why-card:hover .why-icon {
    background: var(--orange);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--black);
  }
  .why-card-title {
    font-family: 'Hind Siliguri', 'Archivo Black', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
  }
  .why-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-weight: 500;
  }

  /* Reality check strip */
  .reality-strip {
    border: var(--border-thick);
    border-radius: 16px;
    background: rgba(255,87,34,0.1);
    border-color: var(--orange);
    padding: 32px 36px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .reality-icon {
    width: 56px; height: 56px;
    background: var(--yellow);
    border: var(--border-thick);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .reality-icon svg { width: 28px; height: 28px; }
  .reality-text-title {
    font-family: 'Hind Siliguri', sans-serif !important;
    font-size: 20px;
    font-weight: 700 !important;
    color: var(--white);
    margin-bottom: 8px;
  }
  .reality-text-body {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 660px;
    font-weight: 500;
  }

  /* ── WHO WE SERVE ── */
  .serve-section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .serve-card {
    border: var(--border-thick);
    border-radius: 16px;
    padding: 36px 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.12s;
    position: relative;
    overflow: hidden;
  }
  .serve-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 var(--black);
  }
  .serve-card.featured-dark {
    background: var(--dark);
  }
  .serve-card.featured-orange {
    background: var(--orange);
  }
  .serve-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .serve-card.featured-dark .serve-num { color: var(--yellow); }
  .serve-card.featured-orange .serve-num { color: rgba(255,255,255,0.7); }

  .serve-icon-wrap {
    width: 60px; height: 60px;
    border: var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--yellow);
    box-shadow: var(--shadow-sm);
  }
  .serve-card.featured-dark .serve-icon-wrap { background: var(--orange); }
  .serve-card.featured-orange .serve-icon-wrap { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
  .serve-icon-wrap svg { width: 30px; height: 30px; }

  .serve-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--black);
    margin-bottom: 12px;
  }
  .serve-card.featured-dark .serve-title { color: var(--white); }
  .serve-card.featured-orange .serve-title { color: var(--white); }

  .serve-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .serve-card.featured-dark .serve-desc { color: rgba(255,255,255,0.6); }
  .serve-card.featured-orange .serve-desc { color: rgba(255,255,255,0.85); }

  .serve-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .serve-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    border: 2px solid var(--black);
    background: var(--bg);
  }
  .serve-card.featured-dark .serve-tag { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7); }
  .serve-card.featured-orange .serve-tag { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.15); color: var(--white); }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .service-card {
    border: var(--border-thick);
    border-radius: 14px;
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.12s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 var(--black);
  }
  .service-card.featured {
    background: var(--dark);
    color: var(--white);
  }
  .service-card.featured .service-title { color: var(--yellow); }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
  .service-card.orange-card { background: var(--orange); }
  .service-card.orange-card .service-title { color: var(--white); }
  .service-card.orange-card .service-desc { color: rgba(255,255,255,0.8); }

  .service-icon {
    width: 52px; height: 52px;
    background: var(--yellow);
    border: var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
  }
  .service-icon svg { width: 26px; height: 26px; }
  .service-card.featured .service-icon { background: var(--orange); }
  .service-card.orange-card .service-icon { background: var(--white); }

  .service-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
  }
  .service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    font-weight: 500;
    padding-bottom: 44px;
  }
  .service-arrow {
    position: absolute;
    bottom: 24px; right: 24px;
    width: 36px; height: 36px;
    background: var(--black);
    border: var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-family: 'Archivo Black', sans-serif;
    transition: all 0.1s;
  }
  .service-card:hover .service-arrow { background: var(--orange); }
  .service-card.featured .service-arrow { background: var(--orange); }

  /* ── PROCESS ── */
  .process-section {
    background: var(--dark);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    padding: 80px 24px;
  }
  .process-inner { max-width: 1100px; margin: 0 auto; }
  .process-section .section-title { color: var(--white); }
  .process-section .section-tag { color: var(--yellow); }
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .step {
    border: 3px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.12s;
  }
  .step:hover {
    border-color: var(--orange);
    background: rgba(255,87,34,0.08);
    transform: translateY(-4px);
  }
  .step-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.6;
  }
  .step-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .step-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
  }

  /* ── PRICING ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .pricing-card {
    border: var(--border-thick);
    border-radius: 16px;
    padding: 32px 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.12s;
    position: relative;
  }
  .pricing-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 var(--black);
  }
  .pricing-card.popular { background: var(--orange); color: var(--white); }
  .popular-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    border: var(--border);
    border-radius: 50px;
    padding: 4px 16px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    color: var(--black);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .plan-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--orange);
  }
  .pricing-card.popular .plan-name { color: var(--yellow); }
  .plan-price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 46px;
    line-height: 1;
    margin-bottom: 4px;
  }
  .plan-price span { font-size: 18px; }
  .plan-period {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
    font-weight: 600;
  }
  .pricing-card.popular .plan-period { color: rgba(255,255,255,0.7); }
  .plan-features {
    list-style: none;
    margin-bottom: 28px;
  }
  .plan-features li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pricing-card.popular .plan-features li {
    border-bottom-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
  }
  .plan-features li::before {
    content: '✓';
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    width: 20px; height: 20px;
    background: var(--green);
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .plan-btn {
    width: 100%;
    padding: 14px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    border: var(--border-thick);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.12s;
    background: var(--black);
    color: var(--white);
    letter-spacing: 1px;
  }
  .pricing-card.popular .plan-btn { background: var(--white); color: var(--black); }
  .plan-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #333; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .testi-card {
    border: var(--border-thick);
    border-radius: 14px;
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.12s;
  }
  .testi-card:hover {
    transform: translate(-3px,-3px);
    box-shadow: 8px 8px 0 var(--black);
  }
  .testi-stars {
    color: var(--orange);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .testi-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
  }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: var(--border);
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .testi-name { font-family: 'Archivo Black', sans-serif; font-size: 14px; }
  .testi-role { font-size: 12px; color: #888; font-weight: 600; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--orange);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    padding: 70px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: 'RABYWEB';
    position: absolute;
    font-family: 'Archivo Black', sans-serif;
    font-size: 160px;
    color: rgba(255,255,255,0.06);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    letter-spacing: -4px;
    pointer-events: none;
  }
  .cta-banner-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(28px, 6vw, 54px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
  }
  .cta-banner-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    font-weight: 500;
    position: relative;
  }
  .cta-banner .btn-primary {
    background: var(--yellow);
    color: var(--black);
    position: relative;
  }
  .cta-banner .btn-primary:hover { background: var(--white); color: var(--black); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: var(--border-thick);
    padding: 56px 24px 32px;
    color: var(--white);
  }
  .footer-inner { max-width: 1100px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand .logo { color: var(--white); font-size: 24px; margin-bottom: 14px; display: flex; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 220px; font-weight: 500; }
  .footer-col-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links-list a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 500; transition: color 0.1s; }
  .footer-links-list a:hover { color: var(--yellow); }
  .footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 500; }
  .footer-socials { display: flex; align-items: center; }
  .footer-bottom-logo {
    height: 28px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  .footer-bottom-logo:hover { opacity: 1; }

  /* Footer Social Section */
  .footer-social-list { display: flex; flex-direction: column; gap: 8px; }
  .footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
  }
  .footer-social-link:hover { color: var(--white); transform: translateX(3px); }
  .footer-social-icon {
    width: 26px; height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .footer-social-icon svg { width: 13px; height: 13px; }
  .facebook-icon { background: rgba(24,119,242,0.15); color: #1877F2; }
  .x-icon { background: rgba(255,255,255,0.1); color: var(--white); }
  .whatsapp-icon { background: rgba(37,211,102,0.15); color: #25D366; }
  .footer-social-link:hover .facebook-icon { background: #1877F2; color: var(--white); }
  .footer-social-link:hover .x-icon { background: rgba(255,255,255,0.2); color: var(--white); }
  .footer-social-link:hover .whatsapp-icon { background: #25D366; color: var(--white); }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 600;
    padding: 80px 24px 40px;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    color: var(--black);
    text-decoration: none;
    border-bottom: var(--border);
    padding-bottom: 14px;
    transition: color 0.1s;
  }
  .mobile-menu a:hover { color: var(--orange); }
  .close-mobile {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 24px;
    background: none;
    border: var(--border);
    border-radius: 8px;
    width: 44px; height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    box-shadow: var(--shadow-sm);
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.5s cubic-bezier(0.34,1.3,0.64,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .hero-title { font-size: 42px; }
    .stat-box { padding: 16px 14px; }
    .stat-num { font-size: 22px; }
    .stat-label { font-size: 10px; letter-spacing: 0.5px; }
    .reality-strip { flex-direction: column; gap: 20px; }
  }
  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; }
  }

  /* ── ACTIVE NAV LINK ── */
  .nav-links a.active {
    background: var(--yellow);
    color: var(--black);
  }

  /* ── WHATSAPP FLOATING BUTTON ── */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25D366;
    border: var(--border-thick);
    border-radius: 50%;
    box-shadow: 3px 3px 0px #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
  }
  .wa-float:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--black);
  }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float-tooltip {
    position: absolute;
    right: 68px;
    left: auto;
    background: var(--black);
    color: var(--white);
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    border: 2px solid var(--black);
  }
  .wa-float:hover .wa-float-tooltip { opacity: 1; }

  /* ── SCROLL TO TOP ── */
  .scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    background: var(--yellow);
    border: var(--border-thick);
    border-radius: 50%;
    box-shadow: 3px 3px 0px #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    transition: all 0.15s;
    opacity: 0;
    pointer-events: none;
  }
  .scroll-top.visible {
    opacity: 1;
    pointer-events: all;
  }
  .scroll-top:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--black);
    background: var(--orange);
    color: var(--white);
  }

  /* ── FAQ ── */
  .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
  .faq-item {
    border: var(--border-thick);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.12s;
  }
  .faq-item.open { box-shadow: var(--shadow); }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    gap: 16px;
    user-select: none;
  }
  .faq-q:hover { background: var(--bg); }
  .faq-item.open .faq-q { background: var(--yellow); }
  .faq-icon {
    width: 28px; height: 28px;
    background: var(--black);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-family: 'Archivo Black', sans-serif;
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--black); }
  .faq-a {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    font-weight: 500;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }