.elementor-3638 .elementor-element.elementor-element-aa7273f{width:100%;max-width:100%;}@media(min-width:768px){.elementor-3638 .elementor-element.elementor-element-25f7141{width:100%;}}/* Start custom CSS for html, class: .elementor-element-aa7273f *//* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    padding-bottom: 70px; /* Space for sticky mobile bar */
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; }

/* ========== STICKY HEADER ========== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1B4D8E;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    height: 56px;
}

.header-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 9px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FF6B00;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}

.header-cta:hover {
    background: #e55f00;
}

/* ========== HERO ========== */
.hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #1B4D8E 0%, #0d2f5c 100%);
    color: white;
    text-align: center;
}

.urgency-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #FF6B00;
}

.hero-sub {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 24px;
    font-weight: 500;
}

/* ========== CTA BUTTONS ========== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FF6B00;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    width: 100%;
    max-width: 420px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

.cta-button:hover {
    background: #e55f00;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-secondary {
    background: #1B4D8E;
    box-shadow: 0 4px 15px rgba(27,77,142,0.3);
}

.cta-secondary:hover {
    background: #15407a;
}

.cta-large {
    font-size: 20px;
    padding: 20px 32px;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

.trust-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ========== PAIN POINTS ========== */
.pain-points {
    padding: 48px 0;
    background: #f8fafc;
    text-align: center;
}

.pain-points h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1B4D8E;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.pain-item {
    background: white;
    padding: 20px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pain-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.pain-item p {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.pain-cta-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    font-style: italic;
}

/* ========== THE OFFER ========== */
.offer {
    padding: 48px 0;
    background: #ffffff;
}

.offer-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
    border: 2px solid #1B4D8E;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 16px;
    right: -28px;
    background: #dc2626;
    color: white;
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 800;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.offer-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1B4D8E;
    margin-bottom: 8px;
}

.price-highlight {
    color: #FF6B00;
    font-size: 32px;
}

.offer-sub {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
}

.offer-list {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    border-bottom: 1px solid rgba(27,77,142,0.08);
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list li svg {
    flex-shrink: 0;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 48px 0;
    background: #1B4D8E;
    color: white;
    text-align: center;
}

.how-it-works h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    position: relative;
    padding: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.step-icon {
    margin-bottom: 8px;
}

.step-icon svg {
    fill: white;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step p {
    font-size: 14px;
    opacity: 0.85;
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 48px 0;
    background: #f8fafc;
    text-align: center;
}

.reviews h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1B4D8E;
    margin-bottom: 24px;
}

.review-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: left;
}

.review-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-card p {
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
}

.review-author {
    font-size: 13px;
    color: #6b7280;
}

.review-author strong {
    color: #1B4D8E;
}

/* ========== FAQ ========== */
.faq {
    padding: 48px 0;
    background: #ffffff;
}

.faq h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1B4D8E;
    margin-bottom: 24px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-item:hover {
    background: #f0f4f8;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a2e;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 300;
    color: #FF6B00;
    transition: transform 0.2s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 48px 0;
    background: linear-gradient(135deg, #0d2f5c 0%, #1B4D8E 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.final-cta > .container > p:first-of-type {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.final-available {
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.7;
}

/* ========== STICKY MOBILE CTA BAR ========== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FF6B00;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    padding: 0;
}

.mobile-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 800;
    font-size: 18px;
    padding: 18px;
    width: 100%;
}

.mobile-cta-link:hover {
    background: #e55f00;
}

/* ========== DESKTOP ADJUSTMENTS ========== */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 40px;
        max-width: 600px;
    }

    .hero-sub {
        font-size: 20px;
    }

    .pain-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }

    .review-grid {
        flex-direction: row;
    }

    .review-card {
        flex: 1;
    }

    .mobile-cta-bar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .cta-button {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero h1 {
        font-size: 48px;
        max-width: 700px;
    }
}/* End custom CSS */