/* Existing styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    /* Fixed position to scroll with page */
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent;
}

.logo {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
    background-color: transparent;
    /* Start transparent */
    backdrop-filter: none;
    /* Ensure no blur at start */
    -webkit-backdrop-filter: none;
    /* Safari support */
    box-shadow: none;
    /* Ensure no shadow at start */
    transition: all 0.3s ease;
    /* Smooth transition */
    padding: 5px;
    border-radius: 50px;
    /* Box shadow removed initially, will add on scroll if needed, or keep? */
    /* keeping gap */
    gap: 5px;
}

/* Scrolled State */
.nav-menu.scrolled {
    background-color: rgba(255, 255, 255, 0.2);
    /* Low opacity for glass effect */
    backdrop-filter: blur(15px);
    /* Stronger blur */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-link {
    text-decoration: none;
    color: #fff;
    /* White text for transparency on dark video */
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

/* Dark text when menu is white/scrolled */
.nav-menu.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    background-color: rgba(75, 212, 200, 0.15);
    /* Light Cyan Tint */
    color: #0d8c82;
    /* Darker Cyan for text */
    transform: translateY(-1px);
}

.nav-link.active {
    background-color: #4BD4C8;
    color: white;
    box-shadow: 0 2px 5px rgba(75, 212, 200, 0.3);
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* CTA Button Styles */
.btn-cta {
    text-decoration: none;
    background-color: #6FFFE9;
    color: #0b1c2c;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* For wipe effect */
    z-index: 1;
    min-width: 200px;
    /* Ensure space for text swap */
    text-align: center;
}

/* Loading Bar Wipe Effect */
.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #1a5c57;
    /* Dark Teal for hover state */
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 50px;
}

.btn-cta:hover::after {
    width: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 92, 87, 0.4);
    color: white;
    /* Text color change */
}

/* Text Swapping Logic */
.btn-text {
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.btn-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    /* Start below */
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
}

/* Button Hover Text Effect */
.btn-cta:hover .btn-text {
    transform: translateY(-150%);
    /* Move up out of view */
    opacity: 0;
}

.btn-cta:hover .btn-hover-text {
    transform: translate(-50%, -50%);
    /* Move into center */
    opacity: 1;
}

/* Spinner/Icon Style */
.btn-icon {
    width: 8px;
    height: 8px;
    background-color: #6FFFE9;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px rgba(111, 255, 233, 0.8);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-cta.large-cta {
    font-size: 18px;
    padding: 16px 40px;
    /* background-color: #6FFFE9; Removed to rely on base class */
    color: #0b1c2c;
    margin-top: 20px;
    min-width: 250px;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 5vh;
}

.banner-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-content h1 .highlight {
    background-color: #44c7c0;
    color: #fff;
    padding: 0 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.operation-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.operation-badge svg {
    background: #333;
    padding: 5px;
    border-radius: 50%;
    color: white;
    width: 24px;
    height: 24px;
}

/* Bottom Divider */
/* Divider styles with desktop-specific centering */
.bottom-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 20;
    line-height: 0;
    overflow: hidden;
    /* Ensure no scrollbar from this */
}

.divider-img {
    width: 100%;
    display: block;
}

/* Specific fix for desktop alignment */
@media (min-width: 769px) {
    .divider-img {
        /* Force centering even if image is asymmetric */
        width: 100%;
        height: 100px;
        /* Restrict height to avoid massive scaling */
        object-fit: cover;
        object-position: center bottom;
    }
}

/* General Section Divider */
.section-divider {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    overflow: hidden;
}

.divider-line {
    height: 2px;
    background-color: #6FFFE9;
    flex-grow: 1;
    position: relative;
    max-width: 40%;
}

/* Dots at ends of lines */
.divider-line::before,
.divider-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #0b1c2c;
    /* Dark blue dot */
    border-radius: 50%;
}

/* Specific dot positions */
.divider-line:first-child::before {
    left: 0;
}

/* Left end of left line */
.divider-line:first-child::after {
    right: 0;
    display: none;
}

/* Hide inner dot if connecting to gear */

.divider-line:last-child::before {
    left: 0;
    display: none;
}

/* Hide inner dot */
.divider-line:last-child::after {
    right: 0;
}

/* Right end of right line */


/* Gear Container */
.divider-gear-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-gear {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.gear-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure it scales nicely */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-divider {
        margin-top: 20px;
    }

    .container {
        padding: 0 15px;
        position: relative;
        /* For active menu positioning */
    }

    /* Show Menu Toggle */
    .menu-toggle {
        display: flex;
        order: 3;
        /* Rightmost */
        margin-left: 0;
    }

    .logo {
        max-width: 120px;
        /* Adjust size for better fit */
        order: 1;
        /* Left */
        margin: 0;
        margin-right: auto;
        /* Push others to right */
    }

    /* Global Mobile Fixes */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Hide CTA in header ONLY */
    .main-header .btn-cta {
        display: none;
    }

    /* Ensure specific sections don't overflow */
    .differentials-section {
        overflow: hidden;
        /* Clip the large triangle shape */
    }

    /* Apply Glass Effect to Main Header on Mobile */
    .main-header {
        transition: all 0.3s ease;
    }

    .main-header.scrolled {
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    /* Mobile Menu Drawer */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px 0;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 10px;
        align-items: center;
        z-index: 99;
    }

    /* Fix invisible links on mobile (white on white) */
    .nav-menu .nav-link {
        color: #333;
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-link.active {
        color: white;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        width: 80%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
    }

    /* Keep CTA in header for mobile, layout adjustments */
    .main-header .container {
        justify-content: space-between;
    }

    /* Banner Adjustments */
    .hero-banner {
        /* Switch to column layout to stack content safely below header */
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        min-height: auto;
        /* Allow content to dictate height, reducing empty space */
        padding-top: 120px;
        /* Space for the header */
        padding-bottom: 130px;
        /* Increased to 130px to fully clear the divider wave */
    }

    .banner-content {
        margin-top: 0;
        padding: 0 15px;
    }

    .banner-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-top: 0;
    }

    .banner-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .btn-cta.large-cta {
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        padding: 14px 20px;
    }

    .operation-badge {
        flex-direction: column;
        font-size: 0.8rem;
        margin-top: 20px;
        gap: 8px;
    }

    /* Fix Bottom Divider rendering on mobile */
    .bottom-divider {
        height: auto;
        /* Ensure container fits image */
        bottom: -1px;
        /* Slight overlap to prevent sub-pixel gaps */
    }

    .divider-img {
        height: 50px;
        /* Force a compact height for mobile */
        width: 100%;
        object-fit: cover;
        /* Ensure it covers the width without distortion */
        display: block;
        /* Remove inline spacing */
    }

    /* Adjust padding to match the new compact divider */
    .hero-banner {
        padding-bottom: 70px;
        /* 50px divider + 20px buffer */
    }
}

/* Problems Section (Block 2) */
.problems-section {
    position: relative;
    z-index: 30;
    /* Ensure on top of divider */
    padding: 0 0 80px 0;
    background-color: #f9f9f9;
    /* Subtle grid pattern background */
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    text-align: center;
}

.container-column {
    flex-direction: column;
}

.problems-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: -60px;
    /* Pull up to overlap divider notch location */
    margin-bottom: 20px;
    line-height: 1.2;
}

.problems-section .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    line-height: 1.6;
}

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1250px;
    /* Increased to fit 4 cards */
    margin: 0 auto 50px auto;
}

.problem-card {
    background-color: #333333;
    /* Dark card bg */
    border-radius: 20px;
    width: 240px;
    height: 150px;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    /* Space for the notch pop-out */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    box-sizing: border-box;
    /* Ensure padding doesn't add to width */
}

.problem-card:hover {
    transform: translateY(-5px);
}

/* The Notch Visual Effect (Circle Overlap) */
.problem-card::before {
    content: '';
    position: absolute;
    top: -40px;
    /* Adjust to create the dip */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #f9f9f9;
    /* Matches section background to hide card top */
    border-radius: 50%;
    z-index: 1;
}

/* The Icon Box */
.icon-box {
    position: absolute;
    top: -25px;
    /* Centered in the notch area */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #6FFFE9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* Sits above the "hole" */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-box svg {
    color: #0b1c2c;
    width: 24px;
    height: 24px;
}

.problem-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 30px;
    /* Push down to clear notch */
    line-height: 1.4;
    text-align: center;
}

.bottom-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.highlight-btn {
    box-shadow: 0 4px 15px rgba(75, 212, 200, 0.4);
}

/* Mobile Responsiveness for Problems Section */
@media (max-width: 768px) {
    .problems-section {
        padding: 60px 0;
    }

    .problems-grid {
        display: flex;
        flex-direction: column;
        /* Force column layout */
        align-items: center;
        gap: 50px;
        /* More space for stacked cards */
        flex-wrap: nowrap;
        /* Prevent side-by-side */
    }

    .problem-card {
        width: 100%;
        max-width: 320px;
        margin-top: 20px;
    }

    .problems-section h2 {
        font-size: 1.8rem;
    }
}

/* Method Section (Block 3) */
.method-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.method-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
}

.method-section .highlight-teal {
    background-color: #6FFFE9;
    padding: 0 10px;
    color: #333;
}

.method-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    /* Explicitly center text */
}

/* Mobile Responsiveness for Method Section */
@media (max-width: 768px) {
    .method-section {
        padding: 50px 0;
    }

    .method-section h2 {
        font-size: 2rem;
    }

    .method-section p {
        padding: 0 20px;
        font-size: 1rem;
    }
}

/* Method Grid Layout */
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.method-card {
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.method-card:hover {
    transform: translateY(-5px);
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    /* Placeholder gray */
    opacity: 0.5;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
}

.method-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.method-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.method-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    /* Visual alignment */
    width: 8px;
    height: 8px;
    background-color: #0b1c2c;
    /* Dark dot for contrast on cyan */
    border-radius: 50%;
}

/* Unified Card Theme - Cyan background for all */
.method-card {
    background-color: #88fff8;
    color: #333;
}

.method-card h3 {
    color: #0b1c2c;
    /* Dark teal/navy for titles */
}

/* Mobile Responsiveness for Grid */
@media (max-width: 768px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-image-placeholder {
        height: 150px;
    }
}

/* Animated Ticker Banner */
.ticker-banner {
    background-color: #000;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
    border-top: 2px solid #88fff8;
    border-bottom: 2px solid #88fff8;
}

.ticker-content {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scroll-ticker 30s linear infinite;
}

.ticker-content span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #88fff8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Ticker Adjustments */
@media (max-width: 768px) {
    .ticker-content span {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .ticker-content {
        gap: 25px;
    }
}

/* Target Audience Section */
.target-section {
    background-color: #000;
    padding: 80px 0 150px 0;
    /* Extra bottom padding for curved divider overlap */
    color: #fff;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.target-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.target-left p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.target-divider {
    width: 2px;
    height: 100%;
    min-height: 300px;
    background-color: #88fff8;
}

.target-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.target-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.target-checklist li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}

.target-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: #88fff8;
    border-radius: 50%;
}

/* Mobile Responsiveness for Target Section */
@media (max-width: 768px) {
    .target-section {
        padding: 50px 0 150px 0;
        /* Extra bottom padding for mobile overlap */
    }

    .target-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .target-divider {
        display: none;
    }

    .target-left h2 {
        font-size: 1.8rem;
    }

    .target-left p {
        font-size: 0.95rem;
    }
}

/* Comparison Section */
.comparison-section {
    background-color: #2c3e50;
    padding: 80px 0;
    color: #fff;
    position: relative;
    /* For divider positioning */
}

/* Curved Divider */
.curve-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* overflow: hidden; Removed to allow dot to overlap section above */
    line-height: 0;
    transform: translateY(-99%);
    /* Pull it up to sit on top of the section */
    z-index: 2;
}

.curve-divider-top svg {
    position: relative;
    display: block;
    width: calc(134% + 1.3px);
    height: 100px;
    /* Adjust height of the curve */
    left: 50%;
    transform: translateX(-50%);
}

.curve-divider-top .shape-fill {
    fill: #2c3e50;
    /* Match section background */
}

/* Divider Dot */
.divider-dot {
    position: absolute;
    top: 0;
    /* Align to the top of the SVG bounding box (peak of curve roughly) */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centered and pulled up 50% */
    width: 25px;
    height: 25px;
    background-color: #44c7c0;
    /* Teal color */
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(44, 62, 80, 0.5);
    /* Optional: ring to blend/stand out */
    z-index: 3;
}

.comparison-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.comparison-card {
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.card-traditional h3 {
    color: #333;
}

.card-clini {
    background-color: #e0f7f6;
}

.card-clini h3 {
    color: #0b1c2c;
    border-bottom-color: #88fff8;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-list li {
    position: relative;
    padding-left: 35px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Negative markers (red X) */
.comparison-list li.negative::before {
    content: '✕';
    background-color: #ff4444;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}

/* Positive markers (cyan check) */
.comparison-list li.positive::before {
    content: '✓';
    background-color: #44c7c0;
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}

/* VS Divider */
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background-color: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

/* Fix container layout for sections that need outlines (Not side-by-side flex) */
.target-section .container,
.comparison-section .container,
.about-section .container,
.differentials-section .container {
    display: block;
}

/* Comparison CTA Wrapper */
.comparison-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    z-index: 2;
    position: relative;
}

/* Mobile Responsiveness for Comparison Section */
@media (max-width: 768px) {
    .comparison-section {
        padding: 50px 0;
    }

    .comparison-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        /* Ensure full width */
    }

    .vs-divider {
        padding-top: 0;
        margin: 20px 0;
        order: 2;
    }

    .card-traditional {
        order: 1;
    }

    .card-clini {
        order: 3;
    }

    .footer-divider {
        margin-top: -5px;
        /* Stronger pull up */
        position: relative;
        z-index: 10;
    }
}

/* Footer Divider - Decorative overlay */
.footer-divider {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-divider .divider-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Ensure it blends */
    filter: brightness(0) saturate(100%) invert(21%) sepia(35%) saturate(859%) hue-rotate(170deg) brightness(95%) contrast(89%);
    /* Turn white to #2c3e50 */
}

/* About Section Styles */
.about-section {
    background-color: #2c3e50;
    padding: 120px 0 100px 0;
    color: #fff;
    position: relative;
    margin-top: -100px;
    /* Pull up to fill white gap */
}

.about-section .container {
    padding-top: 100px;
    /* Add padding back here for content spacing */
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #44c7c0;
    margin: 20px auto 0;
}

.about-section .container {
    position: relative;
    z-index: 10;
    /* Ensure content sits above the potential triangle overlap */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Profile gets less space than text */
    gap: 50px;
    align-items: start;
}

/* Profile Card */
.profile-card {
    background: #0b1c2c;
    /* Darker card bg */
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(68, 199, 192, 0.2);
    /* Subtle cyan border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-image-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    position: relative;
    /* For the glow */
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(68, 199, 192, 0);
        background-color: rgba(68, 199, 192, 0);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(68, 199, 192, 0.6);
        background-color: rgba(68, 199, 192, 0.2);
        /* Light up background */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(68, 199, 192, 0);
        background-color: rgba(68, 199, 192, 0);
    }
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    position: relative;
    /* Ensure it stays on top of background */
    z-index: 1;
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.profile-info p {
    color: #44c7c0;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Bio Text Box */
.bio-text-box {
    background: rgba(11, 28, 44, 0.5);
    /* Semi-transparent dark bg */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Decorative corners for tech feel */
.bio-text-box::before {
    content: '+';
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    opacity: 0.5;
}

.bio-text-box::after {
    content: '+';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    opacity: 0.5;
}

.bio-text-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.bio-text-box p:last-of-type {
    margin-bottom: 40px;
}

.about-cta {
    display: inline-flex;
    margin-top: 0;
    /* Override default if needed */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile Text Styling */
    .bio-text-box {
        padding: 25px;
        background: transparent;
        /* Cleaner look on mobile? Or keep box? Keeping box for consistency */
        border: none;
        /* Maybe remove border for cleaner mobile flow? Let's keep consistent */
        padding: 0;
        /* Remove padding to feel more native text flow */
        background: none;
    }

    .bio-text-box::before,
    .bio-text-box::after {
        display: none;
        /* Remove decor on mobile */
    }

    .bio-text-box p {
        font-size: 1rem;
        text-align: left;
        /* Keep left aligned for readability */
    }

    .about-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Differentials Section Styles */
.differentials-section {
    background-color: #2c3e50;
    /* Sticking to dark theme base */
    padding: 100px 0;
    position: relative;
    overflow: visible;
    /* Allow triangle to bleed upwards */
    text-align: center;
    z-index: 1;
    /* Lower than about content */
}

/* Cyan Chevron Background */
.differentials-bg-shape {
    position: absolute;
    top: 40%;
    /* Moved UP from 50% to overlap previous section */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    /* Make it huge */
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

/* Creating the chevron using borders or pseudo elements might be tricky to get EXACT.
   Let's try a large rotated squares approach or linear-gradient.
   Linear gradient is safer for "V" shape.
*/
.differentials-bg-shape::before {
    content: '';
    position: absolute;
    top: 10%;
    /* Adjust to peak */
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 800px;
    height: 800px;
    border-top: 50px solid rgba(68, 199, 192, 0.4);
    /* Cyan stroke */
    border-left: 50px solid rgba(68, 199, 192, 0.4);
    box-sizing: border-box;
}

/* Actually the image shows a filled shape or thick stroke. 
   It looks like a giant ^ caret. 
   Let's try a thick border on a rotated box.
*/

.differentials-section .container {
    position: relative;
    z-index: 2;
    /* Content above shape */
}

.differentials-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.differentials-section h2 span {
    background-color: #44c7c0;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Differential Card */
.diff-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    /* Flex to center content */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
}

.diff-card:hover {
    transform: translateY(-10px);
}

.diff-number {
    font-family: 'Montserrat', sans-serif;
    /* Or existing font */
    font-size: 5rem;
    font-weight: 800;
    color: #44c7c0;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    /* Create the shadow effect */
    text-shadow: 2px 2px 0px rgba(68, 199, 192, 0.3);
}

/* The offset shadow effect in image looks like a duplicate number behind */
.diff-number::after {
    content: attr(data-number);
    position: absolute;
    top: 5px;
    left: 5px;
    color: rgba(68, 199, 192, 0.3);
    z-index: -1;
}

.diff-card p {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .differentials-section {
        padding: 60px 0;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        /* Increase gap for better separation */
        padding: 0;
        /* Remove side padding to use full container width */
        width: 100%;
        max-width: 400px;
        /* Limit width for nice stacking */
        margin: 0 auto;
        /* Center the grid */
    }

    /* Adjust background shape for mobile? */
    .differentials-bg-shape::before {
        width: 300px;
        height: 300px;
        border-width: 30px;
        top: 20%;
    }
}

/* Final CTA Section Styles */
.final-cta-section {
    background-color: #fff;
    /* White background as requested */
    padding: 100px 0;
    text-align: center;
    color: #333;
    /* Dark text for contrast against white */
}

.final-cta-section .container {
    display: block;
    /* Ensure stacked layout */
    max-width: 800px;
    /* Limit width to keep text focused */
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    /* Dark grey/blue from theme */
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Button override for light background if needed, 
   but defaults should work fine if button text is readable. 
   Checking .btn-cta styles... usually they are bright. 
*/
.final-cta-btn {
    box-shadow: 0 10px 20px rgba(68, 199, 192, 0.3);
    /* Soft shadow */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-section h2 {
        font-size: 1.8rem;
    }

    .final-cta-section p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Ensure Headline Highlight is Cyan Background (Marker Effect) */
.hero-content h1 span,
.banner-content h1 span,
.problems-section h2 span,
.bottom-text span,
.method-section h2 span {
    color: #2c3e50;
    /* Dark text for contrast */
    background-color: #44c7c0;
    /* Cyan background */
    padding: 0 8px;
    /* Breathing room */
    border-radius: 4px;
    /* Optional: slight rounded corners */
    font-weight: 700;
    /* Make it bold */
}

/* Method Card Image Styles with Mask */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    /* Match placeholder height */
    overflow: hidden;
}

.card-img-funil {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-img-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #88fff8;
    /* Card background color */
    opacity: 0.6;
    /* Adjust opacity for the tint intensity */
    mix-blend-mode: multiply;
    /* Blends color into the image */
}

/* Ensure placeholder is hidden if present or override */
.first-card-funil .card-image-placeholder {
    display: none;
}

@media (max-width: 768px) {
    .card-image-wrapper {
        height: 150px;
        /* Match mobile placeholder height */
    }
}

/* Commercial Card Image Styles */
.card-img-commercial {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure placeholder is hidden for second card */
.second-card-comercial .card-image-placeholder {
    display: none;
}

/* Retencao Card Image Styles */
.card-img-retencao {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure placeholder is hidden for third card */
.third-card-retencao .card-image-placeholder {
    display: none;
}

/* Crescimento Card Image Styles */
.card-img-crescimento {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure placeholder is hidden for fourth card */
.fourth-card-crescimento .card-image-placeholder {
    display: none;
}

/* Mobile Image Adjustment: Full Image Visibility */
@media (max-width: 768px) {
    .card-image-wrapper {
        height: auto !important;
        /* Allow wrapper to adjust to image height */
        min-height: auto !important;
        aspect-ratio: auto !important;
    }

    .card-img-funil,
    .card-img-commercial,
    .card-img-retencao,
    .card-img-crescimento {
        height: auto !important;
        /* Allow image to maintain aspect ratio */
        object-fit: contain !important;
        /* Ensure full image is seen */
        /* Ensure it flows in the document */
    }
}

/* Footer Styles */
.site-footer {
    background-color: #000;
    /* Faixa preta */
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.site-footer .container {
    display: block;
    /* Override global flex container */
    text-align: center;
}

.site-footer p {
    font-family: Arial, sans-serif;
    /* Arial */
    font-size: 12px;
    /* Tamanho 12 */
    color: #fff;
    margin: 0;
}

/* Social Icon Styles */
.social-icon-link {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon-link:hover {
    color: #4BD4C8;
    /* Cyan hover */
    transform: translateY(-2px);
}