/* CSS Reset & Variables */
:root {
    --core-blue: #0A192F; /* Deep trust blue */
    --accent-orange: #FF6600; /* High conversion CTA */
    --accent-orange-hover: #E55B00;
    --text-white: #F8F9FA;
    --text-gray: #A0AAB2;
    --dark-bg: #020C1B;
    --light-bg: #FFFFFF;
    --card-bg: #112240;
    --font-primary: 'Inter', sans-serif;
    --border-radius: 8px;
    --shadow-md: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-4 { margin-top: 1.5rem; }

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.bg-light {
    background-color: #0d213e;
}

.highlight-orange { color: var(--accent-orange); }
.highlight { color: var(--accent-orange); font-weight: 700; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(255, 102, 0, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-text:hover { color: var(--text-white); }

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #0A192F 0%, #020C1B 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.logo-text {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Problem & Solution Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item .icon {
    font-size: 2.5rem;
}

/* Offers / Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular {
    border: 2px solid var(--accent-orange);
    transform: scale(1.05);
}

.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.package-name {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
    min-height: 58px;
}

.package-desc {
    color: var(--text-gray);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 30px;
    min-height: 48px;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.price .currency { font-size: 1.5rem; vertical-align: top; }
.price .value { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.price .cents { font-size: 1.5rem; }

.features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.btn-buy { width: 100%; margin-top: auto; }

/* Guarantee Box */
.guarantee-box {
    margin-top: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.guarantee-box .icon { font-size: 4rem; }
.guarantee-box h4 { font-size: 1.5rem; margin-bottom: 10px; }
.guarantee-box p { color: var(--text-gray); }

/* Modal Lead Capture */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--card-bg);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-box h3 { margin-bottom: 10px; font-size: 1.5rem; color: var(--accent-orange); }
.modal-box p { color: var(--text-gray); margin-bottom: 25px; font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-white);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(2, 12, 27, 0.5);
    color: white;
    font-family: var(--font-primary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #010610;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand p { color: var(--text-gray); margin-top: 10px; max-width: 300px; }

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

.legal-links a:hover { color: var(--accent-orange); }

.disclaimer {
    background-color: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.copyright { color: var(--text-gray); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px;}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .popular { transform: scale(1); }
    .popular:hover { transform: translateY(-10px); }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .footer-grid { flex-direction: column; text-align: center; gap: 30px; }
    .legal-links a { display: block; margin: 10px 0; }
    .trust-badges { flex-direction: column; gap: 10px; }
}
