        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e1e1c;
            line-height: 1.65;
            overflow-x: hidden;
            width: 100%;
        }

        img,
        picture,
        svg,
        video {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        button {
            cursor: pointer;
            font: inherit;
            border: none;
            background: none;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            line-height: 1.2;
            color: #142814;
        }

        :root {
            --g900: #0a1f0a;
            --g800: #142814;
            --g700: #1e4020;
            --g600: #2a5c2a;
            --g500: #357535;
            --g400: #4a9a4a;
            --g200: #c5e8c5;
            --g100: #f0f8f0;
            --red: #c0392b;
            --red-h: #e74c3c;
            --gold: #c9952a;
            --gold-light: #f0c040;
            --white: #ffffff;
            --off-white: #fafaf8;
            --gray50: #f5f5f3;
            --gray100: #e8e8e4;
            --gray300: #c0c0b8;
            --gray500: #888880;
            --gray600: #5a5a54;
            --gray800: #222220;
            --fs-xs: 0.75rem;
            --fs-sm: 0.875rem;
            --fs-base: 1rem;
            --fs-lg: 1.25rem;
            --fs-xl: 1.5rem;
            --fs-2xl: 1.75rem;
            --fs-3xl: 2.2rem;
            --fs-4xl: 3rem;
            --radius: 10px;
            --radius-lg: 20px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
            --transition: 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        :focus-visible {
            outline: 3px solid var(--g400);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 4vw, 2.5rem);
            width: 100%;
        }

        .section {
            padding: clamp(3rem, 8vw, 6rem) 0;
        }

        .section--alt {
            background: var(--gray50);
        }

        .section--dark {
            background: var(--g800);
        }

        .eyebrow {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: var(--fs-xs);
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--g500);
            margin-bottom: 12px;
        }

        .eyebrow--light {
            color: var(--g400);
        }

        .section-header {
            margin-bottom: clamp(2rem, 6vw, 3.5rem);
            text-align: center;
        }

        .section-header p {
            max-width: 560px;
            margin: 12px auto 0;
            font-size: var(--fs-lg);
            color: var(--gray600);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.2rem);
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            font-size: var(--fs-base);
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
            cursor: pointer;
        }

        .btn--primary {
            background: var(--red);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
        }

        .btn--primary:hover {
            background: var(--red-h);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
        }

        .btn--ghost {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.6);
        }

        .btn--ghost:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: none;
        }

        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 70px;
            display: flex;
            align-items: center;
            padding: 0 clamp(1rem, 4vw, 2.5rem);
            transition: background var(--transition), box-shadow var(--transition);
        }

        #nav.scrolled {
            background: var(--g900);
            box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
        }

        .nav-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            height: 75px !important;
            max-height: 100px;
            margin-bottom: 10px;
            width: auto;
        }

        #nav-cta {
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition);
        }

        #nav-cta.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 70px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('assets/Fipro Spark Plus 50 sc hero background.png');
            background-size: cover;
            background-position: center;
            transition: opacity 0.8s ease;
            opacity: 0.7;
        }

        .hero-bg.loaded {
            opacity: 0.8;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(10, 31, 10, 0.7) 0%, rgba(14, 38, 14, 0.65) 45%, rgba(10, 31, 10, 0.5) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 4vw, 2.5rem);
            display: flex;
            align-items: center;
            min-height: calc(100vh - 70px);
        }

        .hero-content {
            max-width: 650px;
            padding: clamp(3rem, 6vw, 5rem) 0;
        }

        .hero-badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 100px;
            padding: 6px 14px;
            font-size: var(--fs-xs);
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
        }

        .badge--gold {
            background: rgba(201, 149, 42, 0.25);
            border-color: rgba(201, 149, 42, 0.5);
            color: var(--gold-light);
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 24px;
            font-size: clamp(2.6rem, 5.5vw, 4.2rem);
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
            font-weight: 800;
            line-height: 1.2;
        }

        .hero h1 .accent {
            color: #7ecb7e;
        }

        .hero-sub {
            font-size: clamp(1.1rem, 2.2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            max-width: 560px;
            line-height: 1.7;
            font-weight: 500;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: clamp(1.5rem, 3vw, 2.8rem);
            margin-top: 48px;
            padding-top: 36px;
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            flex-wrap: wrap;
        }

        .stat {
            text-align: left;
        }

        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 900;
            color: var(--gold-light);
            line-height: 1;
        }

        .stat-label {
            font-size: var(--fs-xs);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 6px;
            font-weight: 600;
        }

        .trust-bar {
            background: var(--g700);
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .trust-bar-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(1.5rem, 4vw, 4rem);
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: var(--fs-sm);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .trust-icon {
            font-size: 1.4rem;
        }

        .ps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .ps-col-head {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-size: var(--fs-2xl);
            font-weight: 800;
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 2px solid;
        }

        .ps-col-head.problem-head {
            color: var(--red);
            border-color: var(--red);
        }

        .ps-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--gray100);
            font-size: var(--fs-base);
            color: var(--gray600);
        }

        .ps-list li:last-child {
            border-bottom: none;
        }

        .ps-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .ps-icon.problem {
            background: #fee;
            color: var(--red);
        }

        .solution-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--white);
        }

        .solution-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }

        .solution-image:hover img {
            transform: scale(1.02);
        }

        .solution-caption {
            margin-top: 16px;
            font-size: var(--fs-sm);
            text-align: center;
            color: var(--gray600);
            font-weight: 500;
        }

        .hiw-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
        }

        .hiw-grid::before {
            content: '';
            position: absolute;
            top: 60px;
            left: calc(33.33% - 16px);
            right: calc(33.33% - 16px);
            height: 3px;
            background: linear-gradient(90deg, var(--g400), var(--g600));
            border-radius: 2px;
        }

        .hiw-card {
            text-align: center;
            padding: clamp(1.5rem, 4vw, 2.5rem) 24px;
            border-radius: var(--radius-lg);
            background: var(--white);
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .hiw-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--g600), var(--g800));
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: var(--fs-2xl);
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 4px 16px rgba(30, 64, 32, 0.35);
        }

        .hiw-card h3 {
            margin-bottom: 12px;
            font-size: var(--fs-xl);
        }

        .hiw-card p {
            font-size: var(--fs-base);
            color: var(--gray600);
        }

        .label-showcase {
            background: var(--g900);
            padding: clamp(3.5rem, 7vw, 6rem) 0;
            overflow: hidden;
            position: relative;
        }

        .label-showcase::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(74, 154, 74, 0.12) 0%, transparent 70%);
        }

        .label-showcase-inner {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 32px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .label-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .label-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: center;
            transition: transform 0.4s ease;
        }

        .label-img:hover img {
            transform: scale(1.02);
        }

        .label-text {
            text-align: center;
            padding: 24px;
        }

        .label-text h2 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: var(--fs-3xl);
        }

        .label-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: var(--fs-base);
            line-height: 1.7;
            font-weight: 500;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: clamp(1.5rem, 3vw, 2.2rem);
            border: 1px solid var(--gray100);
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--g200);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius);
            background: linear-gradient(135deg, var(--g100), var(--g200));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .feature-card h4 {
            font-size: var(--fs-xl);
            margin-bottom: 10px;
            color: var(--g800);
            font-weight: 700;
        }

        .feature-card p {
            font-size: var(--fs-sm);
            color: var(--gray500);
            line-height: 1.6;
        }

        .uses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .use-card {
            background: var(--g800);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: transform var(--transition), background var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-md);
        }

        .use-card:hover {
            transform: translateY(-8px);
            background: var(--g700);
            border-color: var(--g400);
        }

        .use-icon {
            font-size: 3rem;
            margin-bottom: 16px;
            display: block;
        }

        .use-card h4 {
            color: var(--white);
            font-size: var(--fs-xl);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .use-card p {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .dosage-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .dosage-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .dosage-table thead tr {
            background: var(--g700);
        }

        .dosage-table thead th {
            padding: 16px 20px;
            text-align: left;
            color: var(--white);
            font-size: var(--fs-sm);
            letter-spacing: 0.06em;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
        }

        .dosage-table tbody tr:nth-child(even) {
            background: var(--gray50);
        }

        .dosage-table tbody tr:nth-child(odd) {
            background: var(--white);
        }

        .dosage-table tbody td {
            padding: 14px 20px;
            font-size: var(--fs-sm);
            color: var(--gray600);
            border-bottom: 1px solid var(--gray100);
        }

        .dosage-table tbody tr:last-child td {
            border-bottom: none;
        }

        .treatment-cards {
            display: grid;
            gap: 20px;
        }

        .treatment-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: clamp(1.25rem, 3vw, 1.75rem);
            border-left: 4px solid var(--g600);
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
        }

        .treatment-card:hover {
            box-shadow: var(--shadow-md);
        }

        .treatment-card h4 {
            color: var(--g700);
            margin-bottom: 8px;
            font-size: var(--fs-lg);
        }

        .treatment-card p {
            font-size: var(--fs-sm);
            color: var(--gray600);
            line-height: 1.6;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 40px;
        }

        .faq-item {
            border-bottom: 1px solid var(--gray100);
        }

        .faq-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 0;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }

        .faq-question {
            font-size: var(--fs-base);
            font-weight: 600;
            color: var(--g800);
            flex: 1;
            line-height: 1.4;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--g100);
            color: var(--g700);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            transition: transform var(--transition), background var(--transition);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--g700);
            color: var(--white);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex !important;
            flex-wrap: wrap !important;
            word-break: break-word;
        }

        .faq-answer-inner {
            padding: 0 0 20px 0;
            font-size: var(--fs-base);
            color: var(--gray600);
            line-height: 1.75;
        }

        .cta-banner {
            background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
            padding: clamp(3.5rem, 8vw, 6rem) 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-banner .container {
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: clamp(2rem, 4vw, 3rem);
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.92);
            max-width: 560px;
            margin: 0 auto 40px;
            font-size: var(--fs-lg);
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn--cta-white {
            background: var(--white);
            color: var(--red);
            padding: 16px 40px;
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            font-size: var(--fs-base);
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
            transition: transform var(--transition), box-shadow var(--transition);
            display: inline-block;
        }

        .btn--cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
        }

        footer {
            background: var(--g900);
            color: rgba(255, 255, 255, 0.85);
            padding: clamp(3.5rem, 7vw, 5rem) 0 0;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 56px;
        }

        .footer-logo img {
            max-height: 100px;
            height: 75px !important;
            width: auto;
            margin-bottom: 16px;
        }

        .footer-desc {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-usa {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 100px;
            padding: 8px 16px;
            font-size: var(--fs-xs);
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.08em;
        }

        .footer-col h5 {
            font-family: 'Inter', sans-serif;
            font-size: var(--fs-sm);
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: var(--fs-sm);
            color: rgba(255, 255, 255, 0.7);
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: var(--g400);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: var(--fs-xs);
            color: rgba(255, 255, 255, 0.5);
        }

        #lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease;
        }

        #lightbox.open {
            opacity: 1;
            pointer-events: auto;
        }

        #lightbox img {
            max-width: 90vw;
            max-height: 88vh;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background var(--transition);
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .word.visible {
            opacity: 1;
            transform: none;
        }

        @media (max-width: 900px) {
            .hero-inner {
                justify-content: center;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-badges,
            .hero-btns,
            .hero-stats {
                justify-content: center;
            }

            .stat {
                text-align: center;
            }

            .ps-grid,
            .hiw-grid,
            .label-showcase-inner,
            .dosage-grid,
            .faq-grid,
            .footer-inner {
                grid-template-columns: 1fr;
            }

            .hiw-grid::before {
                display: none;
            }

            .uses-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {

            .features-grid,
            .uses-grid {
                grid-template-columns: 1fr;
            }

            .dosage-table {
                display: block;
                width: 100%;
            }

            .dosage-table thead {
                display: none;
            }

            .dosage-table tbody,
            .dosage-table tr,
            .dosage-table td {
                display: block;
                width: 100%;
            }

            .dosage-table tr {
                margin-bottom: 1rem;
                border: 1px solid var(--gray100);
                border-radius: var(--radius-lg);
                background: var(--white);
                box-shadow: var(--shadow-sm);
                overflow: hidden;
            }

            .dosage-table td {
                padding: 0.75rem 1rem;
                border-bottom: 1px solid var(--gray100);
                display: flex;
                justify-content: space-between;
                align-items: baseline;
                gap: 0.5rem;
            }

            .dosage-table td:last-child {
                border-bottom: none;
            }

            .dosage-table td::before {
                content: attr(data-label);
                font-weight: 700;
                color: var(--g700);
                font-size: 0.8rem;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                min-width: 100px;
            }

            .dosage-table td:first-child {
                font-weight: 700;
                background: var(--gray50);
                border-bottom: 2px solid var(--g600);
            }

            .faq-btn {
                padding: 16px 0;
            }

            .faq-question {
                font-size: var(--fs-sm);
            }

            .faq-icon {
                width: 24px;
                height: 24px;
                font-size: 1rem;
            }

            .faq-answer-inner {
                font-size: var(--fs-sm);
            }
        }

        @media (max-width: 480px) {
            .trust-bar-inner {
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }

            .trust-item {
                white-space: normal;
            }

            .faq-btn {
                flex-wrap: wrap;
                gap: 8px;
                align-items: flex-start;
            }

            .faq-question {
                flex: 1 1 100%;
                font-size: 0.9rem;
                word-break: break-word;
                white-space: normal;
            }

            .faq-icon {
                flex-shrink: 0;
                align-self: flex-start;
            }

            .faq-answer-inner {
                font-size: 0.85rem;
                word-break: break-word;
            }

            ;
        }

        @media (min-width: 901px) {
            .hero-content {
                text-align: left;
            }

            .hero-badges,
            .hero-btns,
            .hero-stats {
                justify-content: flex-start;
            }

            .stat {
                text-align: left;
            }
        }

        @media (max-width: 600px) {
            .threat-heading {
                font-size: 32px !important;
            }
        }
