:root {
    /* White Mode / Clean Tech */
    --bg-color: #ffffff;
    --text-color: #333333;
    --heading-color: #111111;

    /* Vibrant gradients for the diagonal section */
    --gradient-start: #4338ca;
    /* Indigo 700 */
    --gradient-mid: #7e22ce;
    /* Purple 700 */
    --gradient-end: #db2777;
    /* Pink 600 */
    --gradient-accent: #2563eb;

    --font-main: 'Outfit', sans-serif;
    --card-bg: #f9f9f9;
    --border-color: #e5e5e5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Update Nav Button to be visible on color (Right side usually stays colored, but let's make it robust) */
.btn-nav {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-nav:hover {
    background: #fff;
    color: #4338ca;
    border-color: #fff;
}

/* Main Hero */
.hero-container {
    position: relative;
    /* Use a min-height but flex center */
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 80px;
    overflow: hidden;
    /* Crop the slanted background */
    margin-bottom: 60px;
}

/* The Clipped Background "Layer" */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background:
        radial-gradient(circle at 20% 30%, var(--gradient-end), transparent 60%),
        radial-gradient(circle at 80% 80%, var(--gradient-accent), transparent 50%),
        linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));

    /* Dynamic Corner Cuts using Clip-Path */
    /* Cut Top-Left and Bottom-Right */
    clip-path: polygon(0% 300px,
            /* Start Left (down) */
            300px 0%,
            /* Cut to Top (right) */
            100% 0%,
            /* Top Right Corner */
            100% calc(100% - 300px),
            /* Right Side (up) */
            calc(100% - 300px) 100%,
            /* Cut to Bottom (left) */
            0% 100%
            /* Bottom Left Corner */
        );

    z-index: 0;
}

/* Texture overlay on the background only */
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Content sits ON TOP, centered, no skew */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

h1 {
    font-size: 5rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.italic-accent {
    font-style: italic;
    /* Clean white accent */
    background: linear-gradient(to right, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p.hero-sub {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0.95;
    font-weight: 300;
    color: #f3f3f3;
}

.btn-hero {
    display: inline-block;
    background: #fff;
    color: var(--gradient-start);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Changing Words */
.social-proof {
    margin-top: 50px;
    text-align: center;
}

.proof-text {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 0.8;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.changing-words-container {
    height: 40px;
    /* prevent layout shifts */
    display: flex;
    justify-content: center;
    align-items: center;
}

.changing-word {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    transition: opacity 0.3s ease;
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper.narrow {
    max-width: 800px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.04em;
    color: var(--heading-color);
}

/* Stats Section */
.trusted-section {
    /* Push it up slightly to bridge the gap if needed, or keep stark */
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gradient-mid);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    font-size: 1.1rem;
    color: #444;
    /* Dark styling for visibility */
    font-weight: 500;
}

/* Services */
.services-section {
    background: #f8f8fc;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 50px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f0f0ff;
    color: var(--gradient-start);
    border-radius: 16px;
    margin-bottom: 30px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.service-card p {
    color: #444;
    /* Ensures dark text for readability */
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: "•";
    color: var(--gradient-mid);
    font-size: 1.5em;
    line-height: 0;
    margin-right: 10px;
}

/* Comparison */
.comparison-section {
    padding: 100px 20px;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 80px;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.comp-col {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.veloz-col {
    border: 2px solid var(--gradient-mid);
    transform: scale(1.05);
    /* Slight pop */
    box-shadow: 0 30px 60px rgba(126, 34, 206, 0.15);
    z-index: 5;
    position: relative;
    background: #fff;
}

/* Label for Veloz col */
.veloz-col::after {
    content: "RECOMMENDED";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-mid);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.col-header {
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.col-header h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: #111;
}

.col-header p {
    color: #666;
    font-size: 0.95rem;
}

.comp-col ul {
    list-style: none;
}

.comp-col li {
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
    color: #444;
    font-weight: 500;
}

.comp-col li.check::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    /* Green */
    font-weight: 900;
}

.comp-col li.cross::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    /* Red */
    font-weight: 900;
}

/* FAQ */
.faq-section {
    background: #f9fafb;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
}

.faq-item p {
    color: #555;
    font-size: 1.05rem;
    max-width: none;
    line-height: 1.7;
}

/* Footer */
footer {
    padding: 60px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}



.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gradient-mid);
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    .hero-container {
        padding-top: 120px;
    }

    .stats-grid,
    .services-grid,
    .comparison-table {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .veloz-col {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }

    .veloz-col::after {
        top: -10px;
    }

    .navbar {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

    .btn-nav {
        display: none;
    }

    /* Hide nav button on small mobile if needed, or style as icon */
    .hero-bg {
        /* Smaller cuts on mobile */
        clip-path: polygon(0% 100px,
                100px 0%,
                100% 0%,
                100% calc(100% - 100px),
                calc(100% - 100px) 100%,
                0% 100%);
        transform: none;
    }

    .hero-content {
        align-items: stretch;
        /* Full width text */
        padding: 0 10px;
    }

    p.hero-sub {
        font-size: 1.1rem;
    }
}