:root {
    --purple: #74459a;
    --purple-dark: #4f337b;
    --cyan: #209cb9;
    --ink: #2b2433;
    --muted: rgba(43, 36, 51, 0.72);
    --line: rgba(116, 69, 154, 0.18);
    --surface: #ffffff;
    --white: #ffffff;
    --brand-gradient: linear-gradient(135deg, var(--cyan), var(--purple));
    --radius: 8px;
    --shadow: 0 18px 44px rgba(79, 51, 123, 0.14);
    --font: "Outfit", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--surface);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.65;
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.brand img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--cyan);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border: 0;
    border-radius: var(--radius);
    background: var(--brand-gradient);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(32, 156, 185, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(116, 69, 154, 0.26);
}

.btn i {
    font-size: 1.25rem;
}

.btn-small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.92rem;
}

.btn-secondary {
    background: var(--white);
    color: var(--cyan);
    border: 1px solid var(--line);
    box-shadow: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 70px 0 86px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(116, 69, 154, 0.22) 1px, transparent 1.2px);
    background-size: 14px 14px;
    opacity: 0.55;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.62) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92));
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    filter: saturate(0.95) contrast(1.02);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    align-items: center;
    gap: 54px;
}

.eyebrow {
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    letter-spacing: 0;
}

h1 {
    max-width: 690px;
    font-size: clamp(2.45rem, 5vw, 4.7rem);
    font-weight: 800;
    line-height: 1.06;
}

.title-highlight {
    color: var(--purple);
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
}

.hero-text {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.12rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.trust-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.trust-row a:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
    color: var(--purple);
}

.trust-row i {
    color: var(--cyan);
}

.hero-media {
    position: relative;
    min-height: 560px;
}

.hero-photo {
    width: 100%;
    height: 560px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}

.product-shot {
    position: absolute;
    left: -28px;
    bottom: -28px;
    width: min(250px, 50%);
    filter: drop-shadow(0 18px 26px rgba(79, 51, 123, 0.22));
}

.animated-seal {
    position: absolute;
    top: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: var(--purple-dark);
    box-shadow: 0 18px 34px rgba(79, 51, 123, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    outline: 5px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

.seal-ring {
    position: absolute;
    inset: 0;
    animation: seal-spin 12s linear infinite;
}

.seal-ring-bg {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 2;
}

.seal-ring text {
    fill: rgba(255, 255, 255, 0.92);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.seal-core {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 18px rgba(79, 51, 123, 0.28), 0 0 0 4px rgba(255, 255, 255, 0.12);
    animation: seal-pulse 2.6s ease-in-out infinite;
}

@keyframes seal-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes seal-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

.problem,
.benefits,
.how,
.comparison,
.security,
.dosage,
.testimonials,
.final-cta {
    padding: 88px 0;
}

.problem {
    background: var(--purple);
    color: var(--white);
}

.problem .eyebrow {
    color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.problem-list {
    display: grid;
    gap: 14px;
}

.problem-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, background 0.25s ease;
}

.problem-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.1);
}

.problem-item i {
    color: var(--cyan);
    font-size: 1.6rem;
}

.brand-ribbon {
    overflow: hidden;
    background: var(--cyan);
    color: var(--white);
    border-top: 8px solid var(--white);
    border-bottom: 8px solid var(--white);
}

.ribbon-track {
    display: flex;
    width: max-content;
    padding: 16px 0;
    animation: ribbon-scroll 28s linear infinite;
}

.ribbon-group {
    display: flex;
    flex-shrink: 0;
    gap: 42px;
    padding-right: 42px;
}

.ribbon-group span {
    position: relative;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ribbon-group span::after {
    content: "+";
    position: absolute;
    right: -25px;
    color: var(--white);
    font-weight: 900;
}

@keyframes ribbon-scroll {
    to {
        transform: translateX(-50%);
    }
}

.section-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.benefits {
    background: var(--white);
}

.benefit-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card,
.testimonial-grid article,
.compare-panel,
.quote {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.benefit-card {
    padding: 26px;
    box-shadow: 0 14px 32px rgba(79, 51, 123, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(79, 51, 123, 0.13);
}

.benefit-card i {
    color: var(--cyan);
    font-size: 2.3rem;
}

.benefit-card h3 {
    margin: 14px 0 8px;
    font-size: 1.18rem;
    font-weight: 700;
}

.benefit-card p,
.how-copy p,
.security-copy > p,
.dosage p,
.testimonial-grid p {
    color: var(--muted);
}

.lifestyle-band {
    padding: 92px 0;
    background:
        linear-gradient(90deg, rgba(116, 69, 154, 0.94), rgba(32, 156, 185, 0.88)),
        var(--purple);
    color: var(--white);
    overflow: hidden;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.lifestyle-images {
    position: relative;
    min-height: 420px;
}

.lifestyle-images img {
    position: absolute;
    width: 62%;
    height: 330px;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 20px 42px rgba(43, 36, 51, 0.22);
}

.lifestyle-images img:first-child {
    left: 0;
    top: 0;
}

.lifestyle-images img:last-child {
    right: 0;
    bottom: 0;
}

.lifestyle-copy .eyebrow {
    color: var(--white);
}

.lifestyle-copy p:not(.eyebrow) {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.how-grid,
.security-grid,
.dosage-grid,
.final-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 44px;
}

.how-copy p,
.security-copy > p,
.dosage p {
    margin: 18px 0 28px;
    font-size: 1.08rem;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border-left: 4px solid var(--cyan);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
}

.step span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--white);
    font-weight: 900;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.step p {
    color: var(--muted);
}

.comparison {
    position: relative;
    overflow: hidden;
    background: var(--brand-gradient);
    color: var(--white);
}

.comparison::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.3px);
    background-size: 18px 18px;
    opacity: 0.42;
    transform: translateX(26%);
}

.comparison-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr) minmax(190px, 0.62fr);
    gap: 22px;
    align-items: center;
}

.compare-panel {
    min-height: 360px;
    padding: 30px 34px;
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(79, 51, 123, 0.22);
}

.compare-monthly {
    background: var(--white);
    color: var(--ink);
}

.compare-featured {
    background: linear-gradient(135deg, rgba(32, 156, 185, 0.72), rgba(116, 69, 154, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.compare-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.compare-title > div {
    min-width: 0;
}

.compare-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: var(--white);
    font-size: 2.5rem;
}

.compare-featured .compare-icon {
    background: var(--white);
    color: var(--purple);
}

.compare-panel h3 {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.08;
}

.compare-line {
    height: 3px;
    margin-bottom: 22px;
    background: var(--brand-gradient);
}

.compare-featured .compare-line {
    background: rgba(255, 255, 255, 0.32);
}

.compare-panel ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.compare-panel li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
    color: currentColor;
    font-size: clamp(0.95rem, 1.25vw, 1.08rem);
    font-weight: 600;
}

.compare-panel li + li {
    padding-top: 12px;
    border-top: 1px solid rgba(116, 69, 154, 0.16);
}

.compare-featured li + li {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.compare-panel li span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(116, 69, 154, 0.12);
}

.compare-panel i {
    color: var(--purple);
}

.compare-featured li span {
    background: var(--white);
}

.compare-featured i {
    color: var(--cyan);
}

.tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compare-shield {
    display: flex;
    justify-content: center;
    perspective: 900px;
}

.shield-image {
    width: min(290px, 100%);
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(79, 51, 123, 0.32));
    transform-origin: center;
    animation: shield-pulse 2.8s ease-in-out infinite;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.shield-image:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.08) rotateY(-8deg) rotateX(4deg);
    filter:
        drop-shadow(0 24px 38px rgba(79, 51, 123, 0.42))
        drop-shadow(0 0 18px rgba(32, 156, 185, 0.42));
}

@keyframes shield-pulse {
    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 20px 30px rgba(79, 51, 123, 0.32));
    }

    50% {
        transform: scale(1.045);
        filter:
            drop-shadow(0 24px 36px rgba(79, 51, 123, 0.38))
            drop-shadow(0 0 16px rgba(32, 156, 185, 0.36));
    }
}

.security-grid {
    grid-template-columns: 1fr 1fr;
}

.security-grid img {
    width: 100%;
    height: 520px;
    border-radius: var(--radius);
    object-fit: cover;
}

.quote {
    padding: 22px;
    border-left: 4px solid var(--cyan);
}

.quote i {
    color: var(--cyan);
    font-size: 1.8rem;
}

.quote p {
    margin: 8px 0 12px;
    color: var(--ink);
    font-size: 1.06rem;
    font-style: italic;
}

.dosage {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.dosage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(116, 69, 154, 0.16) 1px, transparent 1.25px);
    background-size: 18px 18px;
    opacity: 0.5;
    pointer-events: none;
}

.dosage-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.dosage-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 24px 54px rgba(79, 51, 123, 0.18);
}

.dosage-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(32, 156, 185, 0.1), rgba(116, 69, 154, 0.18));
    pointer-events: none;
}

.dosage-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.dosage-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(79, 51, 123, 0.12);
    backdrop-filter: blur(10px);
}

.dosage-panel p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.dosage-panel h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    margin-bottom: 8px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(79, 51, 123, 0.1);
}

th,
td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    background: var(--purple);
    color: var(--white);
}

td {
    color: var(--muted);
    font-weight: 700;
}

.dosage-table th,
.dosage-table td {
    padding: 8px 14px;
    font-size: 0.9rem;
}

.dosage-table td:last-child {
    color: var(--purple);
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid article {
    padding: 24px;
    box-shadow: 0 12px 28px rgba(79, 51, 123, 0.07);
}

.stars {
    margin-bottom: 12px;
    color: var(--purple);
    letter-spacing: 0.08em;
}

.testimonial-grid strong {
    display: block;
    margin-top: 16px;
}

.final-cta {
    background: var(--purple);
    color: var(--white);
}

.final-grid {
    grid-template-columns: 300px 1fr;
}

.final-grid img {
    width: 280px;
    justify-self: center;
    filter: drop-shadow(0 18px 26px rgba(79, 51, 123, 0.28));
}

.final-grid h2 {
    max-width: 760px;
    margin-bottom: 28px;
}

.final-cta .eyebrow {
    color: var(--white);
}

.footer {
    padding: 48px 0;
    background: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 34px;
}

.footer-logo {
    height: 56px;
    margin-bottom: 14px;
}

.footer h3 {
    margin-bottom: 12px;
    font-size: 1.02rem;
    font-weight: 700;
}

.footer p {
    margin-bottom: 8px;
    color: var(--muted);
}

.footer i {
    color: var(--cyan);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 12px 30px rgba(32, 156, 185, 0.32);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 20px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-grid,
    .problem-grid,
    .how-grid,
    .security-grid,
    .dosage-grid,
    .final-grid,
    .comparison-showcase,
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .comparison-showcase {
        gap: 20px;
    }

    .compare-panel {
        min-height: auto;
    }

    .compare-shield {
        order: -1;
    }

    .shield-image {
        width: min(210px, 62vw);
    }

    .hero {
        padding-top: 46px;
    }

    .hero-media {
        min-height: auto;
    }

    .hero-photo {
        height: min(70vw, 520px);
    }

    .benefit-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lifestyle-images {
        min-height: 360px;
    }

    .lifestyle-images img {
        height: 280px;
    }

    .security-grid img {
        height: 420px;
    }

    .dosage-media,
    .dosage-media img {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .brand img {
        height: 42px;
    }

    .hero,
    .problem,
    .benefits,
    .how,
    .comparison,
    .security,
    .dosage,
    .testimonials,
    .final-cta,
    .lifestyle-band {
        padding: 58px 0;
    }

    .hero-actions,
    .trust-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-photo {
        height: 380px;
    }

    .product-shot {
        left: 12px;
        bottom: 12px;
        width: 150px;
    }

    .animated-seal {
        width: 96px;
        height: 96px;
        right: 12px;
        top: 12px;
    }

    .seal-ring text {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .seal-core {
        width: 46px;
        height: 46px;
    }

    .benefit-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .compare-panel {
        padding: 22px;
        border-radius: 14px;
    }

    .compare-title {
        gap: 16px;
        margin-bottom: 22px;
    }

    .compare-icon {
        width: 58px;
        height: 58px;
        font-size: 2rem;
    }

    .compare-panel li {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .compare-panel li span {
        width: 42px;
        height: 42px;
    }

    .lifestyle-images {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .lifestyle-images img {
        position: static;
        width: 100%;
        height: 240px;
        border-width: 5px;
    }

    .step {
        grid-template-columns: 44px 1fr;
        padding: 16px;
    }

    .step span {
        width: 38px;
        height: 38px;
    }

    .security-grid img {
        height: 330px;
    }

    .dosage-panel {
        padding: 22px;
        border-radius: 16px;
    }

    .dosage-media {
        border-radius: 16px;
    }

    .dosage-media,
    .dosage-media img {
        min-height: 300px;
    }

    .final-grid img {
        width: 210px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}
