:root {
    --primary-color: #2C5E50;
    --secondary-color: #A0C1B8;
    --accent-color: #76a61d;
    --accent-secondary-color: #ff8400;
    --bg-color: #F9FBF9;
    --text-color: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 16px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --font-heading: 'Marcellus', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Global Section Padding */
section {
    padding: 96px 0;
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
    background: #ffffff66;
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    header {
        padding: 8px 0;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent-color);
}

header .logo {
    position: relative;
    padding: 0;
    background: none;
}

header .logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250%;
    /* Ensures glow extends far left and right */
    height: 350%;
    /* Ensures glow extends far top and bottom */
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

header .btn {
    position: relative;
}

header .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250%;
    height: 350%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 65%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .btn:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-color);
    }

    .btn-outline:hover {
        background-color: var(--accent-color);
        color: var(--white);
    }

    .btn-pulsate:hover {
        animation: none;
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 0 0 10px rgba(44, 94, 80, 0.04);
        transition: all 0.3s ease;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (min-width: 768px) {
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    padding: 80px 0 0;
    background-image: url('assets/hero-bg-standard.png');
    background-size: cover;
    background-position: center 64%;
}

.btn-group {
    display: flex;
    gap: 16px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    /* Place content above overlay */
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.hero-rating,
.hero-discount {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.hero-discount {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.rating-value {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--white);
}

.rating-stars svg {
    fill: var(--white);
}

.hero-title {
    margin-bottom: 16px;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #333;
    /* Darker text for readability against light overlay */
    font-weight: 500;
    margin-bottom: 24px;
}

/* Hide old hero image styles just in case, though element is removed */
.hero-image {
    display: none;
}

@keyframes meshGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.features {
    background: linear-gradient(to bottom, #f0f7f4 0%, rgba(240, 247, 244, 0) 250px), var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 32px 0 rgba(31, 38, 135, 0.05);
    transition: var(--transition);
}


.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

/* --- Benefit Section --- */
.benefit-section {
    background-color: var(--white);
    padding: 80px 0 40px;
}

.benefit-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-ratings {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.benefit-rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.benefit-rating-item span {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.rating-stars-gold {
    font-size: 1.5rem;
}

.rating-stars-gold svg {
    fill: #FFD700;
    width: 28px;
    height: 28px;
}

.benefit-image {
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
}

.benefit-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.benefit-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-feature-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-action-section {
    background-color: var(--light-green);
    /* Assuming --light-green exists, falling back if not */
    background-color: #f0f7f4;
    padding: 40px 0;
}

.benefit-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.benefit-footer-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.benefit-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.benefit-rating-block {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1.5px solid rgba(44, 94, 80, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    margin-bottom: 0;
}

.benefit-rating-block .rating-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.benefit-rating-block .rating-stars {
    display: flex;
    gap: 4px;
    color: var(--primary-color);
}

.benefit-rating-block .rating-stars svg {
    fill: #FFD700;
}

/* Technical Details */
.details-section {
    background: linear-gradient(-45deg, #f0f7f4, #e2efe9, #ffffff, #d1e5dd);
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
    position: relative;
}

.details {
    display: flex;
    align-items: center;
    gap: 60px;
}

.details-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.details-image img {
    width: 100%;
    border-radius: var(--radius);
}

.details-content {
    flex: 1;
}

.details-list {
    list-style: none;
    margin-top: 30px;
}

.details-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.details-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 16px;
}

@media (max-width: 768px) {
    .details {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .details-list {
        display: inline-block;
        text-align: left;
    }
}

.registration {
    background: #2d6c5a;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registration h2 {
    color: white;
}

.form-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 512px;
    margin: 40px auto 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.input-field, #select {
    width: 100%;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.input-field:focus, #select:focus  {
    border-color: var(--primary-color);
    outline: none;
}

.success-message {
    display: none;
    background: #D4EDDA;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-top: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }

    .hero {
        height: calc(100vh - 64px);
        align-items: center;
        justify-content: center;
        background-position: center;
        text-align: center;
        padding-top: 64px;
    }

    .hero::before {
        background: rgba(255, 255, 255, 0.64);
    }

    .hero-content {
        padding: 0 20px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.2;
    }

    .benefit-footer,
    .benefit-footer-left {
        justify-content: center;
        flex-direction: column;
    }

    .benefit-footer-left {
        margin-bottom: 20px;
    }

    h2 {
        font-size: 2rem;
    }
}

/* --- Pricing Section --- */
.pricing {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid #f0f0f0;
    border-radius: 28px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
    border-color: #e0e0e0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    background: #fdfdfd;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2.5px;
    background: var(--accent-color);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: #fff;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 16px rgba(44, 94, 80, 0.2);
    z-index: 10;
}

.size-badge {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.pricing-image {
    margin: 0 auto 24px;
    background: radial-gradient(circle, rgba(232, 240, 236, 0.8) 0%, transparent 70%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    position: relative;
    cursor: default;
}

.pricing-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
}

.image-50-70,
.image-70-70 {
    object-position: center;
    transform: scale(1);
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.02);
}

.price-row {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-row .old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.5;
}

.price-row .new {
    color: var(--primary-color);
    font-size: 2.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    position: relative;
    padding-left: 32px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.3;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(44, 94, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C5E50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-full {
    width: 100%;
}

.promo-banner {
    background: rgba(255, 248, 225, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 224, 130, 0.5);
    color: #f57f17;
    text-align: center;
    padding: 24px;
    border-radius: 16px;
    margin: 60px auto 0;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .pricing {
        padding-bottom: 0;
    }

    .pricing-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin: 0 -16px;
        padding: 24px 16px 40px;
        /* Add padding to push the scrollbar down */
        overflow-x: auto;
    }

    .pricing-card {
        width: 80%;
        max-width: 340px;
        /* Just to cap it slightly smaller than the screen */
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
}

/* --- Timer Bar --- */
.timer-bar {
    background: #ffffff66;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
    width: 100%;
}

.timer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.timer-text {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-hero {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-block {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 12px 18px;
    min-width: 80px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(118, 166, 29, 0.2);
    border: 1px solid #fff;
}

.time-block span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.time-block small {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 6px;
}

.separator {
    font-size: 2rem;
    color: var(--primary-color);
    padding-bottom: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .timer-content {
        flex-direction: column;
        gap: 16px;
    }

    .timer-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .time-block {
        min-width: 60px;
        padding: 8px 10px;
    }

    .time-block span {
        font-size: 1.5rem;
    }

    .timer-bar {
        padding: 12px 0;
    }
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(-45deg, #f0f7f4, #e2efe9, #ffffff, #d1e5dd);
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Optimized for small screens */
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.45);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 32px 0 rgba(31, 38, 135, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.stars {
    margin-bottom: 16px;
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
    color: #FFD700;
}

.stars svg {
    fill: #FFD700;
    width: 28px;
    height: 28px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer strong {
    display: block;
    color: var(--text-dark);
}

.reviewer span {
    font-size: 0.9rem;
    color: #999;
}

/* --- Delivery Section --- */
.delivery {
    padding: 96px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.delivery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(160, 193, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118, 166, 29, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.delivery-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    border: 1.5px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.delivery-icon {
    width: 72px;
    height: 72px;
    background: rgba(44, 94, 80, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
}

.delivery-icon svg {
    width: 36px;
    height: 36px;
}

.delivery-item h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.delivery-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* --- Partners Section Cards --- */
.partners {
    background: url('assets/bg-d.webp') center/cover no-repeat;
    background-color: #f7f3ed;
    position: relative;
}

.partners-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.partner-logo-box {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.partner-logo-box img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
}

.partner-card h3 {
    margin-bottom: 24px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.partner-card ul {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.partner-card ul li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.partner-card ul li::before {
    content: "✓";
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    margin-top: -2px;
}

/* Nova Poshta Styling */
.novaposhta-card {
    background: linear-gradient(135deg, #ed1c24 0%, #ba0d13 100%);
    color: #ffffff;
}

.novaposhta-card h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.novaposhta-card ul li {
    color: #ffffff;
}

.novaposhta-card ul li::before {
    color: #ed1c24;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.novaposhta-card .btn {
    background-color: #ffffff;
    color: #ed1c24;
    border-color: #ffffff;
}

.novaposhta-card .btn:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Ukrposhta Styling */
.ukrposhta-card {
    background: linear-gradient(135deg, #ffcc00 0%, #f0b800 100%);
    color: #1a1a1a;
}

.ukrposhta-card h3 {
    color: #0033a0;
}

.ukrposhta-card ul li {
    color: #1a1a1a;
}

.ukrposhta-card ul li::before {
    color: #ffcc00;
    background: #0033a0;
    box-shadow: 0 4px 10px rgba(0, 51, 160, 0.2);
}

.ukrposhta-card .btn {
    background-color: #ffffff;
    color: #0033a0;
    border-color: #ffffff;
}

.ukrposhta-card .btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 768px) {

    /* To push the scrollbar to the bottom of the section, we can remove bottom padding from the section 
       and let the scrollable container handle it, or we simply stretch the container downwards. */
    .partners {
        padding-bottom: 0;
        /* Remove default section padding so our scrollable container reaches the bottom */
    }

    .partners-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin: 0 -16px;
        padding: 10px 16px 40px;
        /* Add padding to push the scrollbar down */
        overflow-x: auto;
    }

    .partner-card {
        width: 82%;
        max-width: 340px;
        padding: 24px;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
}

/* --- Sleep Comparison Section --- */
.sleep-comparison {
    background-color: var(--white);
    padding: 80px 0;
}

.sleep-comparison h2 {
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.comparison-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 94, 80, 0.05);
    display: flex;
    flex-direction: column;
}

.comparison-img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    object-position: top;
    margin-bottom: -50px;
    /* Pulls content up to cover watermark */
}

.comparison-content {
    padding: 30px;
    padding-top: 60px;
    /* Offset the 50px overlap so text aligns nicely */
    text-align: left;
    flex-grow: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.comparison-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* --- Pain Points Section --- */
.pain-points {
    background: linear-gradient(-45deg, #fdf2f4, #f8e8ea, #ffffff, #f5e1e4);
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
    position: relative;
    z-index: 1;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, #ffffff, transparent);
    pointer-events: none;
    z-index: -1;
}

.pain-points::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #f5e1e4, transparent);
    pointer-events: none;
    z-index: -1;
}

.pain-points-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pain-points-text {
    flex: 1;
}

.pain-points-text h2 {
    margin-bottom: 24px;
}

.pain-points-video {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pain-points-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .pain-points-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
}

/* --- Hero Price Group --- */
.hero-price-group {
    margin-bottom: 24px;
    font-weight: 700;
}

.price-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.price-label {
    background: var(--accent-secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hero-price-group .old-price {
    text-decoration: line-through;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-price-group .new-price {
    color: var(--primary-color);
    font-size: 4rem;
    line-height: 1;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.2);
}

.hero-price-group .currency {
    font-size: 1.5rem;
    margin-left: 8px;
    color: var(--text-color);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-price-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-price-group .new-price {
        font-size: 3.5rem;
    }
}

/* Pulsate Animation */
@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(44, 94, 80, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(44, 94, 80, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(44, 94, 80, 0);
    }
}

.btn-pulsate {
    animation: pulsate 2s ease-in-out infinite;
}

/* --- Upsell Section --- */
.upsell {
    background-color: #f7f3ed;
}

.upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.upsell-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.upsell-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.upsell-image {
    height: 180px;
    background: #f0f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.upsell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.upsell-card:hover .upsell-image img {
    transform: scale(1.05);
}

.upsell-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.upsell-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.upsell-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.upsell-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.upsell-price span {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .upsell-grid {
        gap: 24px;
    }

    .upsell-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        min-height: 480px;
        /* Ensure equal size on mobile */
    }

    .upsell-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .upsell-card:hover .upsell-image img {
        transform: none !important;
    }
}

/* --- Utilities --- */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pt-0 {
    padding-top: 0;
}

.w-100 {
    width: 100%;
}

.text-light-color {
    color: var(--text-light);
}

.text-white-op-90 {
    color: rgba(255, 255, 255, 0.9);
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.details-image-img {
    object-position: center;
    transform: scale(1.2);
}

.text-white-shadow {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}