.elementor-356 .elementor-element.elementor-element-53f12f3{--display:flex;}.elementor-356 .elementor-element.elementor-element-0972812 .elementor-cta .elementor-cta__bg, .elementor-356 .elementor-element.elementor-element-0972812 .elementor-cta .elementor-cta__bg-overlay{transition-duration:1500ms;}.elementor-356 .elementor-element.elementor-element-0972812 .elementor-cta__content{text-align:center;}.elementor-356 .elementor-element.elementor-element-6025b3e{--display:flex;}.elementor-356 .elementor-element.elementor-element-aff940e{--display:flex;}.elementor-356 .elementor-element.elementor-element-c4b7564{--display:flex;}/* Start custom CSS *//* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #0891b2; /* Teal */
    --primary-dark: #0e7490;
    --secondary-color: #f97316; /* Orange */
    --accent-color: #10b981; /* Green */
    --danger-color: #ef4444; /* Red */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: linear-gradient(135deg, var(--danger-color), var(--secondary-color));
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.top-banner strong {
    font-weight: 700;
}

.top-banner i {
    margin-right: 5px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    padding: 80px 0 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--danger-color));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero h1 .highlight {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--danger-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.value-stack-compact {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.regular-price {
    font-size: 16px;
    color: var(--text-light);
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-light);
}

.free-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 10px;
}

.free-price strong {
    font-size: 48px;
}

.urgency-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.urgency-box p {
    margin: 10px 0;
    font-size: 16px;
}

.urgency-box i {
    color: var(--danger-color);
    margin-right: 5px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.5);
    height: 12px;
    border-radius: 50px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    height: 100%;
    width: 60%;
    border-radius: 50px;
    transition: width 0.5s ease;
}

.urgency-text {
    font-weight: 700;
    color: var(--danger-color);
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button i {
    margin-right: 10px;
}

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

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

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

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.badge-item i {
    color: var(--accent-color);
    font-size: 16px;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
    animation: fadeIn 1s ease;
}

.provider-photo {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.credentials-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 90%;
}

.credentials-badge i {
    font-size: 32px;
    color: var(--primary-color);
}

.credentials-badge strong {
    font-size: 18px;
    display: block;
}

.credentials-badge p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== WHY OFFER ===== */
.why-offer {
    background: var(--bg-light);
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== VALUE STACK ===== */
.value-stack {
    background: var(--bg-white);
}

.value-items {
    max-width: 900px;
    margin: 0 auto 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.value-check {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.value-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: left;
}

.value-price {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.value-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.total-value {
    max-width: 600px;
    margin: 40px auto;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.total-row.your-cost {
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 2px dashed var(--secondary-color);
}

.total-amount {
    font-weight: 800;
    font-size: 32px;
}

.total-amount.free {
    font-size: 48px;
    color: var(--accent-color);
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-subtitle {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* ===== WHO FOR ===== */
.who-for {
    background: var(--bg-light);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.condition-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.condition-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.condition-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.condition-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== ABOUT PROVIDER ===== */
.about-provider {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.credentials {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.approach-list {
    list-style: none;
    margin: 20px 0;
}

.approach-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.approach-list i {
    color: var(--accent-color);
}

.specialties {
    margin-top: 30px;
}

.specialties h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* ===== INSURANCE ===== */
.insurance {
    background: var(--bg-light);
}

.insurance-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.logo-item {
    background: white;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    min-height: 100px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.logo-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.insurance-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.insurance-name i {
    font-size: 24px;
    color: var(--accent-color);
}

.insurance-name span {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: var(--text-dark);
}

.logo-item img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
}

.logo-item:hover img {
    opacity: 1;
}

.text-logo {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: var(--primary-color);
}

.insurance-note {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
}

.insurance-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin: 20px 0;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.quote {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-location {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: left;
}

.faq-item h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 80px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.final-cta .subtitle {
    font-size: 24px;
    margin-bottom: 30px;
}

.urgency-final {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.urgency-final p {
    margin: 10px 0;
    font-size: 18px;
}

.guarantee {
    margin-top: 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p,
.footer-provider p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-features,
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .insurance-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .logo-item {
        padding: 20px;
        min-height: 100px;
    }
    
    .logo-item img {
        max-height: 40px;
    }

    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .stats-grid,
    .offer-features,
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }

    .cta-large {
        font-size: 18px;
        padding: 18px 30px;
    }

    .top-banner {
        font-size: 12px;
        padding: 10px 0;
    }

    .credentials-badge {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }

    .value-content h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .free-price strong {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }
}/* End custom CSS */