:root {
    --p-blue: #0f2a4a;
    --s-blue: #1d4ed8;
    --a-orange: #f59e0b;
    --t-dark: #1f2937;
    --t-light: #6b7280;
    --bg-l: #f9fafb;
    --c-bg: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: var(--bg-l);
    color: var(--t-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

header {
    background: linear-gradient(135deg, var(--p-blue) 0%, #071424 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.pre-headline {
    color: var(--a-orange);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.sub-headline {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #d1d5db;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn {
    display: inline-block;
    background-color: var(--a-orange);
    color: #fff;
    padding: 14px 30px;
    font-weight: bold;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
    text-transform: uppercase;
}

.btn:hover {
    background-color: #d97706;
}

.btn-secondary {
    background-color: var(--s-blue);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
}

.btn-secondary:hover {
    background-color: #1e40af;
}

.micro-copy {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 12px;
}

section {
    padding: 60px 0;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--p-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--t-light);
}

.problem-box {
    background-color: #fff1f2;
    border-left: 5px solid #f43f5e;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background-color: var(--c-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 4px solid var(--s-blue);
}

.card h3 {
    color: var(--p-blue);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.bonus-card {
    border-top-color: var(--a-orange);
    background: linear-gradient(to bottom, #fff, #fffbeb);
}

.about-section {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 35px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.about-content h3 {
    color: var(--p-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: var(--c-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-style: italic;
    border: 1px solid #e5e7eb;
}

.testimonial-author {
    margin-top: 12px;
    font-weight: bold;
    font-style: normal;
    color: var(--p-blue);
    display: block;
}

.pricing-wrap {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.price-card {
    background-color: var(--c-bg);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 25px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border-color: var(--a-orange);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--a-orange);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-title {
    font-size: 1.4rem;
    color: var(--p-blue);
    margin-bottom: 10px;
}

.price-amt {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--t-dark);
    margin-bottom: 15px;
}

.price-card ul {
    text-align: left;
    list-style: none;
    margin-bottom: 25px;
}

.price-card ul li {
    margin-bottom: 10px;
    color: var(--t-dark);
    padding-left: 20px;
    position: relative;
}

.price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.site-footer {
    background-color: #0f2a4a;
    color: #fff;
    padding: 50px 0;
    border-top: 5px solid #f59e0b;
    margin-top: 50px;
}

.footer-cta h2 {
    margin-bottom: 12px;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
}

.footer-cta p {
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 25px auto;
    text-align: center;
}

.phone-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.phone-link {
    color: #f59e0b;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.footer-links {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 10px;
    cursor: pointer;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.disclaimer-box {
    font-size: 0.8rem;
    color: #9ca3af;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #374151;
    text-align: left;
    line-height: 1.6;
}

.disclaimer-box p {
    margin-bottom: 12px;
    color: #9ca3af;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.modal-content h2 {
    color: #0f2a4a;
    margin-bottom: 15px;
    font-size: 1.6rem;
    border-bottom: 2px solid #f59e0b;
    padding-bottom: 8px;
}

.modal-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.modal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #4b5563;
}

.modal-content ul li {
    margin-bottom: 6px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    section { padding: 40px 0; }
    .pricing-wrap { flex-direction: column; align-items: center; }
}
