:root {
    --primary-blue: #0F5BD8;
    --deep-blue: #0A3E96;
    --cta-red: #D92D20;
    --bg-color: #F3F7FB;
    --text-dark: #142033;
    --landing-float-bottom: 24px;
    --landing-float-sticky-bottom: 152px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

button,
input,
select,
textarea,
option,
.form-control,
.form-select,
.btn,
.badge {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(2.2rem, 3.25vw, 3.35rem);
    letter-spacing: -0.024em;
    line-height: 1.04;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06em;
    text-wrap: initial;
    text-rendering: geometricPrecision;
    font-synthesis: none;
    -webkit-text-stroke: 0.012em currentColor;
    text-shadow: 0.01em 0 0 currentColor, -0.01em 0 0 currentColor;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-intro-copy {
    text-align: left;
    max-width: 35rem;
    font-size: 1.08rem;
    line-height: 1.58;
    color: #20314f;
}

#hero-section {
    overflow-x: clip;
}

.hero-promo-bar {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, #0f5bd8 0%, #0a3e96 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(10, 62, 150, 0.26);
    box-shadow: 0 12px 24px rgba(15, 91, 216, 0.14);
    padding: 0.78rem 0;
    margin: 0;
}

.hero-promo-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.hero-promo-track {
    position: relative;
    z-index: 1;
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    will-change: transform;
    animation: hero-promo-scroll var(--hero-promo-duration, 18s) linear infinite;
}

.hero-promo-group {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
}

.hero-promo-text {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    padding-inline: 1.15rem;
}

.hero-promo-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
}

@keyframes hero-promo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--hero-promo-loop-distance, 50%) * -1));
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: clamp(2.65rem, 3vw, 3.28rem);
        letter-spacing: -0.028em;
        line-height: 1.02;
        align-items: flex-start;
    }
}

.bg-soft {
    background-color: var(--bg-color);
}

.text-primary-blue {
    color: var(--primary-blue);
}

.text-deep-blue {
    color: var(--deep-blue);
}

/* Custom Buttons */
.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.btn::after {
    content: "";
    position: absolute;
    top: -140%;
    left: -30%;
    width: 60%;
    height: 320%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
    transform: rotate(18deg);
    opacity: 0;
    pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px) scale(0.985);
}

.btn:hover::after,
.btn:focus-visible::after {
    opacity: 1;
    animation: button-shine 0.8s ease;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.24rem rgba(15, 91, 216, 0.14);
}

.btn-primary {
    background: linear-gradient(180deg, #2d7af7 0%, var(--primary-blue) 58%, var(--deep-blue) 100%);
    border-color: rgba(10, 62, 150, 0.88);
    font-weight: 600;
    padding: 12px 24px;
    box-shadow: 0 12px 26px rgba(15, 91, 216, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #1f6ff4 0%, #0d56cf 58%, #08357f 100%);
    border-color: #08357f;
    box-shadow: 0 16px 30px rgba(15, 91, 216, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-cta-red {
    background: linear-gradient(180deg, #ef3f30 0%, var(--cta-red) 58%, #b8251b 100%);
    border-color: rgba(184, 37, 27, 0.92);
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    font-size: 1.1rem;
    box-shadow: 0 14px 28px rgba(217, 45, 32, 0.28), 0 4px 12px rgba(217, 45, 32, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-cta-red:hover {
    background: linear-gradient(180deg, #f34a3a 0%, #d92d20 55%, #a81f16 100%);
    border-color: #a81f16;
    color: #fff;
    box-shadow: 0 18px 34px rgba(217, 45, 32, 0.34), 0 6px 14px rgba(217, 45, 32, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-outline-primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
    border-color: rgba(15, 91, 216, 0.18);
    color: var(--deep-blue);
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 91, 216, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus-visible {
    background: linear-gradient(180deg, rgba(245, 249, 255, 1) 0%, rgba(233, 242, 255, 1) 100%);
    border-color: rgba(15, 91, 216, 0.28);
    color: var(--primary-blue);
    box-shadow: 0 14px 28px rgba(15, 91, 216, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

@keyframes button-shine {
    0% {
        transform: translateX(-180%) rotate(18deg);
    }

    100% {
        transform: translateX(360%) rotate(18deg);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(217, 45, 32, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 18px rgba(217, 45, 32, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(217, 45, 32, 0.3);
    }
}

.btn-pulse {
    animation: pulse-soft 2s infinite;
}

/* Clean Cards */
.custom-card {
    border-radius: 20px;
    border: 1px solid rgba(20, 32, 51, 0.06);
    box-shadow: 0 18px 38px rgba(15, 91, 216, 0.06);
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.custom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(15, 91, 216, 0.08);
    border-color: rgba(15, 91, 216, 0.12);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.marketplace-review-card {
    background: #f5f6f8;
    border-color: rgba(30, 49, 74, 0.08);
    box-shadow: 0 10px 24px rgba(25, 46, 78, 0.05);
    border-radius: 22px;
}

.marketplace-review-card:hover {
    transform: none;
    box-shadow: 0 14px 28px rgba(25, 46, 78, 0.08);
    border-color: rgba(30, 49, 74, 0.12);
}

.marketplace-review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.marketplace-review-name {
    display: block;
    color: #1b2738;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.marketplace-review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: #7a828d;
    font-size: 0.93rem;
    font-weight: 500;
}

.marketplace-review-stars {
    color: #f6b400;
    display: inline-flex;
    align-items: center;
    gap: 0.06rem;
    letter-spacing: 0.02em;
}

.marketplace-review-stars i {
    color: #f6b400;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.marketplace-review-dot {
    color: #9aa2ad;
    font-weight: 700;
}

.marketplace-review-text {
    color: #1f2937;
    font-size: 1.02rem;
    line-height: 1.5;
    margin-top: 0.75rem;
}

.marketplace-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8c95a1;
    font-size: 0.9rem;
    font-weight: 600;
    padding-top: 0.35rem;
}

.marketplace-review-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #8c95a1;
    font-size: 1rem;
}

.marketplace-review-actions span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.transform-scale-custom {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transform-scale-custom:hover {
    transform: translateY(-3px) scale(1.01);
}

.max-w-75 {
    max-width: 75%;
}

.checkout-support-points {
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1.45;
}

.landing-section-copy {
    max-width: 640px;
}

.hero-trust-grid {
    gap: 0.85rem !important;
    padding-top: 1.15rem !important;
}

.hero-trust-card {
    min-height: 74px;
    border-radius: 18px !important;
    padding: 0.8rem 1rem !important;
    box-shadow: 0 14px 30px rgba(15, 91, 216, 0.06) !important;
}

.pain-points-grid .custom-card {
    padding: 1.3rem !important;
}

.pain-points-grid h5 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.pain-points-grid .small {
    line-height: 1.5;
}

.benefits-heading {
    line-height: 1.08;
    max-width: none;
}

.benefits-copy .text-muted,
.testimonial-card p,
.awareness-panel .small,
.checkout-panel-header .text-muted {
    line-height: 1.55;
}

.testimonial-card p {
    font-size: 0.98rem;
}

@media (min-width: 768px) {
    .pain-points-grid > .col-md-3:nth-last-child(-n+2) {
        display: flex;
        justify-content: center;
    }
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(15, 91, 216, 0.12);
}

.awareness-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.awareness-panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-blue);
    background: rgba(15, 91, 216, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.awareness-panel-icon.small-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.awareness-check-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 91, 216, 0.08);
    box-shadow: 0 8px 22px rgba(15, 91, 216, 0.05);
}

.awareness-check-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 91, 216, 0.06);
    font-size: 1.1rem;
}

.awareness-note {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15, 91, 216, 0.05);
    border: 1px solid rgba(15, 91, 216, 0.09);
    font-size: 0.96rem;
    color: #29415f;
}

.awareness-compare-grid {
    align-items: stretch;
}

.awareness-compare-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.awareness-compare-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    border: 1px solid rgba(15, 91, 216, 0.1);
    box-shadow: 0 14px 30px rgba(15, 91, 216, 0.07);
}

.awareness-compare-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.awareness-compare-card:hover .awareness-compare-image {
    transform: scale(1.02);
}

.awareness-compare-image-official {
    object-position: center;
}

.awareness-compare-image-review {
    object-position: top center;
}

.awareness-compare-caption {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    color: #20314f;
    line-height: 1.35;
}

.awareness-compare-caption strong {
    font-size: 0.98rem;
}

.awareness-compare-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.awareness-compare-tag.is-official {
    background: rgba(22, 163, 74, 0.1);
    color: #15703d;
}

.awareness-compare-tag.is-review {
    background: rgba(217, 45, 32, 0.1);
    color: #b42318;
}

.pricing-card {
    border-radius: 24px;
}

.awareness-proof-panel {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
}

.awareness-proof-box {
    min-height: 168px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
    border: 1px dashed rgba(15, 91, 216, 0.14);
}

.awareness-proof-box.wide {
    min-height: 190px;
}

.awareness-proof-image {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product-info-summary-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-info-summary-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 0.9rem;
}

.product-info-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.product-info-highlight-chip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 91, 216, 0.1);
    background: rgba(255, 255, 255, 0.85);
    padding: 0.95rem 1rem;
    font-size: 0.96rem;
    font-weight: 700;
    color: #18304f;
}

.product-info-highlight-chip i {
    color: var(--primary-blue);
    font-size: 1.05rem;
}

.product-info-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(15, 91, 216, 0.06);
    border: 1px solid rgba(15, 91, 216, 0.08);
    color: #435674;
    line-height: 1.6;
}

.product-info-contact-note i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 0.08rem;
}

.product-info-contact-content {
    min-width: 0;
}

.product-info-contact-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.product-info-contact-links li {
    margin: 0;
}

.product-info-contact-link {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(15, 91, 216, 0.16);
    background: rgba(255, 255, 255, 0.88);
    padding: 0.7rem 0.78rem;
    text-decoration: none !important;
    color: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.product-info-contact-link:hover {
    border-color: rgba(15, 91, 216, 0.36);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 91, 216, 0.14);
    transform: translateY(-1px);
}

.product-info-contact-link-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 91, 216, 0.08);
    color: var(--primary-blue);
    font-size: 1rem;
}

.product-info-contact-link-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.02rem;
    flex: 1;
}

.product-info-contact-link-label {
    color: #516987;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-info-contact-link-value {
    color: #17395f;
    font-size: 0.95rem;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: none !important;
}

.product-info-contact-link-arrow {
    color: rgba(15, 91, 216, 0.78);
    font-size: 0.9rem;
    line-height: 1;
}

.product-info-contact-empty {
    margin-top: 0.7rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #29415f;
    font-size: 0.92rem;
    line-height: 1.45;
}

.product-info-contact-empty i {
    color: var(--primary-blue);
    margin-top: 0.18rem;
}

.product-info-accordion {
    display: grid;
    gap: 1rem;
}

.product-info-accordion-item {
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: 22px !important;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(18, 38, 63, 0.06);
}

.product-info-accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    color: #18304f;
    background: #ffffff;
    padding: 1.2rem 1.3rem;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.product-info-accordion-button:not(.collapsed) {
    color: var(--deep-blue);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.product-info-accordion-button:focus {
    border-color: transparent;
}

.product-info-accordion-body {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 1.2rem 1.3rem 1.3rem;
}

.product-info-accordion-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f6faff 0%, #edf4ff 100%);
    border: 1px solid rgba(15, 91, 216, 0.08);
    color: var(--primary-blue);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.product-info-accordion-button:not(.collapsed) .product-info-accordion-icon {
    background: linear-gradient(180deg, #e9f2ff 0%, #dfeeff 100%);
    border-color: rgba(15, 91, 216, 0.12);
}

.product-info-accordion-label {
    display: inline-block;
    line-height: 1.25;
}

.product-info-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.product-info-step+.product-info-step {
    margin-top: 1rem;
}

.product-info-step-number {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 12px 22px rgba(15, 91, 216, 0.2);
}

.product-info-ingredients-text {
    line-height: 1.8;
    font-size: 0.98rem;
}

.product-info-warning-list {
    padding-left: 1.15rem;
    color: #536480;
    line-height: 1.75;
}

.product-info-warning-list li+li {
    margin-top: 0.45rem;
}

/* Placeholder for visuals */
.placeholder-box {
    background-color: #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.hero-placeholder {
    aspect-ratio: 4 / 3;
}

/* Pricing Special Ribbon */
.pricing-carousel-shell {
    position: relative;
    isolation: isolate;
    max-width: 1260px;
    margin-inline: auto;
}

.pricing-carousel-viewport {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--pricing-carousel-side-padding, clamp(1rem, 7vw, 5rem));
    padding: 2.25rem var(--pricing-carousel-side-padding, clamp(1rem, 7vw, 5rem)) 1.9rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pricing-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.pricing-carousel-slide {
    flex: 0 0 clamp(292px, 30vw, 368px);
    scroll-snap-align: center;
    display: flex;
}

.pricing-carousel-slide .pricing-card {
    width: 100%;
    min-height: 100%;
}

.pricing-carousel-slide {
    opacity: 0.82;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.pricing-carousel-slide.is-carousel-active {
    opacity: 1;
    transform: translateY(-4px);
    z-index: 3;
}

.pricing-carousel-slide.is-carousel-active .pricing-card {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(15, 91, 216, 0.15), 0 8px 22px rgba(20, 32, 51, 0.08);
}

.pricing-carousel-slide.is-carousel-active .pricing-best,
.pricing-carousel-slide.is-carousel-active .pricing-card-style-highlight {
    box-shadow: 0 28px 60px rgba(15, 91, 216, 0.2), 0 10px 26px rgba(10, 62, 150, 0.1);
}

.pricing-carousel-shell:not(.is-scrollable) .pricing-carousel-viewport {
    justify-content: center;
    overflow: visible;
}

.pricing-carousel-edge {
    position: absolute;
    top: 1rem;
    bottom: 1.2rem;
    width: clamp(68px, 10vw, 128px);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.pricing-carousel-edge-left {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.72) 52%, rgba(255, 255, 255, 0) 100%);
}

.pricing-carousel-edge-right {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.72) 52%, rgba(255, 255, 255, 0) 100%);
}

.pricing-carousel-shell.has-prev .pricing-carousel-edge-left,
.pricing-carousel-shell.has-next .pricing-carousel-edge-right {
    opacity: 1;
}

.pricing-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(15, 91, 216, 0.16);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 40px rgba(15, 91, 216, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-50%);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-carousel-nav:hover,
.pricing-carousel-nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 22px 46px rgba(15, 91, 216, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.pricing-carousel-nav:focus-visible {
    outline: 3px solid rgba(15, 91, 216, 0.18);
    outline-offset: 3px;
}

.pricing-carousel-nav:disabled {
    opacity: 0;
    pointer-events: none;
}

.pricing-carousel-nav-prev {
    left: 0.35rem;
}

.pricing-carousel-nav-next {
    right: 0.35rem;
}

.pricing-carousel-hint {
    margin-top: -0.2rem;
    text-align: center;
    color: #70829e;
    font-size: 0.82rem;
    font-weight: 700;
}

.pricing-card {
    position: relative;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pricing-best {
    border: 2px solid var(--primary-blue);
    position: relative;
}

.pricing-card-style-highlight {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.pricing-card-style-soft {
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
    border-color: rgba(15, 91, 216, 0.12);
}

.pricing-card-style-compact {
    padding-top: 1.35rem !important;
    padding-bottom: 1.35rem !important;
}

.pricing-card-style-compact img {
    max-height: 92px !important;
}

.pricing-card-style-compact h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.badge-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-blue);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.checkout-section-intro {
    max-width: 560px;
}

.checkout-panel,
.checkout-order-panel {
    border: 1px solid rgba(20, 32, 51, 0.08);
    box-shadow: 0 22px 44px rgba(18, 38, 63, 0.07);
}

.checkout-panel {
    border-radius: 24px;
}

.checkout-order-column {
    align-self: flex-start;
}

.checkout-order-panel {
    border-radius: 24px;
    z-index: 2;
}

.checkout-panel-eyebrow {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 0.6rem;
}

.checkout-form {
    display: grid;
    gap: 1.15rem;
}

.checkout-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.checkout-block {
    border-top: 1px solid rgba(20, 32, 51, 0.08);
    padding-top: 1.15rem;
}

.checkout-block:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.checkout-block-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7283a7;
    margin-bottom: 0.8rem;
}

.checkout-label {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1d2e4e;
    margin-bottom: 0.55rem;
}

.checkout-control {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(20, 32, 51, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    padding: 0.9rem 1rem;
    font-size: 1.02rem;
    color: #13223d;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.checkout-control:focus {
    border-color: rgba(15, 91, 216, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(15, 91, 216, 0.12);
}

.checkout-select {
    color: var(--primary-blue);
    font-weight: 700;
}

.checkout-form textarea.checkout-control {
    min-height: 108px;
    resize: vertical;
}

.checkout-country-card {
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
    border: 1px solid rgba(15, 91, 216, 0.08);
    padding: 1rem 1.05rem;
}

.checkout-country-label {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a8aa8;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.checkout-country-value {
    font-size: 1.08rem;
    font-weight: 800;
    color: #17325c;
}

.payment-method-stack {
    display: grid;
    gap: 0.95rem;
}

.payment-method-card {
    background: #ffffff;
    border: 1px solid rgba(20, 32, 51, 0.1) !important;
    border-radius: 20px;
    padding: 0.95rem 1rem 0.95rem 3rem;
    margin: 0;
    position: relative;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.payment-method-card:hover {
    border-color: rgba(15, 91, 216, 0.18) !important;
    box-shadow: 0 10px 24px rgba(15, 91, 216, 0.08);
}

.payment-method-card-selected {
    border-color: rgba(15, 91, 216, 0.28) !important;
    box-shadow: 0 16px 36px rgba(15, 91, 216, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.payment-method-input {
    position: absolute;
    left: 1rem;
    top: 1.15rem;
}

.payment-method-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
}

.payment-method-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
    border: 1px solid rgba(15, 91, 216, 0.1);
    color: var(--primary-blue);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.payment-method-icon-cod {
    color: #0f8b50;
    background: linear-gradient(180deg, #f5fcf7 0%, #e9f8ef 100%);
    border-color: rgba(15, 139, 80, 0.1);
    font-size: 1.2rem;
}

.payment-method-fpx-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 26px;
    border-radius: 999px;
    padding: 0 10px;
    background: linear-gradient(180deg, #2d7af7 0%, #0f5bd8 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.payment-method-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.payment-method-title {
    font-size: 1.14rem;
    font-weight: 800;
    color: #162846;
    line-height: 1.2;
}

.payment-method-subtitle {
    margin-top: 0.3rem;
    color: #637392;
    line-height: 1.45;
}

.checkout-order-table {
    border: 1px solid rgba(20, 32, 51, 0.1);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
}

.checkout-order-header,
.checkout-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
}

.checkout-order-header {
    font-size: 0.96rem;
    font-weight: 700;
    color: #3a4b6d;
    background: #fbfdff;
    border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.checkout-order-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem;
    border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.checkout-order-product-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.checkout-order-thumb-wrap {
    width: 110px;
    min-width: 110px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
    border: 1px solid rgba(15, 91, 216, 0.08);
}

.checkout-order-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.checkout-order-product-name {
    font-size: 1.08rem;
    font-weight: 800;
    color: #14253f;
    line-height: 1.35;
}

.checkout-order-product-meta {
    margin-top: 0.35rem;
    font-size: 0.95rem;
    color: #7b8aa8;
}

.checkout-order-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #14253f;
    white-space: nowrap;
}

.checkout-order-row {
    font-size: 1rem;
    color: #536480;
    border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.checkout-order-row:last-child {
    border-bottom: 0;
}

.checkout-order-row strong {
    color: #162846;
    font-weight: 800;
}

.checkout-order-row.total {
    font-size: 1.16rem;
    font-weight: 800;
    color: #102140;
    background: linear-gradient(180deg, #fffefe 0%, #f9fbff 100%);
}

.checkout-order-row.total strong {
    font-size: 1.45rem;
    color: var(--primary-blue);
}

.checkout-order-note {
    margin-top: 1rem;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(15, 91, 216, 0.08);
    padding: 1rem 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #55657f;
    line-height: 1.55;
}

.checkout-order-note i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 0.15rem;
}

.checkout-control.is-invalid,
.checkout-select.is-invalid {
    border-color: rgba(220, 53, 69, 0.55);
    box-shadow: 0 0 0 0.22rem rgba(220, 53, 69, 0.1);
    background-color: #fffafb;
}

.checkout-modal .modal-dialog {
    max-width: 560px;
}

.checkout-modal-card {
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(19, 36, 61, 0.2);
    overflow: hidden;
}

.checkout-modal-header,
.checkout-modal-body,
.checkout-modal-footer {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

.checkout-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

.checkout-modal-badge {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.checkout-modal-badge-primary {
    color: var(--primary-blue);
    background: linear-gradient(180deg, #eef5ff 0%, #e2edff 100%);
    border: 1px solid rgba(15, 91, 216, 0.12);
}

.checkout-modal-badge-danger {
    color: #dc3545;
    background: linear-gradient(180deg, #fff2f4 0%, #ffe7eb 100%);
    border: 1px solid rgba(220, 53, 69, 0.12);
}

.checkout-modal-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #6d7d98;
    margin-bottom: 0.22rem;
}

.checkout-modal-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    color: #14253f;
}

.checkout-modal-body {
    padding-top: 0.35rem;
    padding-bottom: 1.15rem;
}

.checkout-modal-copy {
    color: #5f7190;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.checkout-modal-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.checkout-modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(20, 32, 51, 0.06);
    color: #233554;
    line-height: 1.55;
}

.checkout-modal-list li i {
    color: #dc3545;
    margin-top: 0.1rem;
}

.checkout-modal-summary {
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.checkout-modal-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(20, 32, 51, 0.06);
    color: #5f7190;
}

.checkout-modal-summary-row strong {
    color: #14253f;
    text-align: right;
}

.checkout-modal-summary-row.total {
    background: #f6faff;
    font-weight: 800;
}

.checkout-modal-summary-row.total strong {
    color: var(--primary-blue);
}

.checkout-modal-summary-row:last-child {
    border-bottom: 0;
}

.checkout-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.85rem;
    padding-top: 0;
    padding-bottom: 1.45rem;
}

.checkout-modal-secondary {
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(20, 32, 51, 0.08);
    color: #223652;
    font-weight: 700;
}

.landing-proof-popup {
    position: fixed;
    left: 22px;
    bottom: var(--landing-float-bottom);
    z-index: 1045;
    width: min(380px, calc(100vw - 44px));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(15, 91, 216, 0.1), transparent 38%),
        rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 91, 216, 0.1);
    box-shadow: 0 22px 54px rgba(18, 32, 57, 0.18);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.98);
    transition: bottom 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, transform 0.28s ease;
}

.landing-proof-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.landing-proof-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #0f5bd8 0%, #0a3e96 100%);
    box-shadow: 0 12px 24px rgba(15, 91, 216, 0.22);
    font-size: 1.1rem;
}

.landing-proof-copy {
    min-width: 0;
}

.landing-proof-title {
    color: #102140;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.25;
}

.landing-proof-message {
    margin-top: 0.28rem;
    color: #52627b;
    font-size: 0.86rem;
    line-height: 1.45;
}

.landing-proof-meta {
    margin-top: 0.48rem;
    color: var(--primary-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-proof-close {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6d7b91;
    background: rgba(15, 91, 216, 0.06);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.landing-proof-close:hover {
    color: #102140;
    background: rgba(15, 91, 216, 0.12);
    transform: rotate(90deg);
}

.landing-social-float {
    position: fixed;
    right: 22px;
    bottom: var(--landing-float-bottom);
    z-index: 1040;
    display: grid;
    gap: 0.72rem;
    transition: bottom 0.34s cubic-bezier(0.22, 1, 0.36, 1), transform 0.24s ease;
}

.landing-social-btn {
    width: auto;
    min-width: 54px;
    height: 54px;
    padding: 0 17px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 16px 34px rgba(18, 32, 57, 0.18);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.landing-social-btn i {
    font-size: 1.3rem;
    line-height: 1;
}

.landing-social-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 800;
    transition: max-width 0.2s ease, opacity 0.2s ease;
}

.landing-social-btn:hover {
    color: #ffffff;
    gap: 0.55rem;
    transform: translateX(-4px) translateY(-1px);
    box-shadow: 0 20px 42px rgba(18, 32, 57, 0.24);
}

.landing-social-btn:hover .landing-social-label,
.landing-social-btn:focus-visible .landing-social-label {
    max-width: 150px;
    opacity: 1;
}

.landing-social-whatsapp {
    background: linear-gradient(180deg, #27d366 0%, #158f43 100%);
}

.landing-social-tiktok {
    background: linear-gradient(145deg, #111827 0%, #05070c 68%, #00f2ea 180%);
}

.landing-social-facebook {
    background: linear-gradient(180deg, #2f73f6 0%, #0f5bd8 100%);
}

.landing-social-btn.is-disabled {
    cursor: not-allowed;
    opacity: 0.45;
    filter: grayscale(0.7);
}

.landing-social-btn.is-disabled:hover {
    gap: 0;
    transform: none;
    box-shadow: 0 16px 34px rgba(18, 32, 57, 0.18);
}

.landing-social-btn.is-disabled:hover .landing-social-label {
    max-width: 0;
    opacity: 0;
}

/* Mobile App Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    /* iOS app feel shadow/borders */
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.mobile-sticky-cta.is-hidden {
    transform: translateY(calc(100% + 12px));
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    :root {
        --landing-float-bottom: 18px;
        --landing-float-sticky-bottom: 152px;
    }

    body.has-mobile-sticky-cta {
        --landing-float-bottom: var(--landing-float-sticky-bottom);
        padding-bottom: 90px;
    }

    .landing-social-float {
        right: 14px;
        gap: 0.52rem;
    }

    .landing-proof-popup {
        left: 14px;
        right: 74px;
        width: auto;
        padding: 0.82rem;
        border-radius: 20px;
        gap: 0.68rem;
    }

    .landing-proof-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .landing-proof-title {
        font-size: 0.82rem;
    }

    .landing-proof-message {
        font-size: 0.78rem;
        line-height: 1.38;
    }

    .landing-proof-meta {
        font-size: 0.66rem;
    }

    .landing-proof-close {
        width: 26px;
        height: 26px;
    }

    .landing-social-btn {
        min-width: 46px;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 16px;
        box-shadow: 0 12px 26px rgba(18, 32, 57, 0.18);
    }

    .landing-social-btn i {
        font-size: 1.12rem;
    }

    .landing-social-label {
        display: none;
    }

    .landing-social-btn:hover,
    .landing-social-btn:focus-visible {
        gap: 0;
        transform: translateY(-1px);
    }
}

/* Hero Top Logos Scaling */
.hero-brand-logo {
    height: 70px;
    object-fit: contain;
}

.hero-badge-icon {
    height: 65px;
    width: 65px;
    object-fit: cover;
}

.hero-mobile-image {
    max-height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-desktop-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(420px, 42vw, 620px);
    padding: 0;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(15, 91, 216, 0.08);
    box-shadow: 0 26px 56px rgba(15, 91, 216, 0.1);
    background:
        radial-gradient(circle at 76% 16%, rgba(110, 186, 255, 0.14), rgba(110, 186, 255, 0) 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 100%);
}

.hero-desktop-visual::before {
    content: "";
    position: absolute;
    inset: auto 12% 7% 12%;
    z-index: 0;
    height: 11%;
    border-radius: inherit;
    background: rgba(15, 91, 216, 0.12);
    filter: blur(30px);
    opacity: 0.45;
}

.hero-desktop-visual::after {
    content: none;
}

.hero-desktop-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    filter: none;
}

.hero-mobile-cta {
    width: 100%;
    min-height: 62px;
    justify-content: center;
    font-size: 1.28rem;
    box-shadow: 0 10px 22px rgba(217, 45, 32, 0.34);
}

@media (min-width: 992px) {
    .benefits-heading {
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: left;
    }

    .benefits-copy {
        padding-left: clamp(2rem, 3vw, 3.5rem);
    }

    .checkout-order-column {
        position: sticky;
        top: 110px;
    }

    .checkout-order-panel {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 991.98px) {
    .checkout-order-column {
        position: static;
        top: auto;
    }

    .checkout-order-panel {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 575.98px) {
    .hero-brand-logo {
        height: 58px;
    }

    .hero-badge-icon {
        height: 54px;
        width: 54px;
        min-width: 54px;
    }

    .hero-mobile-image {
        max-height: auto;
        width: 100%;
    }

    .hero-mobile-cta {
        min-height: 58px;
        font-size: 1.15rem;
    }

    .payment-method-label {
        gap: 12px;
    }

    .payment-method-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }

    .payment-method-card {
        padding-left: 2.75rem;
    }
}

@media (max-width: 767.98px) {
    .benefits-heading {
        text-align: justify;
        text-justify: inter-word;
        text-align-last: left;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    section.py-5 {
        padding-top: 3.1rem !important;
        padding-bottom: 3.1rem !important;
    }

    .custom-card:hover,
    .transform-scale-custom:hover {
        transform: none;
    }

    .btn-pulse {
        animation-duration: 2.4s;
    }

    .hero-brand-row {
        justify-content: center;
        align-items: center;
        gap: 0.8rem !important;
        margin-bottom: 1.4rem !important;
    }

    .hero-badge-row {
        gap: 0.55rem !important;
        min-width: 0;
    }

    .bg-soft .col-lg-6:first-child .lead {
        font-size: 1.02rem;
        line-height: 1.5;
        margin-bottom: 1rem !important;
        text-align: center;
    }

    .hero-intro-copy {
        text-align: center !important;
        max-width: 28rem;
        margin-inline: auto;
    }

    .hero-title {
        font-size: clamp(2.05rem, 9vw, 3.05rem);
        letter-spacing: -0.02em;
        line-height: 1.05;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .bg-soft .badge.rounded-pill {
        display: inline-flex;
        margin-inline: auto;
    }

    .hero-promo-text {
        font-size: 0.76rem;
        letter-spacing: 0.08em;
        padding-inline: 1rem;
    }

    .hero-promo-separator {
        font-size: 0.82rem;
    }

    .bg-soft .col-lg-6:first-child {
        text-align: center;
    }

    .hero-mobile-image {
        max-height: auto;
        width: 100%;
        border-radius: 22px !important;
    }

    .hero-mobile-cta {
        margin-top: 1rem !important;
    }

    .hero-support-points {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.65rem 1rem !important;
        line-height: 1.45;
    }

    .hero-trust-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.65rem !important;
        padding-top: 0.9rem !important;
    }

    .hero-trust-card {
        min-height: 64px;
        padding: 0.7rem 0.5rem !important;
        gap: 0.4rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-trust-card .fs-3 {
        font-size: 1.15rem !important;
        margin-right: 0 !important;
    }

    .hero-trust-card .fw-bolder {
        font-size: 0.72rem !important;
        line-height: 1.2 !important;
    }

    .hero-trust-card:last-child {
        grid-column: auto;
        max-width: none;
        margin-inline: 0;
    }

    .product-info-contact-link {
        padding: 0.74rem 0.78rem;
    }

    .product-info-contact-link-label {
        font-size: 0.74rem;
    }

    .product-info-contact-link-value {
        font-size: 0.92rem;
    }

    .awareness-check-item {
        padding: 14px;
    }

    .awareness-note {
        align-items: flex-start;
        line-height: 1.5;
    }

    .awareness-compare-caption strong {
        font-size: 0.9rem;
    }

    .awareness-proof-box {
        min-height: 148px;
    }

    .product-info-highlight-grid {
        grid-template-columns: 1fr;
    }

    .product-info-accordion-button {
        font-size: 1rem;
        padding: 1.05rem 1.1rem;
    }

    .product-info-accordion-body {
        padding: 1.05rem 1.1rem 1.15rem;
    }

    .testimonial-card {
        padding: 1.1rem !important;
    }

    .marketplace-review-text {
        font-size: 0.98rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .pricing-carousel-shell {
        margin-inline: -0.5rem;
    }

    .pricing-carousel-viewport {
        gap: 0.95rem;
        padding: 1.8rem 1rem 1.2rem;
        scroll-padding-inline: 1rem;
    }

    .pricing-carousel-slide {
        flex-basis: min(86vw, 360px);
    }

    .pricing-carousel-edge {
        width: 58px;
        top: 0.8rem;
        bottom: 1rem;
    }

    .pricing-carousel-nav {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    .pricing-carousel-nav-prev {
        left: 0.2rem;
    }

    .pricing-carousel-nav-next {
        right: 0.2rem;
    }

    #pricing .pricing-card {
        padding: 1.3rem !important;
        border-radius: 22px;
    }

    #pricing .display-5,
    #pricing .display-6 {
        font-size: clamp(2rem, 8vw, 2.55rem);
    }

    #pricing img.img-fluid {
        max-height: 110px !important;
    }

    #pricing ul.list-unstyled {
        max-width: 100% !important;
        font-size: 1rem !important;
    }

    .badge-ribbon {
        padding: 0.35rem 0.9rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .max-w-75 {
        max-width: 100%;
    }

    .checkout-panel,
    .checkout-order-panel {
        border-radius: 22px;
    }

    .checkout-panel {
        padding: 1.4rem !important;
    }

    .checkout-order-panel {
        padding: 1.35rem !important;
        position: static;
    }

    .checkout-block-label,
    .checkout-country-label {
        font-size: 0.74rem;
        letter-spacing: 0.12em;
    }

    .checkout-label {
        font-size: 0.94rem;
    }

    .checkout-control {
        min-height: 54px;
        font-size: 0.98rem;
        padding: 0.82rem 0.92rem;
    }

    .checkout-order-product {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .checkout-order-thumb-wrap {
        width: 88px;
        min-width: 88px;
    }

    .checkout-order-price {
        justify-self: flex-start;
    }

    .checkout-order-product-main {
        align-items: center;
    }

    .checkout-order-product-name {
        font-size: 1rem;
    }

    .checkout-order-row {
        padding: 0.95rem 1rem;
        font-size: 0.96rem;
    }

    .checkout-order-row.total strong {
        font-size: 1.28rem;
    }

    .mobile-sticky-cta {
        gap: 0.9rem;
        padding: 14px 16px;
    }

    .mobile-sticky-cta .btn {
        padding-inline: 1rem !important;
        min-height: 48px;
        white-space: nowrap;
        font-size: 0.98rem;
    }
}

@media (max-width: 430px) {
    .hero-promo-text {
        font-size: 0.72rem;
        padding-inline: 0.82rem;
    }

    .hero-promo-separator {
        font-size: 0.76rem;
    }

    .hero-title {
        font-size: clamp(1.88rem, 8.4vw, 2.55rem);
        letter-spacing: -0.014em;
        line-height: 1.06;
    }

    .product-info-step {
        gap: 0.8rem;
    }

    .product-info-step-number {
        width: 32px;
        min-width: 32px;
        height: 32px;
        font-size: 0.88rem;
    }

    .hero-brand-logo {
        height: 52px;
    }

    .hero-badge-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .mobile-sticky-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-sticky-cta .btn {
        width: 100%;
    }
}
