@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #ff3b30;
    --primary-hover: #d32f2f;
    --bg-dark: #09090b;
    --bg-card: #141416;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(255, 59, 48, 0.15), transparent 40%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #e4e4e7;
}

.hero-features li i {
    color: var(--primary);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--bg-dark);
}

.section-light {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Cards & Grids */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 59, 48, 0.3);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.check-list li i {
    color: var(--primary);
    margin-top: 4px;
}

/* Bonus Section */
.bonus-box {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(0, 0, 0, 0));
    border: 1px solid rgba(255, 59, 48, 0.2);
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Offer Section */
.offer-box {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border);
    padding: 60px 20px;
    border-radius: 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.offer-img {
    max-width: 280px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.price-display {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin: 20px 0;
    letter-spacing: -2px;
}

.price-display .currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 5px;
}

.price-sub {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.3);
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 59, 48, 0.4);
}

.cta-button.big-cta {
    font-size: 1.3rem;
    width: 100%;
    max-width: 400px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .hero-image {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .bonus-box {
        flex-direction: column;
        text-align: center;
    }
}