/* bundle-aspx.css - Complete styles for SubmitINme ASPX pages */

/* ===== CSS Variables ===== */
:root {
    --bg-base: #ffffff;
    --bg-soft: #f8f9fa;
    --bg-alt: #f0f2f5;
    --bg-card: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-inverse: #ffffff;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --accent-soft: rgba(37, 99, 235, 0.1);
    --accent-glow: rgba(37, 99, 235, 0.2);
    --teal: #0d9488;
    --teal-soft: rgba(13, 148, 136, 0.1);
    --purple: #7c3aed;
    --purple-soft: rgba(124, 58, 237, 0.1);
    --border: rgba(31, 41, 55, 0.1);
    --border-light: rgba(31, 41, 55, 0.06);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 300ms;
    --page-title-size: clamp(2.5rem, 4.8vw, 4rem);
    --page-title-size-mobile: clamp(2.2rem, 8vw, 3rem);
}

/* ===== Base Styles ===== */
*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-primary);
    background: var(--bg-base);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
    max-width: 65ch;
}

/* ===== Section Header - CENTERED ===== */
.section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    margin-bottom: 1.25rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-left: auto;
    margin-right: auto;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--bg-base);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: var(--page-title-size);
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-soft);
    opacity: 0.5;
}

.parallax-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.parallax-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

/* ===== Button Styles ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0056b3 0, #004494 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #004494 0, #003380 100%);   
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
    color: #ffffff;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0, var(--teal) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

/* ===== Section Styles ===== */
.section {
    padding: 2rem 0;
}

.section-alt {
    background: var(--bg-soft);
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon title" "desc desc" "list list";
    column-gap: 1rem;
    row-gap: 0.9rem;
    transition: all var(--duration) var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.services-grid .service-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

    /* Make sure content stays above pseudo-elements */
    .services-grid .service-card > * {
        position: relative;
        z-index: 2;
    }

/* ===== ODD CARD (DEFAULT: LIGHT) ===== */
.services-section-wrapper .service-card:nth-child(odd) {
    background: #ffffff;
    color: #1f2937;
}

    /* Odd card - dark overlay for hover (to become like EVEN) */
    .services-section-wrapper .service-card:nth-child(odd)::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #343a40 0, #0056b3 50%, #343a40 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
        border-radius: inherit;
    }

    /* Odd card - shine effect */
    .services-section-wrapper .service-card:nth-child(odd)::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: skewX(-25deg);
        transition: left 0.7s ease;
        z-index: 1;
        pointer-events: none;
    }

    /* Odd card hover - show dark overlay */
    .services-section-wrapper .service-card:nth-child(odd):hover::after {
        opacity: 1;
    }

    .services-section-wrapper .service-card:nth-child(odd):hover::before {
        left: 100%;
    }

/* ===== EVEN CARD (DEFAULT: DARK GRADIENT) ===== */
.services-section-wrapper .service-card:nth-child(even) {
    background: linear-gradient(135deg, #343a40 0, #0056b3 50%, #343a40 100%);
    color: #ffffff;
}

    /* Even card - light overlay for hover (to become like ODD) */
    .services-section-wrapper .service-card:nth-child(even)::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #ffffff;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
        border-radius: inherit;
    }

    /* Even card - shine effect (different color for light background) */
    .services-section-wrapper .service-card:nth-child(even)::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
        transform: skewX(-25deg);
        transition: left 0.7s ease;
        z-index: 1;
        pointer-events: none;
    }

    /* Even card hover - show light overlay */
    .services-section-wrapper .service-card:nth-child(even):hover::after {
        opacity: 1;
    }

    .services-section-wrapper .service-card:nth-child(even):hover::before {
        left: 100%;
    }

/* ===== COMMON HOVER STYLES ===== */
.services-section-wrapper .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent !important;
}

/* ODD card hover text colors (become white on dark) */
.services-section-wrapper .service-card:nth-child(odd):hover h3,
.services-section-wrapper .service-card:nth-child(odd):hover p,
.services-section-wrapper .service-card:nth-child(odd):hover .service-list li {
    color: #ffffff !important;
}

/* EVEN card hover text colors (become dark on white) */
.services-section-wrapper .service-card:nth-child(even):hover h3 {
    color: #1f2937 !important;
}

.services-section-wrapper .service-card:nth-child(even):hover p,
.services-section-wrapper .service-card:nth-child(even):hover .service-list li {
    color: #4b5563 !important;
}

/* Hover icon styles - ODD becomes gold on dark */
.services-section-wrapper .service-card:nth-child(odd):hover .service-icon {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #FBBF25 !important;
    transform: scale(1.05);
}

/* Hover icon styles - EVEN becomes blue on light */
.services-section-wrapper .service-card:nth-child(even):hover .service-icon {
    background: rgba(37, 99, 235, 0.1) !important;
    color: #2563eb !important;
    transform: scale(1.05);
}

/* Hover bullet styles - ODD becomes gold */
.services-section-wrapper .service-card:nth-child(odd):hover .service-list li::before {
    background: #FBBF25 !important;
    width: 10px;
    height: 10px;
}

/* Hover bullet styles - EVEN becomes blue */
.services-section-wrapper .service-card:nth-child(even):hover .service-list li::before {
    background: #2563eb !important;
    width: 10px;
    height: 10px;
}

/* List animation on hover (both) */
.services-section-wrapper .service-card:hover .service-list li {
    transform: translateX(3px);
}

/* ===== DEFAULT STYLES FOR ICONS & BULLETS (non-hover) ===== */

/* Odd default icon */
.services-section-wrapper .service-card:nth-child(odd) .service-icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

/* Even default icon */
.services-section-wrapper .service-card:nth-child(even) .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #FBBF25;
}

/* Odd default bullets */
.services-section-wrapper .service-card:nth-child(odd) .service-list li::before {
    background: #2563eb;
}

/* Even default bullets */
.services-section-wrapper .service-card:nth-child(even) .service-list li::before {
    background: #FBBF25;
}

/* Card base styles */
.services-section-wrapper .service-card h3 {
    font-size: 1.25rem;
    margin: 0;
}

.services-section-wrapper .service-card p {
    font-size: 0.95rem;
}

.services-section-wrapper .service-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding-left: 0;
    margin: 0;
}

    .services-section-wrapper .service-list li {
        position: relative;
        padding-left: 1.4rem;
        transition: transform 0.3s ease;
    }

        .services-section-wrapper .service-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

.services-section-wrapper .service-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md, 0.5rem);
    transition: all 0.3s ease;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.3rem;
    grid-area: icon;
}

.service-card h3 {
    font-size: 1.25rem;
    grid-area: title;
    margin-bottom: 0;
    align-self: center;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    grid-area: desc;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    grid-area: list;
}

.service-list li {
    position: relative;
    padding-left: 1.4rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

/* ===== OPS Grid ===== */
.ops-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}

.ops-card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon title" "desc desc";
    column-gap: 0.75rem;
    row-gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.ops-grid .ops-card:nth-child(2n),
.pricing-grid .pricing-card:not(.highlight):nth-child(odd),
.team-grid .team-card:nth-child(2n) {
    background: var(--bg-alt);
    border-color: var(--border);
}

    .ops-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .ops-card i {
        font-size: 1.4rem;
        color: var(--teal);
        grid-area: icon;
        align-self: center;
        transition: transform var(--duration) var(--ease);
    }

    .ops-card:hover i {
        transform: scale(1.1);
    }

    .ops-card h4 {
        font-size: 1.05rem;
        grid-area: title;
        margin-bottom: 0;
        align-self: center;
    }

    .ops-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        grid-area: desc;
    }

/* ===== Case Studies ===== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.case-study-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 2.25rem;
    background: linear-gradient(180deg, #fff 0, var(--bg-soft) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 1.5rem;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

    .case-study-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .case-study-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, var(--accent-soft), transparent 60%);
        opacity: 0.8;
        z-index: 0;
    }

    .case-study-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--teal));
        z-index: 1;
    }

    .case-study-card > * {
        position: relative;
        z-index: 2;
    }

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-logo {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: grid;
    place-items: center;
}

.case-industry {
    display: inline-flex;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.metric-item {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    text-align: center;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.metric-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.case-quote {
    margin: 0;
    padding: 1rem;
    border-left: 3px solid var(--accent);
    background: rgba(37, 99, 235, 0.06);
    border-radius: var(--radius-md);
    font-style: italic;
    font-size: 0.9rem;
}

.case-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

    .faq-item summary:hover {
        color: var(--accent);
    }

.faq-item summary {
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.25rem 3.75rem 1.25rem 1.5rem;
    font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    font-size: 1.15rem;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 4rem;
    align-items: start;
}

.contact-content {
    text-align: left;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-highlights .trust-badge {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.contact-link i {
    font-size: 1.25rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-soft);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: var(--bg-card);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Contact Form Button Style */
.contact-form input[type="submit"],
.contact-form button[type="submit"],
#homepageform input[type="submit"],
#homepageform button[type="submit"],
.form-submit-btn,
.contact-form-wrapper .btn-submit,
.cta-content-wrapper .btn-primary {
    background: linear-gradient(135deg, #0056b3 0, #004494 50%, #0056b3 100%);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font-display);
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover,
#homepageform input[type="submit"]:hover,
#homepageform button[type="submit"]:hover,
.contact-form-wrapper .btn-submit:hover,
.cta-content-wrapper .btn-primary:hover {
    background: linear-gradient(135deg, #004494 0, #003380 100%);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
    color: #ffffff;
}

/* ===== CTA Section ===== */
.cta-section-max-visibility {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0, rgba(13, 148, 136, 0.02) 50%, rgba(124, 58, 237, 0.03) 100%);
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 2rem;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background: var(--accent);
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
    background: var(--teal);
}

.cta-orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--purple);
}

/* ===== Trust Badges ===== */
.trust-badge {
    height: auto;
    max-height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all var(--duration) var(--ease);
}

.trust-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== Chip Styles ===== */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    padding: 0.375rem 0.75rem;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

    .chip:hover {
        background: var(--accent);
        color: var(--text-inverse);
        transform: translateY(-2px);
    }

/* ===== Workflow Process Styles ===== */
.workflow-section-zigzag {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 32px) minmax(0, 1fr);
    column-gap: 2rem;
    align-items: start;
}

.workflow-progress-center {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.progress-track-center {
    width: 4px;
    height: 100%;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-fill-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent) 0, var(--teal) 100%);
    transition: height 0.5s ease;
}

.progress-stages-center {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.progress-dot {
    width: var(--progress-dot-size);
    height: var(--progress-dot-size);
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--border);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .progress-dot::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--text-muted);
        transition: all var(--duration) var(--ease);
    }

    .progress-dot:hover {
        border-color: var(--accent);
        transform: translateX(-50%) scale(1.15);
        box-shadow: 0 0 0 4px var(--accent-soft);
    }

    .progress-dot.active {
        border-color: var(--accent);
        background: var(--accent);
        transform: translateX(-50%) scale(1.25);
        box-shadow: 0 0 0 6px var(--accent-soft);
    }

        .progress-dot.active::before {
            background: var(--text-inverse);
        }

    .progress-dot:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 4px;
    }

    .progress-dot[data-stage="1"] {
        top: 0;
    }

    .progress-dot[data-stage="2"] {
        top: 33.33%;
    }

    .progress-dot[data-stage="3"] {
        top: 66.66%;
    }

    .progress-dot[data-stage="4"] {
        top: 100%;
    }

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--accent-soft);
    }

    50% {
        box-shadow: 0 0 0 12px var(--accent-soft);
    }
}

.progress-dot.active {
    animation: dotPulse 2s ease-in-out infinite;
}

.workflow-stages-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    position: relative;
    grid-column: 1 / -1;
    grid-row: 1;
    z-index: 1;
}

.workflow-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.workflow-card-left {
    width: 100%;
    max-width: calc(50% - 2rem);
    margin-right: auto;
}

.workflow-card-right {
    width: 100%;
    max-width: calc(50% - 2rem);
    margin-left: auto;
}

.workflow-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.25rem;
    background: var(--bg-card);
    border: none;
    border-bottom: 1px solid #fff0;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.workflow-card-header:hover {
    background: var(--bg-soft);
}

.workflow-card-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--duration) var(--ease);
    flex-shrink: 0;
}

.workflow-card[aria-expanded="true"] .workflow-card-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-inverse);
}

.workflow-card-illustration {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform var(--duration) var(--ease);
}

.workflow-card[aria-expanded="true"] .workflow-card-illustration {
    transform: scale(1.1);
}

.workflow-card-title-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.workflow-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    transition: color var(--duration) var(--ease);
}

.workflow-card[aria-expanded="true"] .workflow-card-title {
    color: var(--accent);
}

.workflow-card-duration {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--teal-soft);
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 600;
}

.workflow-card-toggle {
     width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    transition: all var(--duration) var(--ease);
}

.workflow-card[aria-expanded="true"] .workflow-card-header {
    border-bottom-color: var(--border-light);
    background: var(--bg-soft);
}

.workflow-card[aria-expanded="true"] .workflow-card-toggle {
    transform: rotate(180deg);
}

.workflow-card-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.3s ease;
}

.workflow-card[aria-expanded="true"] .workflow-card-content {
    height: auto;
    opacity: 1;
    padding: 1.5rem;
}

.workflow-card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.workflow-card-deliverables {
    margin-bottom: 1rem;
}

.workflow-card-deliverables h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.workflow-card-impact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.workflow-card-impact i {
    color: var(--accent);
    font-size: 1rem;
}

.workflow-card-impact span {
    font-size: 0.85rem;
    font-style: italic;
}

.workflow-cta-btn {
    margin-top: 1rem;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent) 0, var(--teal) 100%);
    color: var(--text-inverse);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.workflow-cta-connector {
    width: 4px;
    height: 1.25rem;
    background: var(--border);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

/* ===== Testimonial Carousel ===== */
.testimonial-carousel {
    position: relative;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 1.5rem;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
}

.testimonial-card.compact {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all var(--duration) var(--ease);
}

.carousel-nav:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: var(--radius-full);
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-title {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin: 0.5rem auto;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    transition: all var(--duration) var(--ease);
    color: var(--text-secondary);
}

.team-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Team Modal */
.team-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 2000;
}

.team-modal.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.team-modal__backdrop {
    position: absolute;
    inset: 0;
}

.team-modal__dialog {
    position: relative;
    width: min(400px, 90vw);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.3s ease;
}

.team-modal.is-open .team-modal__dialog {
    transform: translateY(0) scale(1);
}

.team-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.team-modal__media {
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.team-modal__image {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 12px;
}

.team-modal__caption {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.team-modal__name {
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
}

/* ===== Section CTA ===== */
.section-cta,
.section-cta1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;
}

.section-cta .btn-primary,
.section-cta1 .btn-primary {
    display: inline-flex;
}

/* ===== GSAP Reveal ===== */
.gsap-reveal {
    opacity: 0;
    transform: none;
}

/* ===== Proof Strip ===== */
.proof-strip {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #343a40 0%, #0056b3 50%, #343a40 100%) !important;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #fff;
}

.proof-item i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.proof-item strong {
    display: block;
    font-weight: 600;
}

.proof-item span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ===== Proof Section Button Center Fix ===== */
#proof .gsap-reveal {
    text-align: center;
}

#proof .btn-primary {
    display: inline-flex;
    margin-top: 1rem;
}

/* ===== Trusted By Section ===== */
.trusted-by {
    padding: 3rem 0;
    background: var(--bg-base);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.trusted-header {
    text-align: center;
    margin-bottom: 2rem;
}

.trusted-header h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
}

.logo-row {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marquee-left 30s linear infinite;
}

.logo-set {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 50px;
    padding: 0 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

/*.logo-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}*/

.logo-pill .client-logo {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Roadmap / Timeline Section ===== */
.roadmap-section {
    padding: 3rem 0;
    background: var(--bg-base);
    background-image: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0, transparent 50%),
                      radial-gradient(circle at 80% 30%, rgba(20, 184, 166, 0.03) 0, transparent 50%),
                      radial-gradient(circle at 40% 80%, rgba(37, 99, 235, 0.02) 0, transparent 40%);
    background-attachment: fixed;
}

.roadmap-section.section-alt {
    background: var(--bg-soft);
    background-image: radial-gradient(circle at 30% 40%, rgba(20, 184, 166, 0.04) 0, transparent 50%),
                      radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.03) 0, transparent 40%);
    background-attachment: fixed;
}

/* Roadmap Stats */
.roadmap-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Timeline Container */
.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    --timeline-gap: 32px;
    z-index: 0;
}

/* Vertical Timeline Track */
.timeline-track-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--border) 0, var(--border-light) 100%);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 1;
}

.timeline-fill-vertical {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent) 0, var(--teal) 50%, var(--accent) 100%);
    background-size: 100% 200%;
    border-radius: var(--radius-full);
    transition: height 0.5s ease;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
    animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 0 100%; }
}

/* Timeline Nodes */
.timeline-nodes-vertical {
    position: relative;
    z-index: 3;
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--border);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-node:hover {
    border-color: var(--accent);
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.timeline-node.active {
    background: linear-gradient(135deg, var(--accent) 0, var(--teal) 100%);
    border-color: var(--accent);
    color: var(--text-inverse);
    box-shadow: 0 0 0 4px var(--accent-soft), 0 0 20px rgba(37, 99, 235, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft), 0 0 20px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 6px var(--accent-soft), 0 0 30px rgba(37, 99, 235, 0.6); }
}

/* Timeline Node Positions */
.timeline-node[data-stage="1"] { top: 0; }
.timeline-node[data-stage="2"] { top: 33.33%; }
.timeline-node[data-stage="3"] { top: 66.66%; }
.timeline-node[data-stage="4"] { top: 100%; }
.timeline-node[data-stage="5"] { top: 133.33%; }
.timeline-node[data-stage="6"] { top: 166.66%; }
.timeline-node[data-stage="7"] { top: 200%; }
.timeline-node[data-stage="8"] { top: 233.33%; }
.timeline-node[data-stage="9"] { top: 266.66%; }
.timeline-node[data-stage="10"] { top: 300%; }

/* Hide extra nodes initially */
.timeline-node.is-collapsed {
    display: none;
}

/* Milestone Cards */
.roadmap-milestones {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.milestone-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: calc(50% - var(--timeline-gap));
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--duration) var(--ease);
}

.milestone-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initially hide extra milestones */
.milestone-card.is-collapsed {
    display: none;
}

.milestone-left {
    margin-right: auto;
}

.milestone-right {
    margin-left: auto;
}

.milestone-left .milestone-content {
    order: 1;
}

.milestone-left .milestone-visual {
    order: 2;
}

.milestone-right .milestone-visual {
    order: 1;
}

.milestone-right .milestone-content {
    order: 2;
}

.milestone-content {
    padding: 2rem;
    background: linear-gradient(145deg, var(--bg-card) 0, rgba(37, 99, 235, 0.02) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
    position: relative;
    flex: 1;
    min-width: 0;
}

.milestone-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0, var(--teal) 100%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.milestone-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.milestone-content:hover::before {
    opacity: 1;
}

.milestone-year {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.milestone-year i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--teal) 0, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.milestone-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.milestone-text p {
    margin-bottom: 0.75rem;
}

.milestone-visual {
    align-self: center;
    flex: 0 0 auto;
}

.milestone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-soft) 0, rgba(20, 184, 166, 0.1) 100%);
    font-size: 2rem;
    color: var(--accent);
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    position: relative;
}

.milestone-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent) 0, var(--teal) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--duration) var(--ease);
}

.milestone-card:hover .milestone-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.milestone-card:hover .milestone-icon::after {
    opacity: 0.3;
}

/* View More Button */
.roadmap-view-more-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.75rem 0 0;
}

.roadmap-view-more-wrapper.is-hidden {
    display: none;
}

.roadmap-view-more {
    appearance: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    font-family: var(--font-display);
}

.roadmap-view-more:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
    background: var(--accent-soft);
}

.roadmap-view-more.is-active {
    background: linear-gradient(135deg, var(--accent) 0, var(--teal) 100%);
    color: var(--text-inverse);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

/* Roadmap CTA */
.roadmap-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.roadmap-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

    .roadmap-cta p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
        max-width: 60ch;
        margin-left: auto;
        margin-right: auto
    }

/* ===== Why SubmitInMe Gallery Styles ===== */
.why-gallery__zoom {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.why-gallery__main:hover .why-gallery__zoom {
    opacity: 1;
}

.why-gallery__zoom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
}

.lightbox__content {
    position: relative;
    max-width: min(90vw, 1000px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox__close,
.lightbox__next,
.lightbox__prev {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.lightbox__close:hover,
.lightbox__next:hover,
.lightbox__prev:hover {
    background: #fff;
    transform: scale(1.1);
}

.lightbox__close {
    top: -60px;
    right: 0;
}

.lightbox__prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== Container and Grid Utilities ===== */
.container {
    width: 100%;
    padding-right: calc(1.5rem * 0.5);
    padding-left: calc(1.5rem * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container { max-width: 540px; }
}
@media (min-width: 768px) {
    .container { max-width: 720px; }
}
@media (min-width: 992px) {
    .container { max-width: 960px; }
}
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

.row {
    display: flex;
    flex-wrap: wrap;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

/* ===== Responsive Design ===== */
@media (max-width: 1199px) {
    .hero-grid {
        gap: 3rem;
    }
    .services-grid,
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 80px 0 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content {
        text-align: center;
        align-items: center;
    }
    .section {
        padding: 4rem 0;
    }
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .workflow-card-left,
    .workflow-card-right {
        max-width: 100%;
        margin: 0;
    }
    .workflow-section-zigzag {
        grid-template-columns: 1fr;
    }
    .workflow-progress-center {
        display: none;
    }
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .roadmap-stats {
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .timeline-node {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }
    .milestone-card {
        gap: 1.5rem;
        max-width: calc(50% - var(--timeline-gap));
    }
    .milestone-content {
        padding: 1.75rem;
    }
    .milestone-year {
        font-size: 1.75rem;
    }
    .milestone-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .services-grid,
    .case-studies-grid,
    .ops-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: var(--page-title-size-mobile);
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .contact-highlights {
        justify-content: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .carousel-prev {
        left: 0;
    }
    .carousel-next {
        right: 0;
    }
    .timeline-track-vertical {
        left: 20px;
    }
    .timeline-node {
        left: 20px;
    }
    .milestone-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        max-width: 100%;
        padding-left: 60px;
    }
    .milestone-visual {
        align-self: start;
    }
    .milestone-left .milestone-content,
    .milestone-left .milestone-visual,
    .milestone-right .milestone-content,
    .milestone-right .milestone-visual {
        order: initial;
    }
    .milestone-content {
        padding: 1.5rem;
    }
    .milestone-year {
        font-size: 1.5rem;
    }
    .roadmap-cta {
        padding: 1.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-section-max-visibility {
        padding: 2rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    .logo-pill {
        min-width: 100px;
        height: 42px;
    }
    .logo-pill .client-logo {
        max-height: 32px;
        max-width: 90px;
    }
    .contact-form input[type="submit"],
    .contact-form button[type="submit"] {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    .section-cta .btn-primary,
    .section-cta1 .btn-primary,
    #proof .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .timeline-track-vertical {
        left: 16px;
    }
    .timeline-node {
        left: 16px;
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }
    .milestone-card {
        padding-left: 50px;
        gap: 0.75rem;
    }
    .milestone-content {
        padding: 1.25rem;
    }
    .milestone-year {
        font-size: 1.25rem;
    }
    .milestone-text {
        font-size: 0.9rem;
    }
}

/* ===== Animations ===== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== GRID ===== */
.services-section-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

/* ===== CARD BASE ===== */
.services-section-wrapper .service-card {
    padding: 2.2rem;
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: var(--radius-lg, 1rem);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon title"
        "desc desc"
        "list list";
    column-gap: 1rem;
    row-gap: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #1f2937;
}

    /* ===== ODD CARD (DEFAULT: LIGHT) ===== */
    .services-section-wrapper .service-card:nth-child(odd) {
        background: #ffffff;
        color: #1f2937;
    }

        .services-section-wrapper .service-card:nth-child(odd) h3 {
            color: #1f2937;
        }

        .services-section-wrapper .service-card:nth-child(odd) p,
        .services-section-wrapper .service-card:nth-child(odd) .service-list li {
            color: #4b5563;
        }

        .services-section-wrapper .service-card:nth-child(odd) .service-icon {
            background: rgba(37, 99, 235, 0.1);
            color: #2563eb;
        }

        .services-section-wrapper .service-card:nth-child(odd) .service-list li::before {
            background: #2563eb;
        }

    /* ===== EVEN CARD (DEFAULT: DARK GRADIENT) ===== */
    .services-section-wrapper .service-card:nth-child(even) {
        background: linear-gradient(135deg, #343a40 0%, #0056b3 50%, #343a40 100%);
        color: #ffffff;
    }

        .services-section-wrapper .service-card:nth-child(even) h3,
        .services-section-wrapper .service-card:nth-child(even) p,
        .services-section-wrapper .service-card:nth-child(even) .service-list li {
            color: #ffffff;
        }

        .services-section-wrapper .service-card:nth-child(even) .service-icon {
            background: rgba(255, 255, 255, 0.15);
            color: #FBBF25;
        }

        .services-section-wrapper .service-card:nth-child(even) .service-list li::before {
            background: #FBBF25;
        }

/* ===== ICON BASE ===== */
.services-section-wrapper .service-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md, 0.5rem);
    transition: all 0.3s ease;
}

/* ===== TEXT & LIST DEFAULTS ===== */
.services-section-wrapper .service-card h3 {
    font-size: 1.25rem;
    margin: 0;
}

.services-section-wrapper .service-card p {
    font-size: 0.95rem;
}

.services-section-wrapper .service-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding-left: 0;
    margin: 0;
}

    .services-section-wrapper .service-list li {
        position: relative;
        padding-left: 1.4rem;
        transition: transform 0.3s ease;
    }

        .services-section-wrapper .service-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

/* ========================================= */
/* 🔥 HOVER SYSTEM - INVERT STYLES */
/* ========================================= */

/* ----- HOVERED ODD CARD (becomes like EVEN: dark gradient) ----- */
.services-section-wrapper .service-card:nth-child(odd):hover {
    background: linear-gradient(135deg, #343a40 0%, #0056b3 50%, #343a40 100%);
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    z-index: 10;
}

    .services-section-wrapper .service-card:nth-child(odd):hover h3,
    .services-section-wrapper .service-card:nth-child(odd):hover p,
    .services-section-wrapper .service-card:nth-child(odd):hover .service-list li {
        color: #ffffff;
    }

    .services-section-wrapper .service-card:nth-child(odd):hover .service-icon {
        background: rgba(255, 255, 255, 0.15);
        color: #FBBF25;
        transform: scale(1.05);
    }

    .services-section-wrapper .service-card:nth-child(odd):hover .service-list li::before {
        background: #FBBF25;
        width: 10px;
        height: 10px;
    }

    .services-section-wrapper .service-card:nth-child(odd):hover .service-list li {
        transform: translateX(3px);
    }

/* ----- HOVERED EVEN CARD (becomes like ODD: light background) ----- */
.services-section-wrapper .service-card:nth-child(even):hover {
    background: #ffffff;
    color: #1f2937;
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    z-index: 10;
}

    .services-section-wrapper .service-card:nth-child(even):hover h3 {
        color: #1f2937;
    }

    .services-section-wrapper .service-card:nth-child(even):hover p,
    .services-section-wrapper .service-card:nth-child(even):hover .service-list li {
        color: #4b5563;
    }

    .services-section-wrapper .service-card:nth-child(even):hover .service-icon {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
        transform: scale(1.05);
    }

    .services-section-wrapper .service-card:nth-child(even):hover .service-list li::before {
        background: #2563eb;
        width: 10px;
        height: 10px;
    }

    .services-section-wrapper .service-card:nth-child(even):hover .service-list li {
        transform: translateX(3px);
    }

/* ========================================= */
/* 🔥 NON-HOVERED CARDS (when grid is hovered) */
/* Keep their original default styles - no change */
/* ========================================= */

.services-section-wrapper .services-grid:hover .service-card:not(:hover) {
    transform: none;
    box-shadow: none;
}

    /* Non-hovered odd cards stay light */
    .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(odd) {
        background: #ffffff;
        color: #1f2937;
    }

        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(odd) h3 {
            color: #1f2937;
        }

        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(odd) p,
        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(odd) .service-list li {
            color: #4b5563;
        }

        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(odd) .service-icon {
            background: rgba(37, 99, 235, 0.1);
            color: #2563eb;
            transform: none;
        }

        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(odd) .service-list li::before {
            background: #2563eb;
            width: 8px;
            height: 8px;
        }

    /* Non-hovered even cards stay dark gradient */
    .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(even) {
        background: linear-gradient(135deg, #343a40 0%, #0056b3 50%, #343a40 100%);
        color: #ffffff;
    }

        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(even) h3,
        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(even) p,
        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(even) .service-list li {
            color: #ffffff;
        }

        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(even) .service-icon {
            background: rgba(255, 255, 255, 0.15);
            color: #FBBF25;
            transform: none;
        }

        .services-section-wrapper .services-grid:hover .service-card:not(:hover):nth-child(even) .service-list li::before {
            background: #FBBF25;
            width: 8px;
            height: 8px;
        }

    /* Reset list translation for non-hovered cards */
    .services-section-wrapper .services-grid:hover .service-card:not(:hover) .service-list li {
        transform: translateX(0);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .services-section-wrapper .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .services-section-wrapper .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure grid layout has proper gap */
.services-section-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}