*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gd: #0D3E26;
      --gm: #145334;
      --gl: #1B6A43;
      --gp: #F1F9F4;
      --ac: #FAB818;
      --ach: #E09E0B;
      --wh: #ffffff;
      --ow: #FAFDFB;
      --td: #092617;
      --tm: #244C36;
      --tl: #527A63;
      --gold: #FFC107;
      --red: #FF4D4D;
    }

    body { font-family: 'Segoe UI', Roboto, Arial, sans-serif; color: var(--td); background: var(--ow); }
    a { text-decoration: none; color: inherit; }

    /* ── ANN BAR ── */
    .ann-bar {
      background: var(--ac); color: var(--gd); text-align: center;
      font-size: 13px; font-weight: 700; padding: 10px 16px;
      letter-spacing: 0.5px; text-transform: uppercase;
      box-shadow: inset 0 -2px 0 rgba(0,0,0,0.05);
    }

    /* ── NAV ── */
    nav {
      background: var(--gd); display: flex; align-items: center;
      justify-content: space-between; padding: 0 40px; height: 100px;
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .logo-img-wrap {
      width: 90px; height: 90px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .logo:hover .logo-img { transform: scale(1.05); }

    .nav-links { display: flex; gap: 24px; list-style: none; }
    .nav-links a {
      color: #D1EBE0; font-size: 14px; font-weight: 600;
      transition: color .2s; padding: 6px 0; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: -4px;
      width: 0; height: 2px; background: var(--ac);
      transition: width .3s cubic-bezier(.16,1,.3,1);
    }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a:hover, .nav-links a.active { color: var(--ac); }

    .nav-icons { display: flex; gap: 20px; align-items: center; }
    .nav-icons a {
      color: #D1EBE0; font-size: 22px; position: relative;
      transition: color .2s, transform .25s ease;
      display: flex; align-items: center;
    }
    .nav-icons a:hover { color: var(--ac); transform: translateY(-2px) scale(1.1); }

    .cbadge {
      position: absolute; top: -8px; right: -10px;
      background: var(--red); color: #fff;
      font-size: 11px; font-weight: 800;
      width: 19px; height: 19px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      transition: transform .2s ease;
    }

    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { width: 25px; height: 3px; background: white; transition: 0.3s; }

    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 100px; left: 0; width: 100%;
        background: var(--gd); padding: 20px;
        border-top: 1px solid #1a5c26; justify-content: flex-start;
      }
      .nav-links.active { display: flex; }
      .nav-links li { width: 100%; text-align: left; }
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--gd) 0%, var(--gm) 60%, var(--gl) 100%);
      padding: 60px 40px; display: flex;
      align-items: center; justify-content: space-between;
      gap: 50px; min-height: 480px; position: relative; overflow: hidden;
    }
    .hero-text {
      flex: 1; max-width: 580px; position: relative; z-index: 2;
      animation: fadeInUp .8s cubic-bezier(.16,1,.3,1) both;
    }
    .hero-tag {
      background: rgba(255,255,255,0.12); color: var(--ac);
      font-size: 12px; font-weight: 700; padding: 6px 16px;
      border-radius: 20px; display: inline-block; margin-bottom: 20px;
      letter-spacing: 1px; text-transform: uppercase;
      border: 1px solid rgba(254,184,24,0.3);
    }
    .hero h1 { font-size: 46px; font-weight: 900; line-height: 1.2; color: #fff; margin-bottom: 22px; text-transform: uppercase; }
    .hero h1 span { color: var(--ac); }
    .hero p { font-size: 16px; color: #BCE2CE; line-height: 1.8; margin-bottom: 35px; }

    .hero-img-wrap {
      flex: 1; display: flex; justify-content: center;
      position: relative; z-index: 2;
      animation: fadeIn 1s ease .15s both;
    }
    .hero-img-wrap video {
      width: 100%; max-width: 440px; height: 320px; object-fit: cover;
      border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.3);
      border: 4px solid rgba(255,255,255,0.1);
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: #092B1B; display: flex; justify-content: space-around;
      padding: 22px 40px; flex-wrap: wrap; gap: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .trust-item { display: flex; align-items: center; gap: 14px; color: #D1EBE0; min-width: 200px; }
    .trust-icon {
      width: 44px; height: 44px; background: rgba(255,255,255,0.08);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0; color: var(--ac);
      transition: transform .35s ease, background .3s ease;
    }
    .trust-item:hover .trust-icon { transform: rotate(8deg) scale(1.12); background: rgba(250,184,24,0.18); }
    .trust-item strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
    .trust-item span { font-size: 12px; opacity: 0.8; }

    /* ── SECTION COMMON ── */
    .sec-title { text-align: center; margin-bottom: 40px; }
    .sec-title h2 { font-size: 32px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
    .leaf-line { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; }
    .leaf-line::before, .leaf-line::after {
      content: ''; flex: 1; max-width: 60px; height: 3px;
      background: var(--ac); border-radius: 2px;
    }
    .leaf-line span { display: inline-block; animation: floatSlow 3s ease-in-out infinite; }

    .sec-w { background: var(--wh); padding: 80px 40px; }
    .sec-w .sec-title h2 { color: var(--gd); }
    .sec-g { background: var(--gd); padding: 80px 40px; }
    .sec-g .sec-title h2 { color: #fff; }

    /* ── FEATURED COLLECTIONS ── */
    .col-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
    .col-card {
      background: var(--gp); border: 1px solid rgba(13,62,38,0.08);
      border-radius: 16px; overflow: hidden; cursor: pointer;
      transition: all .3s cubic-bezier(0.165,0.84,0.44,1);
      text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .col-card:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(13,62,38,0.1); border-color: var(--gl); }
    .col-img { width: 100%; height: 190px; object-fit: cover; transition: transform .55s cubic-bezier(.16,1,.3,1); }
    .col-card:hover .col-img { transform: scale(1.09); }
    .col-info { padding: 18px 14px; background: #fff; }
    .col-info h3 { font-size: 18px; font-weight: 800; color: var(--gd); margin-bottom: 5px; }
    .col-info span { font-size: 13px; color: var(--tl); font-weight: 600; }

    /* ── BEST SELLERS ── */
    .bs-layout { display: grid; grid-template-columns: 1fr 350px; gap: 32px; align-items: start; }
    .bs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

    .prod-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px; padding: 18px; transition: all .3s ease;
      position: relative; cursor: pointer; overflow: hidden;
    }
    .prod-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

    .prod-img-wrap { overflow: hidden; border-radius: 12px; margin-bottom: 14px; position: relative; background: #f9f9f9; }
    .prod-img-wrap img {
      width: 100%; height: 160px; object-fit: contain; display: block;
      transition: transform .55s cubic-bezier(.16,1,.3,1); padding: 10px;
    }
    .prod-card:hover .prod-img-wrap img { transform: scale(1.07); }

    .sale-tag { position: absolute; top: 26px; right: 26px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 6px; }
    .pop-tag  { position: absolute; top: 26px; left: 26px;  background: var(--ac); color: var(--gd); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 6px; }

    .prod-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .stars { color: var(--ac); font-size: 14px; margin-bottom: 10px; }
    .pr { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
    .pr .pn { font-size: 19px; font-weight: 900; color: #fff; }
    .pr .pw { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: line-through; }

    .btn-cart {
      width: 100%; background: var(--ac); color: var(--gd); border: none;
      border-radius: 8px; padding: 11px 0; font-size: 13px; font-weight: 800;
      cursor: pointer; text-transform: uppercase; letter-spacing: .5px; transition: all .2s;
    }
    .btn-cart:hover { background: var(--ach); transform: scale(1.02); }
    .btn-cart:active { transform: scale(0.95); }

    /* ── DEAL BOX ── */
    .deal-box {
      background: #092B1B; border: 2px solid var(--ac);
      border-radius: 18px; padding: 28px; text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .deal-label {
      background: var(--ac); color: var(--gd); font-size: 11px; font-weight: 800;
      padding: 6px 18px; border-radius: 20px; display: inline-block;
      margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase;
    }
    .deal-box h3 { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 8px; }
    .deal-box .sub { font-size: 14px; color: #BCE2CE; margin-bottom: 18px; }
    .countdown { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; }
    .cu { background: var(--gd); border-radius: 8px; padding: 10px 14px; min-width: 55px; }
    .cu strong { font-size: 22px; font-weight: 900; color: #fff; display: block; }
    .cu span { font-size: 10px; color: #BCE2CE; text-transform: uppercase; }
    .csep { font-size: 22px; font-weight: 900; color: var(--ac); align-self: center; }
    .deal-box-img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
    .deal-price { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 16px; }
    .deal-price del { font-size: 16px; color: rgba(255,255,255,0.4); font-weight: 400; margin-left: 8px; }

    /* ── TRENDING ── */
    .trend-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
    .trend-header h2 { font-size: 30px; font-weight: 900; color: var(--gd); text-transform: uppercase; }

    .tr-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
    .tr-card {
      background: #fff; border: 1px solid rgba(13,62,38,0.08);
      border-radius: 16px; padding: 18px; transition: all .3s ease;
      cursor: pointer; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.02);
      overflow: hidden;
    }
    .tr-card:hover { border-color: var(--gl); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(13,62,38,0.08); }
    .tr-img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 14px; transition: transform .55s cubic-bezier(.16,1,.3,1); }
    .tr-card:hover .tr-img { transform: scale(1.09); }
    .tr-badge { position: absolute; top: 26px; left: 26px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 6px; }
    .tr-cat { font-size: 12px; color: var(--tl); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; }
    .tr-card h4 { font-size: 15px; font-weight: 800; color: var(--gd); margin-bottom: 8px; }
    .tr-pr { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
    .tr-pr .pn { font-size: 18px; font-weight: 900; color: var(--gd); }
    .tr-pr .pw { font-size: 13px; color: var(--tl); text-decoration: line-through; }

    .btn-cg {
      width: 100%; background: var(--gm); color: #fff; border: none;
      border-radius: 8px; padding: 10px 0; font-size: 13px; font-weight: 800;
      cursor: pointer; text-transform: uppercase; letter-spacing: .5px; transition: background .2s;
    }
    .btn-cg:hover { background: var(--gd); }
    .btn-cg:active { transform: scale(0.95); }

    /* ── REVIEWS ── */
    .reviews-layout { display: grid; grid-template-columns: 1fr 1fr 340px; gap: 24px; align-items: start; }
    .rev-col { display: flex; flex-direction: column; gap: 20px; }
    .rev-card { background: var(--gp); border: 1px solid rgba(13,62,38,0.06); border-radius: 16px; padding: 24px; }
    .rev-card .stars { margin-bottom: 10px; }
    .rev-card p { font-size: 14.5px; color: var(--tm); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
    .rev-name { font-size: 14px; font-weight: 700; color: var(--gd); }
    .rev-sub { font-size: 12px; color: var(--tl); }
    .rev-meta { display: flex; align-items: center; gap: 12px; }
    .rev-avatar {
      width: 40px; height: 40px; border-radius: 50%; background: var(--gm);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 800; font-size: 15px; flex-shrink: 0;
    }
    .rev-date { font-size: 12px; color: var(--tl); margin-left: auto; }
    .rev-sidebar { display: flex; flex-direction: column; gap: 18px; }
    .rev-sidebar-card { background: var(--gp); border: 1px solid rgba(13,62,38,0.06); border-radius: 16px; padding: 18px; }
    .rev-sidebar-card .stars { margin-bottom: 8px; font-size: 13px; }
    .rev-snippet { font-size: 13px; color: var(--tm); line-height: 1.6; margin-bottom: 12px; }
    .rev-product-link { font-size: 12px; font-weight: 700; color: var(--gl); cursor: pointer; }

    /* ── BLOG ── */
    .blog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
    .blog-header h2 { font-size: 30px; font-weight: 900; color: #fff; text-transform: uppercase; }
    .btn-ol {
      background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
      padding: 14px 36px; border-radius: 30px; font-weight: 800; font-size: 14px;
      cursor: pointer; letter-spacing: 0.5px; text-transform: uppercase; transition: all .3s ease;
    }
    .btn-ol:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
    .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .blog-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; overflow: hidden; cursor: pointer; transition: all .3s ease;
    }
    .blog-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.09); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
    .blog-img { width: 100%; height: 180px; object-fit: cover; transition: transform .55s cubic-bezier(.16,1,.3,1); }
    .blog-card:hover .blog-img { transform: scale(1.09); }
    .blog-body { padding: 20px; }
    .blog-tag { font-size: 11px; font-weight: 800; color: var(--ac); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .blog-body h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
    .blog-body p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 14px; }
    .blog-read { font-size: 13px; color: var(--ac); font-weight: 700; cursor: pointer; display: inline-block; }
    .blog-read:hover { text-decoration: underline; }

    /* ── PLATFORMS ── */
   .plat-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.plat-logo {
  background: var(--gp);
  border: 1px solid rgba(13,62,38,0.1);
  border-radius: 12px;
  width: 140px;      /* fixed width ─ sab boxes same size */
  height: 64px;       /* fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  transition: all .2s;
  cursor: pointer;
}

.plat-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;   /* image apni aspect-ratio ke saath box ke andar fit ho jayegi, box ka size kabhi nahi badlega */
}
.platforms-sec {
  background: var(--wh);
  padding: 60px 40px 90px;   /* pehle sirf "60px 40px" tha ─ bottom ab 90px kar diya */
  text-align: center;
}

.plat-logo:hover {
  border-color: var(--gl);
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Chote screens pe aur compact */
@media (max-width: 600px) {
  .plat-logo { width: 110px; height: 52px; padding: 8px 12px; }
  .plat-logos { gap: 12px; }
}
    /* ── FOOTER ── */
    footer { background: #062013; padding: 60px 40px 0; color: #A4C7B5; }
    .ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
    .ft-brand p { font-size: 14px; line-height: 1.7; max-width: 250px; margin-top: 14px; }
    footer h5 { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 10px; }
    footer ul li a { font-size: 14px; color: #A4C7B5; transition: color .2s; }
    footer ul li a:hover { color: var(--ac); }
    .nl-row { display: flex; margin-top: 12px; }
    .nl-row input {
      flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
      border-right: none; color: #fff; padding: 12px 16px;
      border-radius: 8px 0 0 8px; font-size: 14px; outline: none;
    }
    .nl-row input::placeholder { color: rgba(255,255,255,0.3); }
    .nl-row button {
      background: var(--ac); color: var(--gd); border: none; padding: 0 22px;
      border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 800;
      cursor: pointer; text-transform: uppercase; transition: background .2s;
    }
    .nl-row button:hover { background: var(--ach); }
    .pay-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
    .pchip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 6px 14px; font-size: 12px; color: #C2DEC2; font-weight: 600; }
    .social-row { display: flex; gap: 15px; align-items: center; }
    .soc-a img { width: 20px; height: 20px; object-fit: contain; transition: 0.3s; }
    .soc-a:hover img { transform: scale(1.15); }
    .ft-bottom {
      border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .ft-bottom a { font-size: 13px; color: rgba(255,255,255,0.3); }
    .ft-tagline { font-size: 14px; font-weight: 700; color: #A4C7B5; font-style: italic; }
    .ft-brand-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
    .ft-logo-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; }
    .ft-brand-head h5 { margin-bottom: 0; font-size: 15px; letter-spacing: 1px; }

    /* ── MODAL ── */
    .prod-modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(5,20,12,0.72); backdrop-filter: blur(6px);
      justify-content: center; align-items: center; padding: 20px;
    }
    .prod-modal-overlay.open { display: flex; animation: fadeInOverlay .25s ease; }
    @keyframes fadeInOverlay { from { opacity:0; } to { opacity:1; } }
    .prod-modal {
      background: #fff; border-radius: 20px; max-width: 880px; width: 100%;
      max-height: 90vh; overflow-y: auto; display: grid;
      grid-template-columns: 1fr 1fr; gap: 0; position: relative;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      animation: slideUpModal .35s cubic-bezier(.16,1,.3,1);
    }
    @keyframes slideUpModal { from { opacity:0; transform: translateY(40px) scale(.96); } to { opacity:1; transform: none; } }
    .modal-img-wrap {
      background: linear-gradient(135deg,#f0faf4,#e8f5ee); border-radius: 20px 0 0 20px;
      display: flex; align-items: center; justify-content: center;
      padding: 30px; overflow: hidden; min-height: 340px;
    }
    .modal-img-wrap img { width: 100%; max-height: 340px; object-fit: contain; transition: transform .5s cubic-bezier(.16,1,.3,1); }
    .modal-img-wrap:hover img { transform: scale(1.08); }
    .modal-body { padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; }
    .modal-title { font-size: 22px; font-weight: 900; color: var(--gd); line-height: 1.3; }
    .modal-price { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
    .modal-price .mpn { font-size: 28px; font-weight: 900; color: var(--gd); }
    .modal-add-btn {
      background: var(--ac); color: var(--gd); border: none; border-radius: 10px;
      padding: 12px 20px; font-size: 14px; font-weight: 800; cursor: pointer;
      text-transform: uppercase; letter-spacing: .5px; transition: all .2s; margin-top: 8px;
    }
    .modal-add-btn:hover { background: var(--ach); transform: translateY(-1px); }
    .modal-close {
      position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
      background: rgba(0,0,0,0.1); border: none; border-radius: 50%;
      font-size: 18px; cursor: pointer; display: flex; align-items: center;
      justify-content: center; color: #555; transition: all .2s; z-index: 10;
    }
    .modal-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }

    /* ── ANIMATIONS ── */
    @keyframes fadeInUp { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
    @keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
    @keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .reviews-layout { grid-template-columns: 1fr 1fr; }
      .rev-sidebar { display: none; }
    }
    @media (max-width: 900px) {
      .col-grid, .tr-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
      .bs-layout { grid-template-columns: 1fr; }
      .bs-grid { grid-template-columns: 1fr 1fr; }
      .ft-grid { grid-template-columns: 1fr 1fr; }
      .hero h1 { font-size: 34px; }
      .hero-img-wrap { display: none; }
      .prod-modal { grid-template-columns: 1fr; }
      .modal-img-wrap { border-radius: 20px 20px 0 0; min-height: 220px; }
    }
    @media (max-width: 600px) {
      .col-grid, .tr-grid, .blog-grid, .reviews-layout, .bs-grid { grid-template-columns: 1fr; }
      .ft-grid { grid-template-columns: 1fr; }
      nav, .hero, .sec-w, .sec-g, .trust-bar, footer, .platforms-sec { padding-left: 20px; padding-right: 20px; }
    }