@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary-color: #D4AF37;
    /* Gold */
    --primary-hover: #F8E79B;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --accent-red: #ff4757;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F8E79B 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.section-padding {
    padding: 5rem 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Fallback or dynamic bg */
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 4rem;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Problem Section */
.problem-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    text-align: left;
    transition: 0.3s;
}

.problem-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Before After Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    z-index: 2;
}

/* Feature List */
.feature-list li {
    list-style: none;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    border-top: 3px solid var(--primary-color);
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    margin-right: 1rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

/* Pricing Children */
.pricing-card::before {
    content: 'LIMITED TIME';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-red);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.8rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

/* Countdown Timer */
.timer-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.timer-box {
    background: #e74c3c;
    /* Red for urgency */
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
}

.timer-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animated Arrows */
.arrow-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.arrow-down {
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounceArrow 1.5s infinite;
}

.arrow-down:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-down:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Checkout Page Styles */
.checkout-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.warning-banner {
    background: rgba(231, 76, 60, 0.1);
    color: #ff4757;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 2rem;
    border: 1px solid #ff4757;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 1.2rem;
    background: #0f0f0f;
    border: 1px solid #333;
    color: white;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    background: #1a1a1a;
}

.input-addon {
    background: #1a1a1a;
    padding: 1.2rem;
    border-radius: 12px 0 0 12px;
    border: 1px solid #333;
    border-right: none;
    color: var(--primary-color);
    font-weight: bold;
}

.form-group input[type="tel"] {
    border-radius: 0 12px 12px 0;
}

.product-info-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.product-info-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.payment-option input {
    display: none;
}

.payment-card {
    background: #141414;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-2px);
    background: #1f1f1f;
}

.payment-card i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.payment-option input:checked+.payment-card {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.payment-option input:checked+.payment-card i {
    color: var(--primary-color);
}

.payment-option input:checked+.payment-card::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Summary Box */
.summary-section {
    background: #141414;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.upsell-box {
    background: linear-gradient(to right, #1a1a1a, #222);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
}

.upsell-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.upsell-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.upsell-img {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.order-item.discount {
    color: #2ecc71;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    align-items: center;
}

.order-total span:last-child {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.discount-code {
    background: rgba(46, 204, 113, 0.05);
    color: #2ecc71;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px dashed #2ecc71;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-block {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.terms {
    font-size: 0.75rem;
    color: #444;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}