:root {
    --primary-blue: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent-gold: #f59e0b;
    --header-blue: #4589ff;
    --text-main: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f3f4f6;
    --bg-blue-light: #eff6ff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.highlight {
    color: var(--primary-blue);
    font-style: italic;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, background-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 400px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Header */
.top-bar {
    background-color: var(--header-blue);
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 100;
}

.top-bar p {
    color: #ffffff;
    margin-bottom: 0;
}

.hero {
    padding: 4rem 0;
    background: radial-gradient(circle at top center, var(--bg-blue-light), white);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-logo svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.badge {
    background-color: var(--bg-blue-light);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.subtitle strong {
    color: #374151;
    font-weight: 700;
}

.small-print {
    font-size: 0.75rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Social Proof */
.social-proof {
    padding: 2rem 0;
    background-color: var(--bg-white);
    text-align: center;
    border-bottom: 1px solid var(--bg-light);
}

.avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -15px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar:last-child {
    margin-right: 0;
}

.rating {
    margin-left: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Stories Testimonials Section */
.stories-section {
    padding: 3rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.stories-title {
    color: #4b5563;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 0 1rem;
    line-height: 1.5;
}

.stories-container {
    max-width: 320px;
    height: 550px;
    /* Approx mobile ratio */
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
    /* Fill the container */
    background-position: center;
}

.story-slide.active {
    opacity: 1;
}

/* Remove old overlay styles if we are just showing the image */
.story-overlay {
    /* Optional: Hide if not used, or keep for legacy slides if mixed */
    display: none;
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease-out 0.3s;
    /* Delay to appear after slide */
}

.story-slide.active .story-overlay {
    transform: translateY(0);
    opacity: 1;
}

.story-user {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.story-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid #eee;
}

.story-username {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.story-comment {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

.story-reaction {
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    /* Gray-300 */
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

.rating span {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

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

/* Problem Solution */
.problem-solution {
    padding: 5rem 0;
}

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

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 1rem auto;
    border-radius: 2px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.check-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

/* Features/Details */
.details {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

/* Feature Split Section */
/* Unified Feature Card */
.feature-card-unified {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* Mobile first: Stacked */
}

.card-image-section {
    width: 100%;
    padding: 2rem 2rem 0 2rem;
    text-align: center;
}

.card-image-section img {
    /* Limit image size so it doesn't overwhelm */
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* Slight radius on image itself */
}

.card-text-section {
    padding: 1.5rem;
    /* Reduced from 2rem */
    text-align: left;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    /* Reduced from 2rem */
    color: #2D65FF;
    margin-bottom: 0.5rem;
    /* Reduced from 1rem */
    font-weight: 700;
}

.card-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.5;
    /* Slightly reduced */
    margin-bottom: 1.5rem;
    /* Reduced from 2rem */
    font-family: 'Inter', sans-serif;
}

.card-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    /* Slightly reduced */
    color: #333;
    margin-bottom: 0.75rem;
    /* Reduced from 1rem */
}

.card-checklist {
    list-style: none;
    padding: 0;
}

.card-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced from 12px */
    font-size: 1.15rem;
    /* Slightly reduced */
    color: #444;
    margin-bottom: 0.5rem;
    /* Reduced from 0.8rem */
    font-weight: 500;
}

/* Custom Checkmark */
.card-checklist li::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D65FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .feature-card-unified {
        flex-direction: row;
        /* Desktop: Side-by-side */
        align-items: center;
    }

    .card-image-section {
        flex: 1;
        padding: 3rem;
    }

    .card-text-section {
        flex: 1;
        padding: 3rem;
    }
}

.feature-content {
    display: none;
    /* Hidden as content was moved/removed */
}

.feature-content h2 {
    font-family: 'Playfair Display', serif;
    /* Matching reference font style */
    font-size: 2.5rem;
    color: #2D65FF;
    /* Bright Blue */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.feature-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #5A5A5A;
    /* Dark Grey */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-heading-small {
    font-size: 1.25rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
    /* Regular weight like reference */
    color: #555;
    /* Grey text */
}

/* Custom Checkmark Icon matching reference */
.feature-list li::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D65FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12l2.5 2.5L16 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feature-split {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .feature-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .feature-content p {
        text-align: center;
    }

    .feature-heading-small {
        text-align: center;
    }

    /* Mobile optimization: Ensure list is nicely aligned */
    .feature-list {
        display: inline-block;
        text-align: left;
    }

    /* Center the container of the list so it looks good */
    .feature-content {
        text-align: center;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Bonuses */
.bonuses {
    padding: 5rem 0 2rem 0;
    /* Reduced bottom padding */
}

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

.bonus-card {
    border: 1px solid var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    text-align: center;
}

.bonus-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 99px;
}

.bonus-card img {
    margin: 1rem auto;
    max-height: 150px;
}

/* Offer Section */
/* Offer Section - New Layout */
.offer-section {
    padding: 0 0 5rem 0;
    /* Removed top padding */
    background: white;
    /* Clean background */
}

/* Visual Header above card */
.offer-visual-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem auto;
    /* Further reduced from 2rem to 1rem */
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.offer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.offer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D65FF;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.offer-headline {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #2563EB;
}

.offer-subheadline {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .offer-headline {
        font-size: 2rem;
    }
}

.offer-card-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Image - Reconfigured for Stacked Layout */
.offer-floating-image {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto -250px auto;
    /* Negative margin: 50% of image height (250px) for half-overlap */
    z-index: 10;
    pointer-events: none;
}

.floating-maps {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Ensure white bg blends if present */
}

/* New Card Style */
.offer-card-new {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 280px 2rem 3rem 2rem;
    /* 250px (overlap) + 30px (gap) = 280px top padding */
    text-align: center;
    position: relative;
    z-index: 5;
    border: 1px solid #f0f0f0;
}

/* Toggle */
.format-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.format-toggle {
    background: #f3f4f6;
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
}

.toggle-btn {
    padding: 10px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: white;
    color: #2D65FF;
    /* Blue text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Date Banner */
.date-banner {
    background: #2563EB;
    /* Primary Blue */
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.date-text,
.date-text strong {
    margin: 0;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff !important;
}

.date-text strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0.25rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Price */
.offer-new-price {
    margin-bottom: 2rem;
}

.old-price-label {
    display: block;
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.current-price-large {
    font-size: 4rem;
    font-weight: 800;
    color: #2D65FF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.payment-note {
    color: #6B7280;
    font-size: 1rem;
}

/* Features */
.offer-new-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem auto;
    max-width: 320px;
    text-align: left;
}

.offer-new-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2D65FF;
    /* Blue text for items as per reference? Check ref. Ref has Blue text. */
    font-weight: 500;
    font-size: 1.1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #2D65FF;
    /* Blue Check */
    flex-shrink: 0;
}

/* CTA */
.cta-button-large {
    display: block;
    width: 100%;
    background: #2563EB;
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
}

@media (max-width: 768px) {
    .offer-floating-image {
        max-width: 90%;
        top: -120px;
    }

    .offer-card-new {
        padding-top: 100px;
    }

    .current-price-large {
        font-size: 3rem;
    }
}

/* FAQ */
.faq {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-top: 2rem;
}

.item {
    border-bottom: 1px solid var(--bg-light);
}

.question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
}

.question.active::after {
    content: "-";
}

.answer {
    display: none;
    padding-bottom: 1.5rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

.links {
    margin-top: 1.5rem;
}

.links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1rem;
    font-size: 0.875rem;
}

.links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .subtitle {
        font-size: 0.9375rem;
        /* 15px */
        padding: 0 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        max-width: 340px;
        /* Forces break on many sizes, but we want 2 lines specifically */
        margin-left: auto;
        margin-right: auto;
        display: block;
        /* The text length is approx 90 chars. 45 chars per line is typical. 340px usually fits this well @ 15px sans-serif. */
    }

    .hero {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

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

    .hero-logo {
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 1rem;
        width: 100%;
        max-width: 360px;
        /* Slightly larger for harmony */
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-block {
        order: -1;
    }

    .check-list li {
        font-size: 0.95rem;
    }

    .cta-button.large {
        width: 100%;
        padding: 1.25rem;
    }
}

/* Popup Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 90vw;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease-out;
}

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

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

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #DC2626;
    /* Urgent Red */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #4B5563;
}

.timer-box {
    background-color: #FEF2F2;
    border: 2px dashed #DC2626;
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.timer-text {
    color: #DC2626;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.countdown {
    font-size: 2rem;
    font-family: monospace;
    font-weight: 800;
    color: #1F2937;
    letter-spacing: 2px;
}

.modal-price-box {
    margin: 2rem 0;
}

.modal-old-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1.1rem;
    display: block;
}

.modal-new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    display: block;
    margin-top: 0.5rem;
}

.modal-cta {
    display: block;
    width: 100%;
    background: #16A34A;
    /* Green for go */
    color: white;
    font-weight: 700;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
    margin-bottom: 1rem;
}

.modal-cta:hover {
    transform: translateY(-2px);
    background: #15803d;
}

.modal-close-link {
    color: #6B7280;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-close-link:hover {
    color: #374151;
}

.modal-close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #9CA3AF;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.modal-close-x:hover {
    color: #DC2626;
}

/* Guarantee Highlight Section */
.guarantee-highlight {
    padding: 0 0 4rem 0;
    /* Padding bottom only, as it sits under offer */
    position: relative;
    z-index: 10;
}

.guarantee-box-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft shadow like image */
    padding: 3rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #f3f4f6;
}

.guarantee-icon-large {
    color: #2563EB;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.guarantee-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2563EB;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-desc-large {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
    /* Gray-600 */
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}