* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #1a1a1a;
    --light-gray: #f8f8f8;
    --medium-gray: #e8e8e8;
    --border-color: #d0d0d0;
    --accent-gray: #f0f0f0;
    --azul-claro: #7FB2E5;
    --amarillo: #FFD54F;
    --amarillo-suave: #FDF18C;
    --blanco: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #0d1f2d;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    margin-left: -10px;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #a0b0c0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #7FB2E5;
    border-bottom-color: #7FB2E5;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1a1a1a;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 213, 79, 0.3);
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 213, 79, 0.4);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #7FB2E5;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Adjust body for fixed header */
body {
    padding-top: 70px;
}

/* Hero Section */
.hero {
    padding: 40px 0 -60px 0;
    background: linear-gradient(to bottom, #7FB2E5 0%, #E8F1F8 100%);
    color: #ffffff;
    position: relative;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.subtitle-confirmed {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #7c3aed;
    padding: 8px 16px;
    border-radius: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.checkmark {
    background-color: #7c3aed;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.hero-bullet-points {
    list-style: none;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-bullet-points li {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.hero-bullet-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
    font-size: 16px;
}

.arrow-down {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    margin: 15px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.video-container {
    margin: 0 auto -50px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
}

.video-sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 114, 255, 0.9);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 30;
    letter-spacing: 0.5px;
}

.video-sound-btn:hover {
    background: rgba(34, 114, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 24px rgba(34, 114, 255, 0.4);
}

.video-sound-btn svg {
    width: 20px;
    height: 20px;
}

.video-sound-btn.active {
    background: rgba(34, 114, 255, 0.9);
}

.video-sound-btn.active:hover {
    background: rgba(34, 114, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-description {
    font-size: 22px;
    color: #000000;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    background-color: #2272FF;
    color: var(--secondary-color);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #1a5cdb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 114, 255, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Main Content Section */
.main-content {
    padding: 100px 0 60px 0;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}

.main-content .hero-title {
    color: #000000;
    font-size: 36px;
}

.main-content .hero-description {
    color: #666666;
}

.main-content .cta-button {
    background-color: #2272FF;
    color: #ffffff;
}

.main-content .cta-button:hover {
    background-color: #1a5cdb;
}

.main-headline {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.3;
}

.main-subheadline {
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bullet-points {
    list-style: none !important;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bullet-points li {
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    text-align: left;
    display: block;
    margin-left: 120px;
}

.bullet-points li:before {
    content: "✓ ";
    position: absolute;
    left: 0;
    top: 0;
    color: #7c3aed;
    font-weight: bold;
    font-size: 18px;
}

.cta-button-purple {
    background-color: #2272FF !important;
    color: #ffffff !important;
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
}

.cta-button-purple:hover {
    background-color: #1a5cdb !important;
}

.download-btn {
    background: linear-gradient(135deg, #2272FF 0%, #1a5cdb 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0px auto;
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #1a5cdb 0%, #1347a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 114, 255, 0.4);
}

.hero-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0 40px 0;
}

.hero-download-btn {
    background: linear-gradient(135deg, #2272FF 0%, #1a5cdb 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.3);
    position: relative;
    z-index: 10;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-download-btn:hover {
    background: linear-gradient(135deg, #1a5cdb 0%, #1347a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 114, 255, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.hero-call-btn {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1a1a1a;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
    position: relative;
    z-index: 10;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.hero-call-btn:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
    border-bottom-color: rgba(0, 0, 0, 0.4);
}

.hero-calendly-btn {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1a1a1a;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto 40px;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
    position: relative;
    z-index: 10;
}

.hero-calendly-btn:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0 10px 0;
    font-size: 14px;
    color: #FFFFFF;
    flex-wrap: wrap;
}

.trust-item {
    font-weight: 500;
}

.trust-number {
    font-weight: 700;
    color: var(--yellow);
}

.trust-divider {
    color: #FFFFFF;
    font-weight: 300;
    opacity: 0.7;
}

/* Testimonials */
.testimonials {
    padding: 0px 0 60px 0;
    background-color: #ffffff;
    color: #000000;
    margin-top: -40px;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #000000;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 16px;
    color: #3498DB;
    margin-top: 30px;
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: -20px auto 0;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #1a3a52;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-images {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.rotating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: opacity;
    backface-visibility: hidden;
    transition: opacity 0.25s ease-in-out;
}

.testimonial-img.active {
    opacity: 1;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
}

.benefits h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #000000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.02);
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    color: #000000;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #000000;
    background: #f8f8f8;
}

.benefit-number {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.benefit-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.2;
}

.benefit-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin: 8px 0;
}

.benefit-card p {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
}

.benefits .cta-button {
    display: block;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
}

.faq h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #000000;
}

.faq-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #1a2a4a;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.faq-answer p {
    margin-bottom: 15px;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer CTA */
.footer-cta {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
    color: #000000;
}

.footer-cta .cta-button {
    background-color: #2272FF;
    color: white;
}

.footer-cta .cta-button:hover {
    background-color: #1a5cdb;
}

/* Footer */
.footer {
    background-color: #0d1f2d;
    color: #ffffff;
    padding: 50px 0 25px 0;
    font-size: 14px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand {
    font-size: 26px;
    font-weight: 900;
    color: #7FB2E5;
    margin: 0;
}

.footer-tagline {
    font-size: 13px;
    color: #a0b0c0;
    margin: 0;
}

.footer-tagline-link {
    color: #7FB2E5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-tagline-link:hover {
    color: #FFD700;
}

.footer-links-block {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0b0c0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(127, 178, 229, 0.2);
}

.footer-link-item:hover {
    color: #ffffff;
    border-color: #7FB2E5;
    background: rgba(127, 178, 229, 0.1);
    transform: translateY(-2px);
}

.footer-link-icon {
    width: 18px;
    height: 18px;
    color: #7FB2E5;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(127, 178, 229, 0.2);
    padding-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-legal-text {
    font-size: 13px;
    color: #a0b0c0;
    margin: 0;
}

.footer-disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-links-block {
        gap: 12px;
    }
}

.footer-disclaimer {
    font-size: 12px;
    color: #a0b0c0;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: #0d1f2d;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        color: #ffffff;
    }

    .nav-cta-btn {
        width: 80%;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }

    body.menu-open {
        overflow: hidden;
    }

    body {
        padding-top: 60px;
    }
}

    .hero-title {
        font-size: 20px;
    }

    .benefits h2,
    .faq h2 {
        font-size: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-container {
        margin: 20px auto -60px auto;
    }

    .main-content {
        padding-top: 100px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 44px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
}

/* Privacy Policy Page */
.privacy-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 48px;
    font-weight: 900;
    color: #0d1f2d;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.privacy-subtitle {
    font-size: 16px;
    color: #7FB2E5;
    margin-bottom: 50px;
    font-weight: 600;
}

.privacy-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-block:last-child {
    border-bottom: none;
}

.privacy-heading {
    font-size: 28px;
    font-weight: 700;
    color: #0d1f2d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.privacy-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.privacy-list li {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.privacy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2272FF;
    font-weight: bold;
    font-size: 18px;
}

.privacy-contact {
    background: linear-gradient(135deg, #7FB2E5 0%, #E8F1F8 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.privacy-contact p {
    font-size: 16px;
    color: #0d1f2d;
    margin-bottom: 10px;
    font-weight: 500;
}

.privacy-contact p:last-child {
    margin-bottom: 0;
}

.privacy-link {
    color: #2272FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #1a5cdb;
    text-decoration: underline;
}

.privacy-back {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #FFD54F;
    text-align: center;
}

.privacy-back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2272FF 0%, #1a5cdb 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.3);
}

.privacy-back-btn:hover {
    background: linear-gradient(135deg, #1a5cdb 0%, #1347a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 114, 255, 0.4);
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 36px;
    }

    .privacy-heading {
        font-size: 22px;
    }

    .privacy-text {
        font-size: 15px;
    }

    .privacy-list li {
        font-size: 15px;
    }

    .privacy-contact {
        padding: 20px;
    }

    .privacy-contact p {
        font-size: 14px;
    }
}


/* Booking Section - Improved */
.booking-section {
    margin-top: 60px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.booking-tab {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: all 0.3s ease;
}

.booking-tab:hover {
    color: #7c3aed;
}

.booking-tab.active {
    color: #7c3aed;
}

.tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}

.booking-content {
    position: relative;
}

.booking-tab-content {
    display: none;
}

.booking-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-tab-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.booking-tab-content > p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-code {
    padding: 11px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    min-width: 80px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.country-code:focus {
    outline: none;
    border-color: #7c3aed;
    background-color: #ffffff;
}

.phone-group input {
    flex: 1;
}

.booking-form input {
    padding: 11px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.booking-form input::placeholder {
    color: #999;
}

.booking-form input:focus {
    outline: none;
    border-color: #7c3aed;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.consent-text {
    font-size: 12px;
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

.consent-text u {
    text-decoration: underline;
    cursor: pointer;
    color: #7c3aed;
}

.booking-form button {
    margin-top: 12px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}

.booking-form iframe {
    border-radius: 8px;
    margin-top: 15px;
}


/* Benefits Header Card */
.benefits-header-card {
    background-color: #ffffff !important;
    padding: 40px !important;
    border-radius: 12px !important;
    margin-bottom: 50px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e0e0e0 !important;
}

.benefits-header-card h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    text-align: center !important;
}


/* What This Is Section */
.what-is-section {
    padding: 80px 0;
    background: #2272FF;
    color: #ffffff;
}

.what-is-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.what-is-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 8px 16px;
    background-color: #1D1D1D;
    border-radius: 20px;
}

.what-is-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.what-is-text {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.what-is-points {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.what-is-points li {
    font-size: 16px;
    color: #1D1D1D;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.what-is-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1D1D1D;
    font-weight: bold;
    font-size: 18px;
}

/* Rectangle Section */
.rectangle-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #000000;
}

.rectangle-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.rectangle-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    z-index: 10;
    white-space: nowrap;
}

.rectangle-section img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* The Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-images {
    display: flex;
    justify-content: center;
}

.problem-image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.problem-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.problem-img.active {
    opacity: 1;
}

.problem-text {
    text-align: left;
}

.problem-points {
    list-style: none;
    margin-bottom: 30px;
}

.problem-points li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.problem-points li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.problem-transition {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .problem-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-image-container {
        max-width: 100%;
        height: 300px;
    }
}

/* The Solution Section */
.solution-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.solution-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 29, 29, 0.95) 0%, rgba(29, 29, 29, 0.8) 100%);
    z-index: 2;
}

.solution-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.solution-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.solution-subtitle {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 20px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #2272FF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-number {
    font-size: 50px;
    font-weight: 900;
    color: rgba(34, 114, 255, 0.3);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.solution-card p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 32px;
    }
    
    .solution-section {
        padding: 60px 0;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Visualize Your Future Section */
.visualize-section {
    padding: 40px 0 150px 0;
    background: #ffffff;
    color: #000000;
}

.visualize-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.visualize-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.visualize-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.visualize-benefits {
    list-style: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visualize-benefits li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    line-height: 1.6;
}

.visualize-benefits li:before {
    content: "✓";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #7c3aed;
    font-weight: bold;
    font-size: 18px;
    left: 0;
}

.visualize-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.visualize-image-card {
    display: flex;
    justify-content: center;
}

.visualize-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.visualize-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .visualize-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .visualize-image-container {
        height: 150px;
    }
}

/* Steps Section */
.steps-title {
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: #f9f9f9;
    border: 2px solid #2272FF;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    background-color: rgba(34, 114, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 114, 255, 0.2);
}

.step-number {
    font-size: 28px;
    font-weight: 900;
    color: #2272FF;
    margin-bottom: 5px;
}

.step-text {
    font-size: 13px;
    color: #000000;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-title {
        font-size: 24px;
    }
}

/* Para Quién Es Section */
.para-quien-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.para-quien-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.para-quien-title {
    font-size: 40px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.para-quien-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.para-quien-for,
.para-quien-not-for {
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    background-color: #f9f9f9;
}

.para-quien-for {
    border-left: 4px solid #2272FF;
}

.para-quien-not-for {
    border-left: 4px solid #e74c3c;
}

.para-quien-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.para-quien-list {
    list-style: none;
    margin: 0;
}

.para-quien-list li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.para-quien-list li:last-child {
    margin-bottom: 0;
}

.para-quien-list-positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2272FF;
    font-weight: bold;
    font-size: 18px;
}

.para-quien-list-negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .para-quien-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .para-quien-title {
        font-size: 28px;
    }
}

/* Final Action Section */
.final-action-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1D1D1D 0%, #2a2a2a 100%);
    color: #ffffff;
}

.final-action-content {
    max-width: 1200px;
    margin: 0 auto;
}

.final-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.final-action-left {
    text-align: left;
}

.final-action-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #2272FF;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-action-criteria {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.criteria-for,
.criteria-not-for {
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #2272FF;
}

.criteria-not-for {
    border-left-color: #e74c3c;
}

.criteria-title {
    font-size: 14px;
    font-weight: 700;
    color: #2272FF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.criteria-not-for .criteria-title {
    color: #e74c3c;
}

.criteria-list {
    list-style: none;
    margin: 0;
}

.criteria-list li {
    font-size: 14px;
    color: #ffffff;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.criteria-list li:last-child {
    margin-bottom: 0;
}

.criteria-list-positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2272FF;
    font-weight: bold;
    font-size: 16px;
}

.criteria-list-negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
}

.final-action-right {
    text-align: left;
}

.final-action-title {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.final-action-description {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-action-btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.final-action-btn-primary {
    background-color: #2272FF;
    color: white;
}

.final-action-btn-primary:hover {
    background-color: #1a5cdb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 114, 255, 0.3);
}

.final-action-btn-secondary {
    background-color: transparent;
    color: #2272FF;
    border: 2px solid #2272FF;
}

.final-action-btn-secondary:hover {
    background-color: rgba(34, 114, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .final-action-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-action-title {
        font-size: 28px;
    }
    
    .final-action-buttons {
        flex-direction: column;
    }
}

/* Local Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.trust-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.trust-points {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-points li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    line-height: 1.6;
}

.trust-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 18px;
}

.trust-image-container {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #2E5C8A;
}

.trust-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .trust-points {
        grid-template-columns: 1fr;
    }
    
    .trust-image-container {
        height: 200px;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #2E5C8A;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.social-proof-title {
    font-size: 40px;
    font-weight: 900;
    color: #2E5C8A;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.social-proof-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.social-proof-text {
    text-align: left;
}

.social-proof-list {
    list-style: none;
    margin: 0;
}

.social-proof-list li {
    font-size: 18px;
    color: #2E5C8A;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-proof-list li:last-child {
    margin-bottom: 0;
}

.social-proof-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 24px;
}

.social-proof-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-proof-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .social-proof-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-proof-title {
        white-space: normal;
        font-size: 28px;
    }
    
    .social-proof-list li {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.urgency-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-title {
    font-size: 40px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.urgency-text {
    font-size: 18px;
    color: #333333;
    margin-bottom: 50px;
    line-height: 1.6;
}

.urgency-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.urgency-not-for,
.urgency-for {
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    background-color: #f9f9f9;
}

.urgency-not-for {
    border-left: 4px solid #e74c3c;
}

.urgency-for {
    border-left: 4px solid #3498DB;
}

.urgency-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-list {
    list-style: none;
    margin: 0;
}

.urgency-list li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.urgency-list li:last-child {
    margin-bottom: 0;
}

.urgency-list-negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.urgency-list-positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .urgency-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .urgency-title {
        font-size: 28px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.final-cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.final-cta-content {
    text-align: left;
}

.final-cta-title {
    font-size: 40px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.final-cta-subtitle {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-cta-btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.final-cta-btn-primary {
    background: linear-gradient(135deg, #3498DB 0%, #2E5C8A 100%);
    color: white;
}

.final-cta-btn-primary:hover {
    background: linear-gradient(135deg, #2E5C8A 0%, #1a3a52 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.final-cta-btn-secondary {
    background-color: #ffffff;
    color: #3498DB;
    border: 2px solid #3498DB;
}

.final-cta-btn-secondary:hover {
    background-color: #f0f8ff;
    transform: translateY(-2px);
}

.final-cta-btn-tertiary {
    background-color: #f0f0f0;
    color: #000000;
    border: 1px solid #d0d0d0;
}

.final-cta-btn-tertiary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.final-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-cta-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .final-cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .social-proof-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-proof-title {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .social-proof-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-proof-image-container {
        height: 300px;
    }
}


/* Calendly Widget Customization */
.calendly-inline-widget {
    max-width: 100% !important;
    width: 100% !important;
}

@media (min-width: 769px) {
    .final-cta-calendar .calendly-inline-widget {
        max-width: 1200px !important;
        width: 100% !important;
    }
}

/* Hide Calendly branding if possible */
.calendly-badge {
    display: none !important;
}

.booking-kit_logo-container_39b65c89 {
    display: none !important;
}


/* SECTION 6: FINAL CTA */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #E8F1F8 100%);
    color: #000000;
    text-align: center;
}

.final-cta-label {
    font-size: 14px;
    font-weight: 600;
    color: #7FB2E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.final-cta-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-body {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    background: linear-gradient(135deg, #2272FF 0%, #1a5cdb 100%);
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.3);
}

.final-cta-btn:hover {
    background: linear-gradient(135deg, #1a5cdb 0%, #1347a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 114, 255, 0.4);
}

.final-cta-calendar {
    display: flex;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-body {
        font-size: 16px;
    }
}

/* ===== SECTION 2: CREDIBILITY & TESTIMONIALS ===== */
.credibility-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #E8F1F8 0%, #F5EDD5 50%, #FDF18C 80%, #FDFBF7 100%);
    color: #000000;
}

.credibility-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #7FB2E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.credibility-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.credibility-body {
    text-align: center;
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credibility-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
    max-height: 200px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.credibility-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.credibility-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.credibility-quote {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .credibility-title {
        font-size: 32px;
    }
}

/* ===== SECTION 4: BOOK A CALL ===== */
.book-call-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FDF18C 50%, #FDFBF7 100%);
    color: #000000;
    text-align: center;
}

.book-call-label {
    font-size: 14px;
    font-weight: 600;
    color: #7FB2E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.book-call-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.book-call-body {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.book-call-cta-btn {
    background: linear-gradient(135deg, #2272FF 0%, #1a5cdb 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.3);
}

.book-call-cta-btn:hover {
    background: linear-gradient(135deg, #1a5cdb 0%, #1347a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 114, 255, 0.4);
}

@media (max-width: 768px) {
    .book-call-title {
        font-size: 32px;
    }
}

/* ===== SECTION 5: FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FDFBF7 0%, #FFFFFF 100%);
    color: #000000;
}

.faq-section .faq-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
    color: #7FB2E5;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .faq-item {
    margin-bottom: 20px;
    border: 1px solid #7FB2E5;
    border-radius: 8px;
    overflow: hidden;
    background: #E8F4FF;
    transition: all 0.3s ease;
}

.faq-section .faq-item.active {
    background: #FDF18C;
    border-color: #FFD54F;
}

.faq-section .faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-section .faq-question:hover {
    background-color: rgba(127, 178, 229, 0.2);
}

.faq-section .faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #7FB2E5;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.faq-section .faq-answer p {
    margin-bottom: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-section .faq-title {
        font-size: 32px;
    }
}

/* ===== SECTION 4: RESULTS ===== */
.results-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #7FB2E5 50%, #5a8fc4 100%);
    color: #FFFFFF;
}

.results-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.result-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.results-logo {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.results-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.result-number {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #FFD54F;
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

/* ===== SECTION 5: GUIDE ===== */
.guide-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #E8F1F8 0%, #FFFFFF 100%);
    color: #000000;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-left {
    display: flex;
    justify-content: center;
}

.guide-carousel {
    width: 100%;
    max-width: 350px;
}

.guide-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.guide-carousel-track {
    display: flex;
    animation: slideGuide 12s ease-in-out infinite;
    width: 100%;
}

@keyframes slideGuide {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(0);
    }
    30% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-100%);
    }
    55% {
        transform: translateX(-200%);
    }
    75% {
        transform: translateX(-200%);
    }
    80% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(-300%);
    }
}

.guide-carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
}

.guide-carousel-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.guide-image {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.guide-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.guide-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.guide-bullets li {
    font-size: 15px;
    color: #1a1a1a;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.guide-bullets li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7FB2E5;
    font-weight: bold;
    font-size: 18px;
}

.guide-cta {
    background: linear-gradient(135deg, #7FB2E5 0%, #5a8fc4 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(127, 178, 229, 0.3);
}

.guide-cta:hover {
    background: linear-gradient(135deg, #5a8fc4 0%, #3d6ba3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 178, 229, 0.4);
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== SECTION 6: PROCESS ===== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #F5F5F5 0%, #FFFFFF 100%);
    color: #000000;
}

.process-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.process-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 4px solid #7FB2E5;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #1a1a1a;
}

.process-number {
    font-size: 48px;
    font-weight: 900;
    color: #7FB2E5;
    margin-bottom: 15px;
    display: block;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.process-bottom {
    text-align: center;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.process-cta-btn {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1a1a1a;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
}

.process-cta-btn:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
}

/* ===== SECTION 8: FINAL CLOSE ===== */
.final-close-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.final-close-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.final-close-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-close-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 29, 29, 0.95) 0%, rgba(29, 29, 29, 0.85) 100%);
    z-index: 2;
}

.final-close-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-close-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.final-close-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.final-close-body {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.8;
}

.final-close-cta {
    background: linear-gradient(135deg, #7FB2E5 0%, #5a8fc4 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(127, 178, 229, 0.3);
}

.final-close-cta:hover {
    background: linear-gradient(135deg, #5a8fc4 0%, #3d6ba3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 178, 229, 0.4);
}

@media (max-width: 768px) {
    .final-close-section {
        padding: 80px 0;
        min-height: 400px;
    }
    
    .final-close-title {
        font-size: 32px;
    }
    
    .final-close-body {
        font-size: 16px;
    }
}


/* ===== SECTION 3: PROCESS CARDS ===== */
.process-cards-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #FDFBF7 0%, #FFFFFF 100%);
    color: #000000;
}

.process-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #7FB2E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.process-cards-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.process-cards-subtitle {
    text-align: center;
    font-size: 18px;
    color: #333333;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-photo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.process-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
}

.process-card-img.isa2-img {
    object-position: center 10% !important;
}

.process-card-content {
    padding: 20px;
}

.process-step {
    font-size: 11px;
    font-weight: 700;
    color: #2272FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.process-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-card-body {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-cards-title {
        font-size: 32px;
    }
    
    .process-photo {
        height: 200px;
        margin-top: 40px;
    }

    .process-photo-card:first-child .process-card-img {
        object-position: center 30% !important;
    }
}


/* Logo Carousel Ribbon */
.results-logo {
    width: calc(100vw - 20px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: calc(-50vw + 10px);
    margin-right: calc(-50vw + 10px);
    margin-top: 30px;
    padding: 3px 0;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.logo-carousel-ribbon {
    width: 100%;
    overflow: hidden;
}

.logo-carousel-track {
    display: flex;
    gap: 80px;
    animation: scrollLogoLeft 40s linear infinite;
    width: fit-content;
    padding: 0 60px;
}

@keyframes scrollLogoLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-carousel-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.carousel-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-logo:hover {
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .logo-carousel-track {
        gap: 40px;
        animation: scrollLogoLeft 30s linear infinite;
    }
    
    .logo-carousel-item {
        min-width: 120px;
    }
    
    .carousel-logo {
        max-width: 100px;
    }
}
