:root {
    --primary: #C59D5F;
    --primary-dark: #8C6B3D;
    --secondary: #D8E2DC;
    --accent: #F4F1EA;
    --text: #333333;
    --text-light: #666666;
    --bg: #FDFCF8;
    --white: #FFFFFF;
    --success: #2E8B57;
    --cta: #E07A5F;
    --cta-hover: #D06548;

    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 10px 25px rgba(197, 157, 95, 0.2);

    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: radial-gradient(#E5E5E5 1px, transparent 1px);
    background-size: 30px 30px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #2C3E50;
    line-height: 1.25;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        max-width: 1100px;
        padding: 0 2rem;
    }
}

/* Base Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, #E07A5F 0%, #D84315 100%);
    color: white;
    box-shadow: 0 6px 15px rgba(216, 67, 21, 0.3);
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .btn-primary {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 67, 21, 0.4);
    filter: brightness(1.05);
}

.btn-large {
    width: 100%;
    background-color: #27AE60;
    color: white;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .btn-large {
        max-width: 380px;
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Animations Core */
.hidden-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}


/* Urgency Banner */
.urgency-banner {
    background-color: #E74C3C;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 2000;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

@media (min-width: 768px) {
    .urgency-banner {
        font-size: 1rem;
        padding: 12px 0;
        letter-spacing: 1px;
    }
}

.urgency-track {
    display: flex;
    justify-content: center;
    width: 100%;
}


/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FDFBF7 100%);
    border-bottom: 1px solid #E6D5B8;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.badge {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.brand-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 1.2rem;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #D4A373 0%, #8C6B3D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h1 {
    font-size: 2.1rem;
    color: #5D4037;
    margin: 1rem 0;
    line-height: 1.15;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: #795548;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    color: #D4A373;
    background-image: linear-gradient(to bottom, transparent 65%, rgba(212, 163, 115, 0.2) 65%);
    background-size: 100% 90%;
    background-repeat: no-repeat;
    display: inline;
    padding: 0 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.highlight-sub {
    color: #8C6B3D;
    font-weight: 700;
    font-style: italic;
}

.hero-image-container {
    margin: 1.5rem auto;
    width: 100%;
    max-width: 320px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 0 3px #D4A373, 0 15px 30px rgba(197, 157, 95, 0.25);
    border: 5px solid #FFF;
    overflow: hidden;
}

.hero-image-container video,
.hero-image-container iframe {
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

.hero-image-container [id^="dublink-"] {
    width: 100%;
}

.hero-image-container [id^="dublink-"] iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.cta-group .btn-primary {
    width: 100%;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.secure-badge i {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0;
    }

    .hero-content {
        gap: 2rem;
    }

    .badge {
        font-size: 0.9rem;
    }

    .brand-name {
        font-size: 1.5rem;
        gap: 10px;
    }

    .brand-text {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 3.2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    }

    .hero-subheadline {
        font-size: 1.3rem;
    }

    .hero-image-container {
        max-width: 440px;
        box-shadow: 0 0 0 4px #D4A373, 0 20px 50px rgba(197, 157, 95, 0.3);
        border: 6px solid #FFF;
    }

    .cta-group .btn-primary {
        width: auto;
    }

    .secure-badge {
        font-size: 0.95rem;
    }

    .secure-badge i {
        width: 16px;
        height: 16px;
    }
}


.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.kit-showcase {
    padding: 3rem 0;
    background-color: #F8F9FA;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.kit-carousel {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.kit-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scrollKit 25s linear infinite;
}

.kit-track img {
    height: 220px;
    width: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

@keyframes scrollKit {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.kit-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.kit-card {
    background: white;
    padding: 1.2rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EEE;
}

.kit-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.kit-card span {
    font-size: 1rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .kit-showcase {
        padding: 5rem 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .kit-carousel {
        margin-bottom: 3rem;
    }

    .kit-track {
        gap: 1.5rem;
        animation-duration: 35s;
    }

    .kit-track img {
        height: 280px;
        border-radius: 12px;
    }

    .kit-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .kit-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        transition: transform 0.2s;
    }

    .kit-card:hover {
        transform: translateY(-3px);
    }

    .kit-icon {
        width: 32px;
        height: 32px;
    }

    .kit-card span {
        font-size: 1.1rem;
    }
}


.hook-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

/* Emotional Hook */
.emotional-hook {
    padding: 3.5rem 0;
    background-color: white;
}

.hook-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hook-text {
    text-align: center;
}

.hook-text h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.hook-text p {
    font-size: 1rem;
    color: var(--text-light);
}

.hook-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.card-feature {
    background: #FFF;
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border: 1px solid #E0E0E0;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.card-feature h3 {
    font-size: 1.1rem;
}

.card-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.icon-gold {
    color: var(--primary);
    margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
    .emotional-hook {
        padding: 5rem 0;
    }

    .hook-grid {
        flex-direction: row;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
    }

    .hook-text {
        text-align: left;
    }

    .hook-text h2 {
        font-size: 2.2rem;
    }

    .hook-text p {
        font-size: 1.1rem;
    }

    .hook-cards {
        gap: 1.5rem;
    }

    .card-feature {
        border-left: none;
        border-bottom: 4px solid var(--primary);
        padding: 2rem;
        transition: transform 0.3s;
    }

    .card-feature:hover {
        transform: translateY(-4px);
        border-color: var(--primary);
    }

    .card-feature h3 {
        font-size: 1.2rem;
    }
}


.bonus-subtitle {
    color: var(--cta);
    font-weight: 800;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Bonuses */
.bonuses {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #FFF 0%, #FFFDF5 100%);
    overflow: hidden;
}

.tag {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bonus-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.bonus-track-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 1rem;
}

.bonus-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

.scroll-left {
    animation: scrollLeft 30s linear infinite;
}

.scroll-right {
    animation: scrollRight 35s linear infinite;
}

.bonus-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.bonus-card {
    flex: 0 0 280px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.bonus-img-wrapper {
    width: 70px;
    height: 95px;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f0f0f0;
    overflow: hidden;
}

.bonus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content h4 {
    font-size: 0.95rem;
    color: var(--cta);
    margin-bottom: 0.3rem;
}

.bonus-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
}

.bonus-content .free {
    color: var(--success);
    font-weight: 800;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.4rem;
}

@media (min-width: 768px) {
    .bonuses {
        padding: 5rem 0;
    }

    .tag {
        font-size: 0.8rem;
    }

    .bonus-carousel-wrapper {
        margin-top: 3rem;
        position: relative;
        gap: 2rem;
    }

    .bonus-track-container {
        overflow: hidden;
        padding-bottom: 0;
    }

    .bonus-track-container::before,
    .bonus-track-container::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .bonus-track-container::before {
        left: 0;
        background: linear-gradient(to right, white, transparent);
    }

    .bonus-track-container::after {
        right: 0;
        background: linear-gradient(to left, white, transparent);
    }

    .bonus-card {
        flex: 0 0 320px;
        padding: 1.5rem;
        gap: 1.5rem;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .bonus-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary);
    }

    .bonus-img-wrapper {
        width: 90px;
        height: 120px;
    }

    .bonus-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .bonus-content p {
        font-size: 0.9rem;
    }

    .bonus-content .free {
        font-size: 1.1rem;
    }
}


/* Urgency Timer Section */
.urgency-timer-section {
    padding: 2rem 0;
    background-color: #fdf2f2;
}

.urgency-card-timer {
    background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(239, 71, 58, 0.25);
    border: 2px solid #fff;
}

.urgency-content h2 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem;
    border-radius: 10px;
    width: 100%;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-item span:first-child {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.separator {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .urgency-timer-section {
        padding: 3rem 0;
        border-radius: 16px;
        width: 90%;
        max-width: 1100px;
        margin: 0 auto;
        background: transparent;
    }

    .urgency-card-timer {
        padding: 2.5rem;
        border-radius: 16px;
        outline: 4px solid rgba(239, 71, 58, 0.15);
    }

    .urgency-content h2 {
        font-size: 1.6rem;
    }

    .urgency-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .countdown-wrapper {
        gap: 1rem;
        padding: 1rem 2.5rem;
        width: auto;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-item span:first-child {
        font-size: 2.8rem;
    }

    .countdown-item .label {
        font-size: 0.8rem;
    }

    .separator {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}


/* Offer Section */
.offer-section {
    padding: 3rem 0;
    background: #FFF;
    color: var(--text);
}

.offer-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-section-header h2 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.offer-section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.offer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.offer-box {
    background: white;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    /* No scaling by default on mobile */
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.offer-box.complete {
    border: 2px solid #D4A373;
    background: #FFF8E1;
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.2);
    margin-top: 1.5rem;
    /* Space for popular badge */
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(197, 157, 95, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2C3E50;
}

.offer-box.complete .plan-title {
    color: var(--primary-dark);
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1;
}

.save-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.basic-badge {
    background: #E8F5E9;
    color: #2E7D32;
}

.complete-badge {
    background: #FFF5D1;
    color: var(--primary-dark);
}

.offer-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.3;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 1px;
}

.checkout-button {
    width: 100%;
    border-radius: 50px;
    font-size: 1.05rem;
    padding: 1.1rem;
    text-align: center;
}

.offer-box.complete .checkout-button {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.25);
}

.guarantee-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #888;
    margin-top: 12px;
}

.guarantee-mini i {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .offer-section {
        padding: 5rem 0;
    }

    .offer-section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .offer-section-header p {
        font-size: 1.15rem;
    }

    .offer-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        max-width: 950px;
        margin: 0 auto;
    }

    .offer-box {
        padding: 2.5rem;
        flex: 1;
        transition: transform 0.3s;
    }

    .offer-box.complete {
        transform: scale(1.05);
        margin-top: 0;
        box-shadow: 0 20px 50px rgba(212, 163, 115, 0.25);
        z-index: 5;
        border-radius: 24px;
    }

    .popular-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
        top: -18px;
    }

    .plan-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .old-price {
        font-size: 1.1rem;
    }

    .new-price {
        font-size: 3rem;
    }

    .save-badge {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .offer-features li {
        font-size: 1rem;
        margin-bottom: 12px;
        gap: 10px;
        line-height: 1.4;
    }

    .check-icon {
        width: 22px;
        height: 22px;
        margin-top: 2px;
    }

    .checkout-button {
        font-size: 1.15rem;
        padding: 1.2rem;
    }

    .offer-box.complete .checkout-button:hover {
        filter: brightness(1.1);
    }

    .guarantee-mini {
        font-size: 0.9rem;
        margin-top: 15px;
    }
}


/* Testimonials */
.testimonials {
    padding: 3rem 0;
    background-color: white;
    text-align: center;
    overflow: hidden;
}

.testimonials h2 {
    font-size: 1.8rem;
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 1rem;
    padding-right: 1rem;
    width: max-content;
    animation: scrollTestimonial 35s linear infinite;
}

.testimonial-image-card {
    width: 220px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 3px solid white;
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
}

@keyframes scrollTestimonial {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .testimonials {
        padding: 5rem 0;
    }

    .testimonials h2 {
        font-size: 2.5rem;
    }

    .testimonials-carousel {
        margin-top: 3rem;
    }

    .testimonials-track {
        gap: 2rem;
        padding-right: 2rem;
        animation-duration: 48s;
    }

    .testimonials-track:hover {
        animation-play-state: paused;
    }

    .testimonial-image-card {
        width: 300px;
        border: 4px solid white;
        transition: transform 0.3s;
        box-shadow: var(--shadow-md);
    }

    .testimonial-image-card:hover {
        transform: scale(1.03);
        box-shadow: var(--shadow-lg);
    }
}


/* Guarantee */
.guarantee-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.guarantee-icon {
    margin-bottom: 1rem;
}

.guarantee-icon i {
    width: 48px;
    height: 48px;
    color: var(--success);
}

.guarantee-section h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.guarantee-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.cta-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .guarantee-section {
        padding: 4rem 0;
    }

    .guarantee-icon i {
        width: 64px;
        height: 64px;
    }

    .guarantee-section h2 {
        font-size: 2rem;
    }

    .guarantee-section p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .cta-box {
        padding: 2.5rem;
        border-radius: 16px;
        margin-top: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-box h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}


/* FAQ */
.faq {
    padding: 3rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

details {
    background: var(--bg);
    padding: 1.2rem;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid #eee;
}

summary {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .faq {
        padding: 5rem 0;
    }

    .faq h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .faq-grid {
        max-width: 800px;
        margin: 0 auto;
        gap: 1rem;
    }

    .details {
        padding: 1.5rem;
    }

    summary {
        font-size: 1.1rem;
    }

    details p {
        font-size: 1rem;
        margin-top: 1rem;
    }
}


/* Footer */
.final-urgency {
    padding: 2rem 0;
    background-color: #fdf2f2;
}

footer {
    background: #1a252f;
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .final-urgency {
        padding: 3rem 0;
    }

    footer {
        padding: 3rem 0;
        font-size: 1rem;
    }
}


/* Popups & Modals default Mobile styling */
.sales-popup {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 100px);
    width: 90%;
    max-width: 320px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 4px solid var(--success);
}

.sales-popup.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.popup-icon {
    color: var(--success);
}

.popup-content {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.popup-title {
    font-weight: 700;
    color: var(--text);
}

.popup-text {
    color: var(--text-light);
    line-height: 1.2;
}

.popup-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 3px;
}

@media (min-width: 768px) {
    .sales-popup {
        bottom: 20px;
        left: 20px;
        transform: translateY(100px);
        width: auto;
    }

    .sales-popup.show {
        transform: translateY(0);
    }

    .popup-content {
        font-size: 0.9rem;
    }

    .popup-text {
        font-size: 0.85rem;
    }
}

/* Upsell Modal */
.upsell-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none !important;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}

.upsell-popup-overlay.show {
    display: flex !important;
    opacity: 1;
}

.upsell-popup-content {
    background: white;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upsell-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #555;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upsell-header {
    background: linear-gradient(135deg, var(--success) 0%, #1e7e72 100%);
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
}

.upsell-badge {
    background: #FFD700;
    color: #333;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.upsell-header h2 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}

.upsell-body {
    padding: 1.2rem;
    text-align: center;
}

.upsell-body p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.upsell-comparison {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.2rem;
    text-align: left;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.upsell-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
}

.upsell-item.highlight {
    color: var(--success);
    font-weight: 600;
}

.upsell-item .check {
    font-size: 1rem;
}

.upsell-price-box {
    margin-bottom: 1.2rem;
    background: #fffdf5;
    border: 2px dashed var(--primary);
    padding: 1rem;
    border-radius: 10px;
}

.price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.price-row .label {
    font-size: 0.85rem;
    color: #888;
    text-decoration: line-through;
}

.price-row .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.btn-link-subtle {
    display: block;
    margin-top: 12px;
    color: #888;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
}

@media (min-width: 768px) {
    .upsell-popup-content {
        border-radius: 16px;
        overflow: hidden;
    }

    .upsell-header {
        padding: 2rem 1.5rem;
    }

    .upsell-header h2 {
        font-size: 1.8rem;
    }

    .upsell-badge {
        font-size: 0.85rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .upsell-body {
        padding: 1.5rem;
    }

    .upsell-body p {
        font-size: 1.05rem;
    }

    .upsell-comparison {
        display: block;
        padding: 1.2rem;
    }

    .upsell-item {
        font-size: 0.95rem;
        margin-bottom: 10px;
        align-items: center;
    }

    .upsell-item .check {
        font-size: 1.1rem;
    }

    .upsell-price-box {
        padding: 1.2rem;
    }

    .price-row .label {
        font-size: 0.95rem;
    }

    .price-row .price {
        font-size: 2.5rem;
    }

    .btn-link-subtle {
        font-size: 0.95rem;
        margin-top: 15px;
    }
}

/* Exit Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}

.exit-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.exit-popup-content {
    background: #FDFCF8;
    padding: 1.5rem;
    border-radius: 16px;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    border: 2px solid #D4A373;
    box-shadow: 0 15px 30px rgba(197, 157, 95, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
}

.exit-popup-overlay.show .exit-popup-content {
    transform: translateY(0);
    opacity: 1;
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #eee;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
}

.exit-badge {
    background: linear-gradient(135deg, #E07A5F 0%, #D84315 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.exit-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #5D4037;
}

.exit-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.exit-price-box {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.exit-from {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.exit-to {
    color: var(--success);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.exit-save {
    color: #E74C3C;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-top: 4px;
}

.exit-coupon {
    background: #fff;
    border: 2px dashed #ccc;
    padding: 0.6rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .exit-popup-content {
        padding: 2.5rem;
        max-width: 500px;
        border-radius: 20px;
    }

    .exit-badge {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .exit-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .exit-description {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .exit-price-box {
        margin: 1.5rem 0;
        padding: 1.2rem;
    }

    .exit-from {
        font-size: 1rem;
    }

    .exit-to {
        font-size: 2.8rem;
    }

    .exit-save {
        font-size: 1rem;
    }

    .exit-coupon {
        font-size: 1.3rem;
        padding: 0.8rem;
    }
}