:root {
    --bg-color: #0d1117; /* Deep dark background */
    --surface-color: #161b22;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --accent-red: #f85149;
    --accent-gold: #e3b341;
    --accent-green: #238636;
    --accent-green-hover: #2ea043;
    --border-color: #30363d;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Base Utilities & Layout */
.container {
    width: 100%;
    max-width: 600px; /* Mobile focused max-width */
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

/* --- Hero Section --- */
.hero {
    padding: 40px 0 30px;
    background: radial-gradient(circle at top, #1f242e 0%, var(--bg-color) 70%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.kicker {
    color: var(--accent-red);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #f0f6fc, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.mockup-container {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.mockup-img {
    width: 100%;
    display: block;
    height: auto;
}

.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.hero-subtext strong {
    color: var(--accent-gold);
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    width: 100%;
    background-color: var(--accent-green);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 4px 15px rgba(35, 134, 54, 0.4);
    transition: all 0.3s ease;
    border: 1px solid #3fb950;
}

.cta-button:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 134, 54, 0.6);
}

/* Pulsing Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(35, 134, 54, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(35, 134, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(35, 134, 54, 0);
    }
}

.pulse {
    animation: pulseGlow 2s infinite;
}

/* --- Problem Section --- */
.problem {
    padding: 40px 0;
}

.problem p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: center;
}

.problem strong {
    color: var(--accent-gold);
}

.alert-box {
    background-color: rgba(248, 81, 73, 0.1);
    border-left: 4px solid var(--accent-red);
    padding: 15px 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.alert-box p {
    font-size: 0.95rem;
    color: #ffd8d3;
    margin-bottom: 0;
    text-align: left;
}

.highlight-text {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-top: 30px;
}

/* --- Solution Section --- */
.solution {
    padding: 40px 0;
    background-color: var(--surface-color);
}

.solution h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.solution p {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.benefits-list .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    background-color: rgba(227, 179, 65, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.benefits-list p {
    text-align: left;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.benefits-list p strong {
    color: var(--accent-gold);
}

.everyone-text {
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* --- Offer Section --- */
.offer {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, #000000 100%);
}

.offer h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.offer .price {
    color: var(--accent-gold);
    font-size: 2.2rem;
    display: block;
    margin: 10px 0;
}

.why-price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.urgency {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 30px;
}

.cta-button.large {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.cta-main {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.cta-sub {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

/* --- Guarantee Section --- */
.guarantee {
    padding: 40px 0;
    background-color: var(--surface-color);
}

.guarantee-box {
    text-align: center;
    border: 2px dashed var(--accent-gold);
    border-radius: 12px;
    padding: 30px 20px;
    background-color: rgba(227, 179, 65, 0.05);
}

.seal {
    font-size: 3rem;
    margin-bottom: 15px;
}

.guarantee-box h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.guarantee-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px 0;
    background-color: #000;
    color: #6e7681;
    font-size: 0.75rem;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: #6e7681;
    text-decoration: none;
    margin: 0 5px;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* --- Desktop Enhancements (if viewed on larger screens) --- */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing .price {
        font-size: 3rem;
    }

    .cta-button {
        font-size: 1.3rem;
        padding: 22px 30px;
    }
}
