
:root {
  --primary: #A3FF12;
  --primary-dark: #7edc00;
  --dark: #0d0d0d;
  --dark2: #141414;
  --card-bg: #1a1a1a;
  --border: #2a2a2a;
  --text-muted: #888;
  --white: #ffffff;
  --section-bg: #111111;
}

    * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 { font-family: 'Nunito', sans-serif; }

    a { text-decoration: none; color: inherit; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

    /* ===== TOP BAR ===== */
    .top-bar {
      background: var(--dark2);
      border-bottom: 1px solid var(--border);
      padding: 8px 0;
      font-size: 13px;
      color: var(--text-muted);
    }
    .top-bar a { color: var(--text-muted); transition: color .3s; }
    .top-bar a:hover { color: var(--primary); }
    .top-bar .apply-btn {
      background: var(--primary);
      color: #fff;
      padding: 4px 18px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .5px;
      transition: background .3s, transform .3s;
    }
    .top-bar .apply-btn:hover { background: var(--primary-dark); transform: scale(1.05); }

    /* ===== NAVBAR ===== */
    .navbar {
      background: rgba(13,13,13,.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand img { height: 44px; }
    .navbar-nav .nav-link {
      color: #ccc !important;
      font-weight: 600;
      font-size: 14px;
      padding: 6px 14px !important;
      transition: color .3s;
      position: relative;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 14px;
      width: 0; height: 2px;
      background: var(--primary);
      transition: width .3s;
    }
    .navbar-nav .nav-link:hover { color: var(--primary) !important; }
    .navbar-nav .nav-link:hover::after { width: calc(100% - 28px); }
    .navbar-nav .nav-link.active { color: var(--primary) !important; }
    .navbar-toggler { border-color: var(--primary); }
    .navbar-toggler-icon { filter: invert(1); }
    .nav-cta-btns a {
      font-size: 13px;
      font-weight: 700;
      padding: 8px 18px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .3s;
    }
    .btn-enquiry { background: transparent; border: 2px solid var(--primary); color: var(--primary) !important; }
    .btn-enquiry:hover { background: var(--primary); color: #fff !important; }
    .btn-call { background: #25D366; color: #fff !important; }
    .btn-call:hover { background: #1ebe5a; }
    .btn-wa { background: var(--primary); color: #fff !important; }
    .btn-wa:hover { background: var(--primary-dark); transform: scale(1.04); }

    /* ===== HERO ===== */
    .hero {
      min-height: 92vh;
      background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 60%, #0d0d0d 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0 60px;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,44,.18) 0%, transparent 70%);
      animation: pulseGlow 4s ease-in-out infinite;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -200px; left: -200px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,44,.1) 0%, transparent 70%);
    }
    @keyframes pulseGlow {
      0%,100% { transform: scale(1); opacity: .8; }
      50% { transform: scale(1.1); opacity: 1; }
    }
    .hero-badge {
      display: inline-block;
      background: rgba(255,107,44,.15);
      border: 1px solid rgba(255,107,44,.4);
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 24px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 68px);
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
    }
    .hero h1 span { color: var(--primary); }
    .hero p.lead {
      color: #aaa;
      font-size: 16px;
      line-height: 1.8;
      max-width: 560px;
      margin-top: 20px;
    }
    .hero-cta-wrap { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .btn-primary-orange {
      background: var(--primary);
      color: #111111;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 15px;
      border: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .3s;
      box-shadow: 0 6px 30px rgba(255,107,44,.4);
    }
    .btn-primary-orange:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,107,44,.5); }
    .btn-outline-orange {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 15px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .3s;
    }
    .btn-outline-orange:hover { background: var(--primary); color: #fff; }

    /* Hero stats */
    .hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
    .hero-stat .num {
      font-size: 38px;
      font-weight: 900;
      color: var(--primary);
      font-family: 'Nunito', sans-serif;
      line-height: 1;
    }
    .hero-stat .label { font-size: 13px; color: #888; margin-top: 4px; }

    /* Hero card visual */
    .hero-visual {
      position: relative;
      z-index: 2;
    }
    .hero-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      position: relative;
      animation: floatCard 4s ease-in-out infinite;
    }
    @keyframes floatCard {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }
    .hero-card .top-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .service-pill {
      display: inline-block;
      background: rgba(255,107,44,.12);
      border: 1px solid rgba(255,107,44,.3);
      color: var(--white);
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      margin: 5px 4px;
      transition: all .3s;
    }
    .service-pill:hover { background: var(--primary); transform: scale(1.05); }
    .badge-float {
      position: absolute;
      background: var(--primary);
      color: #fff;
      border-radius: 14px;
      padding: 10px 16px;
      font-size: 12px;
      font-weight: 800;
      box-shadow: 0 8px 24px rgba(255,107,44,.5);
      white-space: nowrap;
    }
    .badge-float.top-right { top: -18px; right: -18px; }
    .badge-float.bottom-left { bottom: -18px; left: -18px; }

    /* ===== SECTION TITLE ===== */
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,107,44,.12);
      border: 1px solid rgba(255,107,44,.3);
      color: var(--primary);
      font-size: 12px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 30px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-tag::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
    .section-title { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; line-height: 1.2; }
    .section-title span { color: var(--primary); }

    /* ===== WHY SECTION ===== */
    .why-section {
      padding: 100px 0;
      background: var(--section-bg);
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute;
      top: 50%; left: -100px; transform: translateY(-50%);
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,44,.07) 0%, transparent 70%);
    }
    .problem-list { margin-top: 30px; }
    .problem-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
      padding: 18px 20px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: border-color .3s, transform .3s;
    }
    .problem-item:hover { border-color: var(--primary); transform: translateX(6px); }
    .problem-icon { font-size: 22px; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
    .problem-item h6 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .problem-item p { font-size: 13px; color: #888; margin: 0; }
    .why-right-card {
      background: linear-gradient(135deg, var(--card-bg), #1f1000);
      border: 1px solid rgba(255,107,44,.25);
      border-radius: 24px;
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
    }
    .why-right-card::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 250px; height: 250px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,44,.15) 0%, transparent 70%);
    }
    .big-stat { font-size: 72px; font-weight: 900; color: var(--primary); line-height: 1; font-family: 'Nunito', sans-serif; }

    /* ===== SERVICES ===== */
    .services-section { padding: 100px 0; background: var(--dark); }
    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      height: 100%;
      transition: all .4s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }
    .service-card:hover { border-color: #a3ff12; transform: translateY(-8px); box-shadow: 0 20px 50px rgba(163, 255, 18, 0.2); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon-wrap {
      width: 64px; height: 64px;
      background: rgba(255,107,44,.12);
      border: 1px solid rgba(255,107,44,.3);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: var(--primary);
      margin-bottom: 22px;
      transition: background .3s;
    }
    .service-card:hover .service-icon-wrap { background: var(--primary); color: #fff; }
    .service-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
    .service-card p { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 20px; }
    .service-link { color: var(--primary); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
    .service-link i { transition: transform .3s; }
    .service-card:hover .service-link i { transform: translateX(5px); }

    /* ===== TOOLS MARQUEE ===== */
    .tools-section { padding: 80px 0; background: var(--section-bg); overflow: hidden; }
    .tools-heading { font-size: clamp(28px, 4vw, 50px); font-weight: 900; line-height: 1.2; text-align: center; margin-bottom: 60px; }
    .tools-heading span { color: var(--primary); }
    .marquee-wrap { overflow: hidden; white-space: nowrap; }
    .marquee-track {
      display: inline-flex;
      gap: 24px;
      animation: marqueeScroll 22s linear infinite;
    }
    .marquee-wrap:hover .marquee-track { animation-play-state: paused; }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .tool-card {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px 28px;
      width: 130px;
      flex-shrink: 0;
      transition: border-color .3s, transform .3s;
      cursor: default;
    }
    .tool-card:hover { border-color: var(--primary); transform: translateY(-6px); }
    .tool-card img { width: 48px; height: 48px; object-fit: contain; }
    .tool-card span { font-size: 12px; font-weight: 700; color: #aaa; white-space: nowrap; }

    /* ===== PORTFOLIO ===== */
    .portfolio-section { padding: 100px 0; background: var(--dark); }
    .portfolio-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--card-bg);
    }
    .portfolio-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s; display: block; }
    .portfolio-card:hover img { transform: scale(1.08); }
    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }
    .portfolio-card:hover .portfolio-overlay { opacity: 1; }
    .portfolio-overlay h5 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
    .portfolio-overlay span { font-size: 12px; color: var(--primary); font-weight: 600; }
    .portfolio-overlay .open-icon {
      position: absolute;
      top: 16px; right: 16px;
      width: 40px; height: 40px;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { padding: 100px 0; background: var(--section-bg); }
    .rating-big {
      font-size: 72px;
      font-weight: 900;
      color: var(--primary);
      font-family: 'Nunito', sans-serif;
      line-height: 1;
    }
    .stars { color: #FFB800; font-size: 18px; }
    .testimonial-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      height: 100%;
      position: relative;
      transition: border-color .3s, transform .3s;
    }
    .testimonial-card:hover { border-color: #a3ff12; transform: translateY(-6px); }
    .quote-icon {
      font-size: 52px;
      color: rgba(255,107,44,.2);
      line-height: 1;
      font-family: Georgia, serif;
      margin-bottom: 10px;
    }
    .testimonial-card p { font-size: 15px; color: #bbb; line-height: 1.7; margin-bottom: 24px; }
    .testimonial-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 900; color: #fff;
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 800; font-size: 15px; }
    .testimonial-role { font-size: 12px; color: #888; }

    /* ===== PROCESS ===== */
    .process-section { padding: 100px 0; background: var(--dark); }
    .process-step {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      height: 100%;
      transition: all .4s;
    }
    .process-step:hover { border-color: #a3ff12; transform: translateY(-8px); box-shadow: 0 20px 50px rgba(163, 255, 18, 0.1); }
    .step-number {
      position: absolute;
      top: 20px; right: 20px;
      font-size: 56px;
      font-weight: 900;
      color: rgba(255,107,44,.08);
      font-family: 'Nunito', sans-serif;
      line-height: 1;
    }
    .step-icon {
      width: 56px; height: 56px;
      background: rgba(255,107,44,.12);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; color: var(--primary);
      margin-bottom: 20px;
    }
    .process-step h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
    .process-step p { font-size: 14px; color: #888; line-height: 1.7; margin: 0; }

    /* ===== BLOG ===== */
    .blog-section { padding: 100px 0; background: var(--section-bg); }
    .blog-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      transition: all .4s;
    }
    .blog-card:hover { border-color: #a3ff12; transform: translateY(-8px); box-shadow: 0 20px 50px rgba(163, 255, 18, 0.2); }
    .blog-img { position: relative; overflow: hidden; }
    .blog-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .5s; display: block; }
    .blog-card:hover .blog-img img { transform: scale(1.08); }
    .blog-body { padding: 24px 22px; }
    .blog-date { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .blog-body h5 { font-size: 16px; font-weight: 800; line-height: 1.4; margin-bottom: 12px; transition: color .3s; }
    .blog-card:hover .blog-body h5 { color: var(--primary); }
    .blog-read { color: var(--primary); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
    .blog-read i { transition: transform .3s; }
    .blog-card:hover .blog-read i { transform: translateX(5px); }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #0d0d0d 0%, #1f0d00 50%, #0d0d0d 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B2C' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-section h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 900; margin-bottom: 24px; position: relative; }
    .cta-section h2 span { color: var(--primary); }
    .cta-section p { font-size: 17px; color: #aaa; max-width: 580px; margin: 0 auto 40px; position: relative; }
    .cta-trust { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 12px; color: #888; font-size: 14px; }
    .cta-avatars { display: flex; }
    .cta-avatars .av {
      width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--dark);
      background: var(--primary); color: #fff; font-size: 13px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin-left: -10px;
    }
    .cta-avatars .av:first-child { margin-left: 0; }

    /* ===== FOOTER ===== */
    .footer {
      background: #0a0a0a;
      border-top: 1px solid var(--border);
      padding: 70px 0 30px;
    }
    .footer-brand h3 { font-size: 28px; font-weight: 900; margin-bottom: 14px; }
    .footer-brand h3 span { color: var(--primary); }
    .footer-brand p { font-size: 14px; color: #777; line-height: 1.8; max-width: 300px; }
    .footer-social { margin-top: 24px; display: flex; gap: 10px; }
    .social-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--card-bg); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: #aaa; font-size: 15px; transition: all .3s;
    }
    .social-icon:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
    .footer h5 { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: #fff; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 14px; color: #777; transition: color .3s, padding-left .3s; display: flex; align-items: center; gap: 8px; }
    .footer-links a:hover { color: var(--primary); padding-left: 6px; }
    .footer-links a i { font-size: 10px; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
    .footer-contact-item .ic { color: var(--primary); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item p { margin: 0; font-size: 14px; color: #777; line-height: 1.6; }
    .footer-contact-item a { color: #aaa; transition: color .3s; }
    .footer-contact-item a:hover { color: var(--primary); }
    .footer-divider { border-color: var(--border); margin: 40px 0 24px; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 13px; color: #555; margin: 0; }
    .footer-bottom span { color: var(--primary); }

    /* Newsletter input */
    .newsletter-form { margin-top: 20px; display: flex; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
    .newsletter-form input {
      flex: 1;
      background: var(--card-bg);
      border: none;
      padding: 12px 16px;
      color: #fff;
      font-size: 13px;
      outline: none;
    }
    .newsletter-form input::placeholder { color: #555; }
    .newsletter-form button {
      background: var(--primary);
      border: none;
      padding: 12px 18px;
      color: #fff;
      font-size: 15px;
      cursor: pointer;
      transition: background .3s;
    }
    .newsletter-form button:hover { background: var(--primary-dark); }

    /* ===== SCROLL TO TOP ===== */
    #scrollTop {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 46px; height: 46px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: all .4s;
      box-shadow: 0 6px 24px rgba(255,107,44,.5);
      z-index: 9999;
    }
    #scrollTop.show { opacity: 1; transform: translateY(0); }
    #scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

    /* ===== ENQUIRY MODAL ===== */
    .modal-content {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      color: #fff;
    }
    .modal-header { border-bottom: 1px solid var(--border); padding: 20px 24px; }
    .modal-header .modal-title { font-weight: 800; font-size: 20px; }
    .btn-close { filter: invert(1); }
    .modal-body { padding: 24px; }
    .form-label { font-size: 13px; font-weight: 700; color: #aaa; margin-bottom: 6px; }
    .form-control, .form-select {
      background: #111;
      border: 1px solid var(--border);
      color: #fff;
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 14px;
      transition: border-color .3s;
    }
    .form-control:focus, .form-select:focus {
      background: #111;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255,107,44,.15);
      color: #fff;
    }
    .form-select option { background: #111; }
    textarea.form-control { resize: vertical; min-height: 90px; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-in-up { animation: fadeInUp .8s ease forwards; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .hero { padding: 60px 0 50px; min-height: auto; }
      .hero-visual { margin-top: 50px; }
      .hero-cta-wrap { justify-content: center; }
      .hero h1 { text-align: center; }
      .hero p.lead { text-align: center; margin-left: auto; margin-right: auto; }
      .hero-stats { justify-content: center; }
      .hero-badge { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 575px) {
      .hero h1 { font-size: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      #scrollTop { bottom: 20px; right: 20px; }
    }

    /* ===== PRELOADER ===== */
    #preloader {
      position: fixed;
      inset: 0;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity .6s ease;
    }
    #preloader.hide { opacity: 0; pointer-events: none; }
    .loader-ring {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 4px solid rgba(255,107,44,.2);
      border-top-color: var(--primary);
      animation: spin .8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
