:root {
    --primary-bg: #0a1d37;
    --accent-gold: #f9d423;
    --accent-red: #ff4b2b;
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --shadow-gold: 0 10px 30px rgba(249, 212, 35, 0.3);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    background-image: linear-gradient(rgba(10, 29, 55, 0.85), rgba(10, 29, 55, 0.85)), url('assets/bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
}

.highlight {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(249, 212, 35, 0.4);
}

/* Header */
header {
    background: rgba(10, 29, 55, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

.btn-gold {
    background: linear-gradient(135deg, #f9d423, #ffbb00);
    color: #000;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 212, 35, 0.3);
    /* Subtler shadow */
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.badge-red {
    background-color: var(--accent-red);
}

.badge-gold {
    background-color: var(--accent-gold);
    color: #000;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.price-burst {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #ff4b2b, #dc2626);
    width: 300px;
    /* Gigantic to ensure space */
    height: 300px;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 70px rgba(255, 75, 43, 0.5);
    position: relative;
    /* Extra-fat circular burst for maximum internal area */
    clip-path: polygon(50% 0%, 55% 5%, 60% 2%, 65% 8%, 70% 5%, 75% 12%, 80% 10%, 85% 18%, 90% 15%, 93% 25%, 98% 30%, 95% 40%, 100% 50%, 95% 60%, 98% 70%, 93% 75%, 90% 85%, 85% 82%, 80% 90%, 75% 88%, 70% 95%, 65% 92%, 60% 98%, 55% 95%, 50% 100%, 45% 95%, 40% 98%, 35% 92%, 30% 95%, 25% 88%, 20% 90%, 15% 82%, 10% 85%, 7% 75%, 2% 70%, 5% 60%, 0% 50%, 5% 40%, 2% 30%, 7% 25%, 10% 15%, 15% 18%, 20% 10%, 25% 12%, 30% 5%, 35% 8%, 40% 2%, 45% 5%);
    font-weight: 900;
    padding: 3rem;
    text-align: center;
    animation: bounce 3s infinite;
    z-index: 10;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.price-burst .currency {
    font-size: 1rem;
    vertical-align: top;
}

.price-burst .amount {
    font-size: 2.5rem;
    line-height: 1;
}

.price-burst .label {
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-text::before {
    content: '★';
}

/* Mockup */
.hero-visual {
    position: relative;
}

.mockup-container {
    perspective: 1000px;
}

.mockup.laptop {
    background: #2d3748;
    border: 12px solid #4a5568;
    border-radius: 20px;
    position: relative;
    width: 80%;
    /* Smaller to accommodate portrait */
    max-width: 450px;
    aspect-ratio: 3/4;
    /* Portrait for the flyer */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Don't cut off the ad flyer */
    background: #000;
}

/* Features */
.features {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.benefits-list li::before {
    content: '✓';
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.contact-form-container {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    opacity: 0.8;
}

.footer-logo img {
    height: 35px;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .badge-row,
    .cta-group {
        justify-content: center;
    }

    .contact-text {
        margin-bottom: 3rem;
    }

    nav {
        display: none;
    }
}