:root {
     --blue: #4A90D9;
     --blue-dark: #2C6FAC;
     --blue-light: #b81c1c0f;
     --blue-mid: #b81c1c26;
     --white: #ffffff;
     --gray-light: #b81c1c0a;
     --gray-text: #6B7B99;
     --dark: #b81c1c;
     --border: #DDE8F5;
     --card-shadow: 0 4px 24px rgba(74, 144, 217, 0.10);
     --radius: 18px;
     --heading-dark: #1a1a1a;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Inter', sans-serif;
     background: var(--white);
     color: var(--dark);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 .brand {
     font-family: 'Poppins', sans-serif;
 }

 /* ── NAVBAR ── */
 .navbar {
     background: white;
     backdrop-filter: blur(18px);
     -webkit-backdrop-filter: blur(18px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
     position: sticky;
     top: 0;
     z-index: 999;
     padding: 14px 0;
 }



 .brand {
     font-size: 1.45rem;
     font-weight: 800;
     color: #fff;
     letter-spacing: -0.5px;
 }

 .brand span {
     color:#b81c1c;
}
 .navbar-nav .nav-link {
     font-weight: 500;
     color: black;
     font-size: 0.95rem;
     padding: 6px 16px !important;
     transition: color 0.2s;
 }

 .navbar-nav .nav-link:hover {
     color: yellow;
 }

 .navbar-toggler {
     background: rgba(255, 255, 255, 0.08);
     border-radius: 8px;
     padding: 6px 10px;
 }

 .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 .btn-quote {
     background: #b81c1c;
     color: #fff !important;
     border-radius: 50px;
     padding: 8px 22px !important;
     font-weight: 600;
     font-size: 0.9rem;
     transition: background 0.2s, transform 0.15s;
     border: none;
 }

 .btn-quote:hover {
     background: #b81c1c;
     transform: translateY(-1px);
 }

 /* ── HERO ── */
 #hero {
     position: relative;
     min-height: 92vh;
     display: flex;
     align-items: center;
     overflow: hidden;
 }

 #hero .hero-bg {
     position: absolute;
     inset: 0;
     background: url('https://images.unsplash.com/photo-1558002038-1055907df827?w=1600&q=80') center/cover no-repeat;
     filter: brightness(0.35) saturate(1.2);
     z-index: 0;
 }

 #hero .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, rgba(74, 144, 217, 0.55) 0%, rgba(26, 35, 64, 0.60) 100%);
     z-index: 1;
 }

 #hero .container {
     position: relative;
     z-index: 2;
 }

 .hero-badge {
     display: inline-block;
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(8px);
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 50px;
     font-size: 0.82rem;
     font-weight: 600;
     padding: 6px 18px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     margin-bottom: 22px;
 }

 .hero-title {
   font-size: 35px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: start;
 }

 .hero-title .accent {
     color: yellow;
 }

 .hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    max-width: 100%;
    margin-bottom: 36px;
    line-height: 1.7;
    margin: 0px auto 36px auto;
    text-align: start;
 }

 .hero-email-form {
     display: flex;
     gap: 10px;
     max-width: 100%;
     margin: auto;
 }

 .hero-email-form input {
     flex: 1;
     border-radius: 50px;
     border: none;
     padding: 13px 22px;
     font-size: 0.95rem;
     outline: none;
     background: rgba(255, 255, 255, 0.95);
     color: var(--dark);
 }

 .hero-email-form input::placeholder {
     color: #8FA0BB;
 }

 .btn-hero {
     background: black;
     color: #fff;
     border: none;
     border-radius: 50px;
     padding: 13px 28px;
     font-weight: 700;
     font-size: 0.95rem;
     white-space: nowrap;
     transition: background 0.2s, transform 0.15s;
     cursor: pointer;
 }

 .btn-hero:hover {
     background: black;
     transform: translateY(-1px);
 }

 .hero-stats {
     display: flex;
     gap: 36px;
     margin-top: 44px;
     justify-content: center;
 }

 .hero-stat .num {
     font-size: 1.6rem;
     font-weight: 800;
     color: #fff;
 }

 .hero-stat .lbl {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.6);
     text-transform: uppercase;
     letter-spacing: 0.07em;
 }

 /* ── SECTION SHARED ── */
 section {
     padding: 90px 0;
 }

 /* Eyebrow = small heading above section title. Stays brand red everywhere. */
 .section-eyebrow {
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: #b81c1c;
     margin-bottom: 10px;
 }

 /* Section title = big heading. Black everywhere by default. */
 .section-title {
     font-size: clamp(1.7rem, 3vw, 2.5rem);
     font-weight: 800;
     color: var(--heading-dark);
     line-height: 1.2;
     margin-bottom: 12px;
 }

 .section-sub {
     color: var(--gray-text);
     font-size: 1rem;
     max-width: 520px;
     line-height: 1.65;
 }

 /* ── PRODUCT INFO ── */
 #product {
     background: var(--gray-light);
 }

 .product-img-wrap {
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: 0 12px 48px rgba(74, 144, 217, 0.18);
 }

 .product-img-wrap img {
     width: 100%;
     display: block;
     border-radius: var(--radius);
 }

 .product-feature {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     margin-bottom: 22px;
 }

 .product-feature .icon {
     width: 42px;
     height: 42px;
     background: var(--blue-mid);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #b81c1c;
     font-size: 1.1rem;
     flex-shrink: 0;
 }

 .product-feature h6 {
     font-weight: 700;
     margin-bottom: 2px;
     font-size: 0.95rem;
     color: var(--heading-dark);
 }

 .product-feature p {
     color: var(--gray-text);
     font-size: 0.88rem;
     margin: 0;
 }

 .btn-blue {
     background: #b81c1c;
     color: #fff;
     border: none;
     border-radius: 50px;
     padding: 13px 32px;
     font-weight: 700;
     font-size: 0.95rem;
     transition: background 0.2s, transform 0.15s;
     text-decoration: none;
     display: inline-block;
 }

 .btn-blue:hover {
     background: #b81c1c;
     transform: translateY(-2px);
     color: #fff;
 }

 /* ── WHY CHOOSE ── */
 #why {
     background: #fff;
 }

 .why-card {
     background: var(--gray-light);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 30px 26px;
     text-align: center;
     transition: box-shadow 0.25s, transform 0.25s;
     height: 100%;
 }

 .why-card:hover {
     box-shadow: var(--card-shadow);
     transform: translateY(-4px);
 }

 .why-icon {
     width: 60px;
     height: 60px;
     background: var(--blue-mid);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #b81c1c;
     font-size: 1.4rem;
     margin: 0 auto 18px;
 }

 .why-card h5 {
     font-weight: 700;
     font-size: 1rem;
     margin-bottom: 8px;
     color: var(--heading-dark);
 }

 .why-card p {
     color: var(--gray-text);
     font-size: 0.86rem;
     margin: 0;
     line-height: 1.55;
 }

 /* ── REVIEWS ──
    Scroll-snap based slider: browser khud scroll/snap handle karta hai,
    isliye koi pixel/percentage transform calculation nahi karni padti,
    aur kabhi bhi card half-cut ya overlap nahi hoga, kisi bhi screen size pe. */
 #reviews {
     background: var(--blue-light);
     overflow: hidden;
 }

 .reviews-slider-wrap {
     position: relative;
 }

 .reviews-track {
     display: flex;
     gap: 22px;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     padding: 4px 4px 14px;
     margin: -4px -4px -14px;
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 .reviews-track::-webkit-scrollbar {
     display: none;
 }

 .review-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 28px 24px;
     /* Desktop: 3 cards per row. (100% / 3) minus a share of the two 22px gaps. */
     flex: 0 0 calc((100% - 44px) / 3);
     scroll-snap-align: start;
     box-shadow: var(--card-shadow);
     display: flex;
     flex-direction: column;
 }

 .review-stars {
     color: #F5A623;
     font-size: 0.9rem;
     margin-bottom: 12px;
 }

 .review-text {
     color: var(--dark);
     font-size: 0.9rem;
     line-height: 1.65;
     margin-bottom: 18px;
     flex: 1;
 }

 .reviewer {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .reviewer-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--blue-mid);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #b81c1c;
     font-weight: 700;
     font-size: 1rem;
     flex-shrink: 0;
 }

 .reviewer-name {
     font-weight: 700;
     font-size: 0.9rem;
     color: var(--heading-dark);
 }

 .reviewer-role {
     color: var(--gray-text);
     font-size: 0.78rem;
 }

 .slider-arrows {
     display: flex;
     gap: 12px;
     margin-top: 28px;
     justify-content: center;
 }

 .slider-btn {
     width: 46px;
     height: 46px;
     border-radius: 50%;
     border: 2px solid #b81c1c;
     background: #fff;
     color: #b81c1c;
     font-size: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background 0.2s, color 0.2s;
 }

 .slider-btn:hover {
     background: #b81c1c;
     color: #fff;
 }


 /* ── EXTRAS / BENEFITS ── */
 #benefits {
     background: var(--dark);
     color: #fff;
 }

 /* Inside the dark red benefits section, the big heading stays white (not black)
    so it's readable against the dark background. Eyebrow stays as set inline (gold). */
 #benefits .section-title {
     color: #fff;
 }

 #benefits .section-sub {
     color: rgba(255, 255, 255, 0.65);
 }

 .benefit-item {
     display: flex;
     gap: 18px;
     align-items: flex-start;
     margin-bottom: 28px;
 }

 .benefit-num {
     min-width: 40px;
     height: 40px;
     background: #b81c1c;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 0.9rem;
     color: #fff;
     flex-shrink: 0;
         border: 1px solid #ffffff8f;
 }

 .benefit-item h6 {
     font-weight: 700;
     color: #fff;
     margin-bottom: 4px;
 }

 .benefit-item p {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.88rem;
     margin: 0;
 }

 .benefit-img {
     border-radius: var(--radius);
     overflow: hidden;
 }

 .benefit-img img {
     width: 100%;
     display: block;
     border-radius: var(--radius);
 }

 /* ── FAQ ── */
 #faq {
     background: #fff;
 }

 .faq-item {
     border: 1px solid var(--border);
     border-radius: 14px;
     margin-bottom: 14px;
     overflow: hidden;
     transition: box-shadow 0.2s;
 }

 .faq-item:hover {
     box-shadow: var(--card-shadow);
 }

 .faq-question {
     width: 100%;
     background: none;
     border: none;
     text-align: left;
     padding: 20px 24px;
     font-weight: 600;
     font-size: 0.97rem;
     color: var(--heading-dark);
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     gap: 12px;
 }

 .faq-question .faq-icon {
     color: #b81c1c;
     font-size: 1rem;
     transition: transform 0.3s;
     flex-shrink: 0;
 }

 .faq-question.open .faq-icon {
     transform: rotate(180deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease, padding 0.3s;
     padding: 0 24px;
     color: var(--gray-text);
     font-size: 0.9rem;
     line-height: 1.7;
 }

 .faq-answer.open {
     max-height: 320px;
     padding-bottom: 20px;
 }

 /* ══════════════════════════════════════════════════════════════
    LEGAL / INFO PAGE BANNER — used by Privacy Policy, Refund Policy,
    Terms of Service pages. Same brand-red theme as the rest of the site.
    ══════════════════════════════════════════════════════════════ */
 .page-banner {
     background: radial-gradient(at center center, #FF4C4C 0%, #9F0C0C 100%);
     padding: 70px 0 56px;
     text-align: center;
 }

 .page-banner .eyebrow {
     display: inline-block;
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.75);
     margin-bottom: 14px;
 }

 .page-banner h1 {
     font-family: 'Poppins', sans-serif;
     color: #fff;
     font-weight: 800;
     font-size: clamp(1.8rem, 4vw, 2.7rem);
     margin-bottom: 10px;
 }

 .page-banner .updated {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.88rem;
 }

 .legal-content {
     padding: 64px 0 90px;
     background: #fff;
 }

 .legal-content .container {
     max-width: 820px;
 }

 .legal-content h2 {
     font-family: 'Poppins', sans-serif;
     color: var(--heading-dark);
     font-weight: 700;
     font-size: 1.25rem;
     margin-top: 36px;
     margin-bottom: 12px;
 }

 .legal-content h2:first-child {
     margin-top: 0;
 }

 .legal-content p {
     color: var(--gray-text);
     font-size: 0.98rem;
     line-height: 1.75;
     margin-bottom: 14px;
 }

 .legal-content ul {
     color: var(--gray-text);
     font-size: 0.98rem;
     line-height: 1.75;
     margin: 0 0 14px 0;
     padding-left: 22px;
 }

 .legal-content li {
     margin-bottom: 8px;
 }

 .legal-content strong {
     color: var(--heading-dark);
 }

 .legal-content a {
     color: #b81c1c;
     text-decoration: underline;
 }

 @media (max-width: 600px) {
     .page-banner {
         padding: 52px 0 40px;
     }

     .legal-content {
         padding: 44px 0 60px;
     }

     .legal-content h2 {
         font-size: 1.1rem;
         margin-top: 28px;
     }

     .legal-content p,
     .legal-content ul {
         font-size: 0.92rem;
     }
 }

 /* ══════════════════════════════════════════════════════════════
    FOOTER — redesigned
    ══════════════════════════════════════════════════════════════ */
 footer {
     background: #2a0a0a;
     background: linear-gradient(180deg, #b81c1c 0%, #7a1212 100%);
     color: rgba(255, 255, 255, 0.75);
     padding: 70px 0 0;
     position: relative;
 }

 footer .footer-top-line {
     height: 4px;
     width: 100%;
     background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
     opacity: 0.9;
 }

 .footer-brand {
     font-size: 1.6rem;
     font-weight: 800;
     color: #fff;
     margin-bottom: 14px;
     letter-spacing: -0.5px;
 }

 .footer-brand span {
     color: #FFD700;
 }

 .footer-desc {
     font-size: 0.9rem;
     line-height: 1.7;
     max-width: 260px;
     color: rgba(255, 255, 255, 0.65);
     margin-bottom: 22px;
 }

 .footer-social {
     display: flex;
     gap: 10px;
 }

 .footer-social a {
     width: 38px;
     height: 38px;
     border: 1px solid rgba(255, 255, 255, 0.25);
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.85);
     margin-right: 0;
     transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
     text-decoration: none;
     font-size: 0.88rem;
     background: rgba(255, 255, 255, 0.06);
 }

 .footer-social a:hover {
     background: #FFD700;
     color: #7a1212;
     border-color: #FFD700;
     transform: translateY(-3px);
 }

 .footer-heading {
     font-size: 0.82rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: #FFD700;
     margin-bottom: 20px;
     text-align: left;
     position: relative;
     padding-bottom: 12px;
 }

 .footer-heading::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 28px;
     height: 2px;
     background: rgba(255, 255, 255, 0.35);
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 11px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.65);
     text-decoration: none;
     font-size: 0.92rem;
     transition: color 0.2s, padding-left 0.2s;
     display: inline-block;
 }

 .footer-links a:hover {
     color: #fff;
     padding-left: 4px;
 }

 .footer-review-card {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 16px;
     padding: 20px 22px;
     font-size: 0.86rem;
     color: rgba(255, 255, 255, 0.75);
     line-height: 1.6;
 }

 .footer-review-card .stars {
     color: #FFD700;
     font-size: 0.82rem;
     margin-bottom: 8px;
 }

 .footer-review-card strong {
     color: #fff;
     display: block;
     margin-top: 10px;
     font-size: 0.84rem;
 }

 .footer-newsletter {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 16px;
     padding: 18px;
     margin-top: 20px;
 }

 .footer-newsletter form {
     display: flex;
     gap: 8px;
     margin-top: 10px;
 }

 .footer-newsletter input {
     flex: 1;
     border: none;
     border-radius: 50px;
     padding: 11px 16px;
     font-size: 0.85rem;
     outline: none;
 }

 .footer-newsletter button {
     background: #FFD700;
     color: #7a1212;
     border: none;
     border-radius: 50px;
     padding: 11px 18px;
     font-weight: 700;
     font-size: 0.85rem;
     cursor: pointer;
     transition: background 0.2s;
     white-space: nowrap;
 }

 .footer-newsletter button:hover {
     background: #fff;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding: 24px 0;
     margin-top: 50px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 10px;
     font-size: 0.82rem;
     color: rgba(255, 255, 255, 0.55);
 }

 .footer-bottom a {
     color: rgba(255, 255, 255, 0.55);
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-bottom a:hover {
     color: #fff;
 }

 /* ── MODAL ── */
 .custom-modal-overlay {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 9999;
     background: rgba(26, 35, 64, 0.55);
     backdrop-filter: blur(6px);
     align-items: center;
     justify-content: center;
     padding: 16px;
 }

 .custom-modal-overlay.show {
     display: flex;
 }

 .custom-modal-box {
     background: #fff;
     border-radius: 24px;
     padding: 44px 40px;
     max-width: 420px;
     width: 90%;
     text-align: center;
     box-shadow: 0 24px 80px rgba(74, 144, 217, 0.2);
     animation: popIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
 }

 @keyframes popIn {
     from {
         opacity: 0;
         transform: scale(0.88) translateY(24px);
     }

     to {
         opacity: 1;
         transform: scale(1) translateY(0);
     }
 }

 .modal-icon {
     width: 70px;
     height: 70px;
     background: var(--blue-light);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #b81c1c;
     font-size: 1.8rem;
     margin: 0 auto 22px;
 }

 .modal-title {
     font-size: 1.4rem;
     font-weight: 800;
     color: var(--heading-dark);
     margin-bottom: 10px;
 }

 .modal-desc {
     color: var(--gray-text);
     font-size: 0.93rem;
     line-height: 1.6;
     margin-bottom: 26px;
 }

 .modal-close {
     position: absolute;
     top: 18px;
     right: 22px;
     background: none;
     border: none;
     font-size: 1.4rem;
     color: var(--gray-text);
     cursor: pointer;
 }

 .top-row {
     text-align: center;
 }

 /* ══════════════════════════════════════════════════════════════
    RESPONSIVE — TABLET & MOBILE
    ══════════════════════════════════════════════════════════════ */

 /* ── Tablet (≤991px) ── */
 @media (max-width: 991px) {
     section {
         padding: 64px 0;
     }

     .navbar-collapse {
         margin-top: 14px;
         padding: 18px 16px;
         border-radius: 14px;
     }

     .navbar-nav {
         gap: 4px !important;
     }

     .navbar-nav .nav-link {
         padding: 10px 14px !important;
         border-radius: 8px;
     }

     .navbar-nav .nav-link:hover {
         background: rgba(255, 255, 255, 0.06);
     }

     .btn-quote {
         display: inline-block;
         margin-top: 10px;
         text-align: center;
     }

     #hero {
         min-height: auto;
         padding: 70px 0 60px;
     }

     .hero-sub,
     .hero-email-form {
         max-width: 85%;
     }

     .hero-stats {
         gap: 26px;
     }

     /* Reviews: 2 cards visible on tablet */
     .review-card {
         flex: 0 0 calc((100% - 22px) / 2);
     }

     /* Footer: stack to 2 columns on tablet, center brand col */
     .footer-heading {
         text-align: left;
     }
 }

 /* ── Mobile (≤600px) ── */
 @media (max-width: 600px) {

     section {
         padding: 48px 0;
     }

     .container {
         padding-left: 20px;
         padding-right: 20px;
     }

     /* Navbar */
     .navbar {
         padding: 12px 0;
     }

     .brand {
         font-size: 1.25rem;
     }

     /* Hero */
     #hero {
         min-height: auto;
         padding: 56px 0 48px;
         text-align: center;
     }

     .hero-badge {
         font-size: 0.7rem;
         padding: 6px 14px;
         margin-bottom: 18px;
     }

     .hero-title {
         font-size: clamp(2rem, 8vw, 2.6rem);
         margin-bottom: 16px;
     }

     .hero-sub {
         font-size: 0.95rem;
         max-width: 100%;
         margin-bottom: 26px;
         line-height: 1.6;
     }

     .hero-email-form {
         flex-direction: column;
         max-width: 100%;
         gap: 12px;
     }

     .hero-email-form input {
         padding: 10px 20px;
         font-size: 1rem;
         width:90%;
         margin: auto;
     }

     .btn-hero {
          width:90%;
         margin: auto;
         padding: 10px 20px;
         justify-content: center;
         display: flex;
         align-items: center;
     }

     .hero-stats {
         gap: 0;
         margin-top: 32px;
         justify-content: space-between;
         width: 100%;
     }

     .hero-stat {
         flex: 1;
     }

     .hero-stat .num {
         font-size: 1.25rem;
     }

     .hero-stat .lbl {
         font-size: 0.65rem;
         letter-spacing: 0.04em;
     }

     /* Section headers */
     .section-eyebrow {
         font-size: 0.72rem;
     }

     .section-title {
         font-size: 1.5rem;
     }

     .section-sub {
         font-size: 0.92rem;
         max-width: 100%;
     }

     /* Product */
     .product-img-wrap {
         margin-bottom: 8px;
     }

     .product-feature {
         margin-bottom: 18px;
     }

     .btn-blue {
         width: 100%;
         text-align: center;
     }

     /* Why cards */
     .why-card {
         padding: 24px 20px;
     }

     /* Reviews: 1 full-width card per view. Tightly snaps edge to edge —
        no half-cut neighboring card peeking in, no overlap. */
     .reviews-slider-wrap {
         margin: 0;
     }

     .review-card {
         flex: 0 0 100%;
         padding: 26px 22px;
     }

     .review-text {
         font-size: 0.88rem;
     }

     .slider-arrows {
         margin-top: 22px;
         gap: 14px;
     }

     .slider-btn {
         width: 42px;
         height: 42px;
     }

     /* Benefits */
     #benefits .col-lg-6:first-child {
         margin-bottom: 8px;
     }

     .benefit-item {
         margin-bottom: 22px;
     }

     .benefit-num {
         min-width: 36px;
         height: 36px;
         font-size: 0.82rem;
     }

     /* FAQ */
     .faq-question {
         padding: 16px 18px;
         font-size: 0.9rem;
     }

     .faq-answer {
         padding: 0 18px;
         font-size: 0.86rem;
     }

     .faq-answer.open {
         max-height: 400px;
         padding-bottom: 16px;
     }

     /* Footer */
     footer {
         padding: 50px 0 0;
         text-align: center;
     }

     .footer-desc {
         max-width: 100%;
         margin: 0 auto 22px;
     }

     .footer-social {
         justify-content: center;
     }

     footer .col-lg-2,
     footer .col-lg-3,
     footer .col-lg-4 {
         margin-top: 26px;
     }

     .footer-heading {
         text-align: center;
     }

     .footer-heading::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .footer-links {
         display: block;
         text-align: center;
     }

     .footer-newsletter form {
         flex-direction: column;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     /* Modal */
     .custom-modal-box {
         padding: 34px 24px;
     }

     .modal-title {
         font-size: 1.2rem;
     }

     .modal-desc {
         font-size: 0.88rem;
     }
 }

 /* ── Extra small (≤380px) ── */
 @media (max-width: 380px) {
     .hero-title {
         font-size: 1.9rem;
     }

     .hero-stats {
         flex-wrap: wrap;
         gap: 16px 0;
     }

     .hero-stat {
         flex: 1 1 30%;
     }
 }
 
  .get-a{
         border-radius: 4px !important;
    background: #b81c1c !important;
    color:white !important;
 }
 .navbar-bgg{
         padding: 12px 0px !important;
 }
 .top-loog{
     font-size:25px !important;
 }
 #hero{
background-image: radial-gradient(at center center, #FF4C4C 0%, #9F0C0C 100%);
min-height: auto;
    padding: 20px;
 }
 
 
 @media(max-width:999px){
     .top-row{
         flex-direction: column-reverse;
     }
     #hero {
    padding: 50px 10px;
}
.hero-title {
    font-size: 25px;
}
    .hero-sub, .hero-email-form {
        max-width: 100%;
    }
 }
 
  @media(max-width:600px){
 
.hero-title {
    font-size: 22px;
}
    .hero-sub, .hero-email-form {
        max-width: 100%;
    }
     #hero {
    padding: 70px 13px;
}
 }
 
 /* ===== BENEFITS SECTION ===== */

.benefits-section{
    background:#f8f8f8;
    position:relative;
}

.benefit-card{
    background:#fff;
    padding:35px 25px;
    border-radius:24px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.05);
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.benefit-image{
    margin-bottom:25px;
}

.benefit-image img{
    width:160px;
    max-width:100%;
    object-fit:contain;
}

.benefit-card h4{
    font-size:28px;
    font-weight:700;
    color:var(--heading-dark);
    margin-bottom:15px;
}

.benefit-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    max-width:280px;
    margin:auto;
}

@media(max-width:991px){

    .benefit-card{
        padding:30px 20px;
    }

    .benefit-image img{
        width:140px;
    }

    .benefit-card h4{
        font-size:24px;
    }

}

@media(max-width:600px){
    .benefit-card{
        padding:28px 18px;
    }
    .benefit-image img{
        width:120px;
    }
    .benefit-card h4{
        font-size:20px;
        margin-bottom:10px;
    }
    .benefit-card p{
        font-size:14px;
    }
}
 
 .product-img-wrap{
         margin: auto;
    width: 90%;
 }
 .section-title {
    font-size: 30px;
 }
 
 
 
 
 
 
 
 
 
 /*==========================
VIGOR BENEFITS
==========================*/

#vigor-benefits{
    background:#b81c1c;
    padding:90px 0;
}

.section-top{
    margin-bottom:60px;
}

.benefit-stars{
    color:#FFD700;
    font-size:28px;
    margin-bottom:20px;
}

/* This heading sits on the dark red band, so it stays white (not black)
   to remain readable — same rule as the #benefits section above. */
.benefit-main-title{
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1.2;
    max-width:900px;
    margin:auto;
    font-family:'Poppins',sans-serif;
}

.vigor-card{
    background:#fff;
    border:3px solid #b50000;
    border-radius:25px;
    overflow:hidden;
    text-align:center;
    height:100%;
    transition:.3s;
}

.vigor-card:hover{
    transform:translateY(-8px);
}

.vigor-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    padding:12px;
    border-radius:25px;
}

.vigor-card h4{
    font-size:20px;
    font-weight:700;
    color:var(--heading-dark);
    line-height:1.1;
    padding:10px 19px 20px;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .benefit-main-title{
        font-size:40px;
    }

    .vigor-card img{
        height:240px;
    }

    .vigor-card h4{
        font-size:28px;
    }

}

/* Mobile */

@media(max-width:576px){

    #vigor-benefits{
        padding:70px 0;
    }

    .benefit-main-title{
        font-size:30px;
    }

    .benefit-stars{
        font-size:22px;
    }

    .vigor-card img{
        height:220px;
    }

    .vigor-card h4{
        font-size:24px;
        padding:15px 20px 25px;
    }

}
.footer-brand span {
    color: #ffffff;
}
 
 @media(max-width:500px){
     .section-title {
    font-size: 20px;
}
    .benefit-main-title {
        font-size: 20px;
        font-weight: 600;
    }
        .vigor-card h4 {
        font-size: 18px;
        padding: 15px 20px 25px;
    }
 }