﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-blue: #0041C2;
    --primary-blue-rgb: 0, 65, 194;
    --accent-orange: #FF5722;
    --accent-orange-rgb: 255, 87, 34;
    --tertiary-mint: #10B981;
    --soft-ice-blue: #E0E8FF;
    /* Visible contrast Background */
    --soft-ice-blue-rgb: 224, 232, 255;
    --deep-midnight: #0f172a;
    --deep-midnight-rgb: 15, 23, 42;
    --slate-900: #1e293b;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-50: #f8fafc;
    --white: #F0F4FF;
    /* Clearly Blue-tinted "White" replacement */
    --white-rgb: 240, 244, 255;

    /* Layout */
    --max-width: 1200px;
    --section-padding: 100px 20px;
    --navbar-height: 80px;

    /* Effects */
    --glass-background: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-ice-blue);
    /* The slightly deeper tone for page base */
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: var(--white);
}

/* Redefining accent as ghost for some cases or just sticky with orange */
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Navigation */
header {
    width: 100%;
    height: var(--navbar-height);
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center the links in the remaining space */
    align-items: center;
    height: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100% !important;
    /* Full width as requested */
    padding: 0 50px;
    /* Generous padding for corners */
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* Hover effects for nav */
.nav-links {
    display: flex;
    gap: 40px;
    /* Increased spacing */
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    /* White text on hero usually, change on scroll */
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

header.scrolled .nav-links a {
    color: var(--slate-700);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    /* Soft blue tint */
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.8;
}

.nav-links a:hover::after {
    width: 100%;
}

header.scrolled .nav-links a::after {
    background: var(--accent-orange);
    bottom: -5px;
}

header.scrolled .nav-links a:hover {
    color: var(--primary-blue);
}

/* Hero Section Refinement */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    z-index: 10;
}

.hero-bg {
    position: absolute;
    top: -10%;
    /* Compensate for parallax */
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax room */
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker radial to hide distracting background holograms */
    background:
        radial-gradient(circle at 10% 50%, rgba(var(--deep-midnight-rgb), 0.9) 0%, rgba(var(--deep-midnight-rgb), 0.6) 50%, rgba(var(--primary-blue-rgb), 0.05) 100%),
        linear-gradient(to bottom, transparent 70%, var(--soft-ice-blue) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(5px);
    transition:
        opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.2s ease-out;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.15s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.hero-content {
    position: relative;
    z-index: 20;
    /* High z-index to stay above everything */
}

.hero-text {
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out forwards;
    /* Removed opacity: 0 to ensure text is visible even if animation doesn't play */
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--accent-orange);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--slate-200);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Services Teaser */
.services-teaser {
    padding: 160px 0 120px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    /* Deeper overlap for the scoop */
    /* Truly Concave Parabolic Scoop (Valley) */
    clip-path: polygon(0% 0%,
            5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%,
            50% 12.5%,
            65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%,
            100% 0%,
            100% 100%, 0% 100%);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-teaser.reveal {
    opacity: 0;
    transform: translateY(100px);
    /* Synchronized with scroll more clearly */
}

.services-teaser.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 80px;
    /* Room for the deeper scoop */
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--deep-midnight);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Anthem V-Lifecycle Diagram */
.v-lifecycle-container {
    height: 600px;
    margin: 100px auto;
    position: relative;
    max-width: 1000px;
    width: 100%;
}

.v-connector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.v-path-bg {
    stroke: var(--slate-200);
    stroke-width: 6px;
    opacity: 0.3;
}

.v-path-fill {
    stroke: var(--primary-blue);
    stroke-width: 6px;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 5s cubic-bezier(0.22, 1, 0.36, 1);
}

.v-lifecycle-container.active .v-path-fill {
    stroke-dashoffset: 0;
}

.v-nodes {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.v-node {
    position: absolute;
    width: 0;
    height: 0;
    /* Precise Anchor Point */
}

.node-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 65, 194, 0.1);
    transform: translate(-50%, -50%);
    /* Centered exactly on the coordinate */
    transition: var(--transition-smooth);
    z-index: 2;
}

.v-node:hover .node-icon,
.v-node.selected .node-icon {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--white);
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(var(--accent-orange-rgb), 0.2);
    animation: pulse-orange 2s infinite;
}

.node-label {
    position: absolute;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--deep-midnight);
    white-space: nowrap;
    transition: var(--transition-smooth);
    pointer-events: none;
}

/* Side Alignment labels relative to icon anchor */
.label-left {
    right: 50px;
    /* Offset to the left */
    top: 0;
    transform: translateY(-50%);
    text-align: right;
}

.label-right {
    left: 50px;
    /* Offset to the right */
    top: 0;
    transform: translateY(-50%);
    text-align: left;
}

.label-bottom {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: var(--accent-orange);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Foundation Node (Anthem) */
.node-bottom {
    flex-direction: column;
}

.node-bottom .node-icon {
    width: 120px;
    height: 120px;
    padding: 15px;
    border: 5px solid var(--accent-orange);
    background: var(--white);
    /* Pulse removed from persistent state, now moves on hover/click */
}

.node-bottom .anthem-logo-node img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--accent-orange-rgb), 0.4);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(var(--accent-orange-rgb), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--accent-orange-rgb), 0);
    }
}

.v-node:hover .node-label,
.v-node.selected .node-label {
    color: var(--accent-orange);
}

/* Clients Showcase Carousel */
.clients-showcase {
    padding: 100px 0;
    background: var(--soft-ice-blue);
    overflow: hidden;
}

.logos-carousel {
    margin-top: 40px;
    width: 100%;
    position: relative;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 50px rgba(0, 65, 194, 0.05);
}

.logo-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 30s linear infinite;
    gap: 100px;
}

.client-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-logo img {
    max-height: 100%;
    width: auto;
    filter: grayscale(1) opacity(0.5);
    transition: var(--transition-smooth);
}

.client-logo:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 10));
    }
}

.service-card {
    display: none;
}

/* =========================================
   ABOUT PAGE LAYOUT
========================================= */

.about-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

    .about-section.reveal {
        opacity: 0;
        transform: translateY(100px);
    }

        .about-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

/* Intro */
.about-intro-block {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}

    .about-intro-block h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 20px;
    }

    .about-intro-block p {
        font-size: 1.05rem;
        color: var(--slate-700);
        margin-bottom: 16px;
    }

.section-kicker {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

/* Metrics + Purpose */
.about-insight-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: stretch;
    margin-bottom: 56px;
}

.about-metrics-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.about-metric-card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

    .about-metric-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
    }

    .about-metric-card h3 {
        font-size: clamp(2rem, 3vw, 3rem);
        line-height: 1;
        color: var(--primary-blue);
        margin-bottom: 8px;
    }

    .about-metric-card p {
        margin: 0;
        color: var(--slate-700);
        font-size: 0.98rem;
        font-weight: 600;
    }

.about-purpose-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.about-purpose-card {
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.about-purpose-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.about-purpose-card h3 {
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--primary-blue);
    margin: 0;
}

.about-purpose-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.8;
}

/* CTA */
.about-cta-block {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

    .about-cta-block h3 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .about-cta-block p {
        color: var(--slate-700);
        margin-bottom: 22px;
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .about-insight-grid {
        grid-template-columns: 1fr;
    }

    .about-purpose-column {
        grid-template-rows: auto;
    }

    .about-metrics-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .about-intro-block {
        margin-bottom: 48px;
    }

    .about-metrics-column {
        grid-template-columns: 1fr;
    }

    .about-purpose-card,
    .about-cta-block,
    .about-metric-card {
        padding: 24px;
        border-radius: 20px;
    }
}

/* =========================================
   SOLUTIONS PAGE
========================================= */

.solutions-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

    .solutions-section.reveal {
        opacity: 0;
        transform: translateY(90px);
    }

        .solutions-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.solutions-intro {
    max-width: 900px;
    margin: 0 auto 64px;
    text-align: center;
}

    .solutions-intro h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 20px;
    }

    .solutions-intro p {
        font-size: 1.05rem;
        color: var(--slate-700);
        line-height: 1.8;
    }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
    }

.solution-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.solution-card h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.solution-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-600);
    margin-bottom: 22px;
}

.solution-copy p {
    color: var(--slate-700);
    line-height: 1.85;
    margin-bottom: 16px;
}

    .solution-copy p:last-child {
        margin-bottom: 0;
    }

/* =========================================
   SOLUTIONS TEASERS
========================================= */

.solution-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 0 auto 48px;
}

.solution-teaser-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 36px;
    text-align: left;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.10), rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
}

    .solution-teaser-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 46px rgba(15, 23, 42, 0.14);
    }

.solution-teaser-meta {
    flex: 0 0 auto;
    min-width: 140px;
}

.solution-teaser-section {
    margin: 0 auto 48px;
}

.solution-teaser-header {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

    .solution-teaser-header span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.85);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--accent-orange);
    }

.solution-teaser-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary-blue);
    margin: 0;
}

.solution-teaser-line {
    flex: 1;
    margin: 0;
    color: var(--slate-700);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* =========================================
   SOLUTIONS CTA
========================================= */

.solutions-cta {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

    .solutions-cta h3 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .solutions-cta p {
        color: var(--slate-700);
        margin-bottom: 22px;
        font-size: 1rem;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .solutions-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-teaser-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .solutions-intro {
        margin-bottom: 48px;
    }

    .solution-card,
    .solutions-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .solution-teaser-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-radius: 20px;
    }

    .solution-teaser-meta {
        min-width: auto;
    }

    .solution-teaser-line {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}

/* =========================================
   SERVICES PAGE
========================================= */

.services-page-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

    .services-page-section.reveal {
        opacity: 0;
        transform: translateY(90px);
    }

        .services-page-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.services-page-intro {
    max-width: 860px;
    margin: 0 auto 64px;
    text-align: center;
}

    .services-page-intro h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 18px;
    }

    .services-page-intro p {
        font-size: 1.05rem;
        color: var(--slate-700);
        line-height: 1.85;
    }

.services-scope-block {
    margin-bottom: 56px;
}

.services-block-header {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .services-block-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .services-block-header p {
        color: var(--slate-700);
        line-height: 1.8;
        font-size: 1rem;
    }

/* =========================================
   SERVICES LIFECYCLE
========================================= */

.services-lifecycle {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 56px;
    padding: 12px 0;
}

.services-lifecycle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient( to bottom, rgba(var(--primary-blue-rgb), 0.10), rgba(var(--primary-blue-rgb), 0.30), rgba(var(--primary-blue-rgb), 0.10) );
    z-index: 1;
}

.service-stage {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    min-height: 150px;
    z-index: 2;
}

    .service-stage:last-child {
        margin-bottom: 0;
    }

.stage-left {
    justify-content: flex-start;
    padding-right: calc(50% + 28px);
}

.stage-right {
    justify-content: flex-end;
    padding-left: calc(50% + 28px);
}

.service-stage-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), #2b63d9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 24px rgba(0, 65, 194, 0.22);
    z-index: 3;
}

.service-stage-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    padding: 28px 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

    .service-stage-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
    }

    .service-stage-card h3 {
        font-size: 1.35rem;
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .service-stage-card p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 16px;
    }

.service-stage-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.02em;
}

    .service-stage-link::after {
        content: "→";
        transition: transform 0.25s ease;
    }

.service-stage-card:hover .service-stage-link::after {
    transform: translateX(4px);
}

/* =========================================
   SERVICES CTA
========================================= */

.services-page-cta {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

    .services-page-cta h3 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .services-page-cta p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 22px;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .services-page-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .services-lifecycle {
        max-width: 760px;
    }

    .stage-left,
    .stage-right {
        padding-left: calc(50% + 24px);
        padding-right: 0;
        justify-content: flex-end;
    }

    .service-stage-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-page-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .services-page-intro {
        margin-bottom: 48px;
    }

    .services-lifecycle-line {
        left: 28px;
        transform: none;
    }

    .service-stage {
        justify-content: flex-end;
        padding-left: 76px;
        padding-right: 0;
        min-height: auto;
    }

    .stage-left,
    .stage-right {
        padding-left: 76px;
        padding-right: 0;
        justify-content: flex-end;
    }

    .service-stage-marker {
        left: 28px;
        width: 48px;
        height: 48px;
        transform: translate(-50%, -50%);
        font-size: 0.82rem;
    }

    .service-stage-card,
    .services-block-header,
    .services-page-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .service-stage-card {
        max-width: 100%;
    }
}

/* =========================================
   DESIGN PAGE
========================================= */

.design-page-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

    .design-page-section.reveal {
        opacity: 0;
        transform: translateY(90px);
    }

        .design-page-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.design-page-intro {
    max-width: 900px;
    margin: 0 auto 68px;
    text-align: center;
}

    .design-page-intro h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 20px;
    }

    .design-page-intro p {
        font-size: 1.05rem;
        color: var(--slate-700);
        line-height: 1.85;
        margin-bottom: 16px;
    }

        .design-page-intro p:last-child {
            margin-bottom: 0;
        }

.design-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.design-detail-card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .design-detail-card h3 {
        font-size: 1.32rem;
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .design-detail-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.design-qbd-panel {
    margin-bottom: 64px;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.08), rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    padding: 42px 38px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.design-qbd-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.design-feature-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.design-qbd-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.design-qbd-content p {
    color: var(--slate-700);
    line-height: 1.85;
    margin-bottom: 14px;
}

    .design-qbd-content p:last-child {
        margin-bottom: 0;
    }

.design-examples-block,
.design-deliverables-block {
    margin-bottom: 64px;
}

.design-block-header {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

    .design-block-header h2 {
        font-size: clamp(1.9rem, 3vw, 2.8rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .design-block-header p {
        color: var(--slate-700);
        line-height: 1.8;
        font-size: 1rem;
    }

.design-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.design-example-card {
    background: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .design-example-card h3 {
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .design-example-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.design-deliverables-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

    .design-deliverables-list span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(var(--primary-blue-rgb), 0.08);
        border: 1px solid rgba(var(--primary-blue-rgb), 0.14);
        color: var(--primary-blue);
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.2;
    }

.design-page-cta {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

    .design-page-cta h3 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .design-page-cta p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 22px;
    }

@media (max-width: 1100px) {
    .design-example-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .design-page-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .design-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .design-page-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .design-page-intro {
        margin-bottom: 52px;
    }

    .design-detail-card,
    .design-example-card,
    .design-qbd-panel,
    .design-page-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .design-deliverables-list {
        gap: 10px;
    }

        .design-deliverables-list span {
            font-size: 0.86rem;
            padding: 10px 14px;
        }
}

/* =========================================
   IMPLEMENTATION PAGE
========================================= */

.implementation-page-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

    .implementation-page-section.reveal {
        opacity: 0;
        transform: translateY(90px);
    }

        .implementation-page-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.implementation-page-intro {
    max-width: 900px;
    margin: 0 auto 68px;
    text-align: center;
}

    .implementation-page-intro h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 20px;
    }

    .implementation-page-intro p {
        font-size: 1.05rem;
        color: var(--slate-700);
        line-height: 1.85;
        margin-bottom: 16px;
    }

        .implementation-page-intro p:last-child {
            margin-bottom: 0;
        }

.implementation-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.implementation-detail-card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .implementation-detail-card h3 {
        font-size: 1.32rem;
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .implementation-detail-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.implementation-focus-panel {
    margin-bottom: 64px;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.08), rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    padding: 42px 38px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.implementation-focus-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.implementation-feature-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.implementation-focus-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.implementation-focus-content p {
    color: var(--slate-700);
    line-height: 1.85;
    margin-bottom: 14px;
}

    .implementation-focus-content p:last-child {
        margin-bottom: 0;
    }

.implementation-examples-block,
.implementation-deliverables-block {
    margin-bottom: 64px;
}

.implementation-block-header {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

    .implementation-block-header h2 {
        font-size: clamp(1.9rem, 3vw, 2.8rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .implementation-block-header p {
        color: var(--slate-700);
        line-height: 1.8;
        font-size: 1rem;
    }

.implementation-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.implementation-example-card {
    background: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .implementation-example-card h3 {
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .implementation-example-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.implementation-deliverables-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

    .implementation-deliverables-list span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(var(--primary-blue-rgb), 0.08);
        border: 1px solid rgba(var(--primary-blue-rgb), 0.14);
        color: var(--primary-blue);
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.2;
    }

.implementation-page-cta {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

    .implementation-page-cta h3 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .implementation-page-cta p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 22px;
    }

@media (max-width: 1100px) {
    .implementation-example-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .implementation-page-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .implementation-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .implementation-page-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .implementation-page-intro {
        margin-bottom: 52px;
    }

    .implementation-detail-card,
    .implementation-example-card,
    .implementation-focus-panel,
    .implementation-page-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .implementation-deliverables-list {
        gap: 10px;
    }

        .implementation-deliverables-list span {
            font-size: 0.86rem;
            padding: 10px 14px;
        }
}

/* =========================================
   VALIDATION PAGE
========================================= */

.validation-page-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

    .validation-page-section.reveal {
        opacity: 0;
        transform: translateY(90px);
    }

        .validation-page-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.validation-page-intro {
    max-width: 920px;
    margin: 0 auto 68px;
    text-align: center;
}

    .validation-page-intro h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 20px;
    }

    .validation-page-intro p {
        font-size: 1.05rem;
        color: var(--slate-700);
        line-height: 1.85;
        margin-bottom: 16px;
    }

        .validation-page-intro p:last-child {
            margin-bottom: 0;
        }

.validation-lifecycle-block,
.validation-systems-block,
.validation-case-block,
.validation-regulatory-block,
.validation-why-block {
    margin-bottom: 64px;
}

.validation-block-header {
    max-width: 880px;
    margin: 0 auto 34px;
    text-align: center;
}

    .validation-block-header h2 {
        font-size: clamp(1.9rem, 3vw, 2.8rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .validation-block-header p {
        color: var(--slate-700);
        line-height: 1.8;
        font-size: 1rem;
    }

.validation-lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.validation-lifecycle-card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .validation-lifecycle-card h3 {
        font-size: 1.28rem;
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .validation-lifecycle-card p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .validation-lifecycle-card ul,
    .validation-system-card ul {
        margin: 0;
        padding-left: 20px;
    }

    .validation-lifecycle-card li,
    .validation-system-card li {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 6px;
    }

.validation-deliverables-panel {
    margin-bottom: 64px;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.08), rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    padding: 42px 38px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.validation-deliverables-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.validation-feature-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.validation-deliverables-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 22px;
}

.validation-deliverables-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

    .validation-deliverables-list span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(var(--primary-blue-rgb), 0.08);
        border: 1px solid rgba(var(--primary-blue-rgb), 0.14);
        color: var(--primary-blue);
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.2;
    }

.validation-systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.validation-system-card,
.validation-case-card,
.validation-why-card,
.validation-page-cta {
    background: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .validation-system-card h3,
    .validation-case-card h3,
    .validation-why-card h3 {
        font-size: 1.22rem;
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

.validation-case-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.validation-case-card {
    max-width: 920px;
    margin: 0 auto;
}

    .validation-case-card p,
    .validation-why-card p {
        color: var(--slate-700);
        line-height: 1.85;
        margin-bottom: 14px;
    }

        .validation-case-card p:last-child,
        .validation-why-card p:last-child {
            margin-bottom: 0;
        }

.validation-regulatory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto;
}

    .validation-regulatory-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.52);
        border: 1px solid rgba(var(--primary-blue-rgb), 0.14);
        color: var(--primary-blue);
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.2;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

.validation-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.validation-page-cta {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.40);
}

    .validation-page-cta h3 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .validation-page-cta p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 22px;
    }

@media (max-width: 1100px) {
    .validation-systems-grid,
    .validation-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .validation-page-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .validation-lifecycle-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .validation-page-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .validation-page-intro {
        margin-bottom: 52px;
    }

    .validation-lifecycle-card,
    .validation-system-card,
    .validation-case-card,
    .validation-why-card,
    .validation-deliverables-panel,
    .validation-page-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .validation-deliverables-list,
    .validation-regulatory-tags {
        gap: 10px;
    }

        .validation-deliverables-list span,
        .validation-regulatory-tags span {
            font-size: 0.86rem;
            padding: 10px 14px;
        }
}

/* =========================================
   ASSURANCE PAGE
========================================= */

.assurance-page-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

    .assurance-page-section.reveal {
        opacity: 0;
        transform: translateY(90px);
    }

        .assurance-page-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.assurance-page-intro {
    max-width: 920px;
    margin: 0 auto 68px;
    text-align: center;
}

    .assurance-page-intro h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 20px;
    }

    .assurance-page-intro p {
        font-size: 1.05rem;
        color: var(--slate-700);
        line-height: 1.85;
        margin-bottom: 16px;
    }

        .assurance-page-intro p:last-child {
            margin-bottom: 0;
        }

.assurance-pillars-block,
.assurance-examples-block,
.assurance-outputs-block,
.assurance-regulatory-block {
    margin-bottom: 64px;
}

.assurance-block-header {
    max-width: 880px;
    margin: 0 auto 34px;
    text-align: center;
}

    .assurance-block-header h2 {
        font-size: clamp(1.9rem, 3vw, 2.8rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .assurance-block-header p {
        color: var(--slate-700);
        line-height: 1.8;
        font-size: 1rem;
    }

.assurance-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.assurance-pillar-card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .assurance-pillar-card h3 {
        font-size: 1.28rem;
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .assurance-pillar-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.assurance-focus-panel {
    margin-bottom: 64px;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.08), rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    padding: 42px 38px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.assurance-focus-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.assurance-feature-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.assurance-focus-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.assurance-focus-content p {
    color: var(--slate-700);
    line-height: 1.85;
    margin-bottom: 14px;
}

    .assurance-focus-content p:last-child {
        margin-bottom: 0;
    }

.assurance-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.assurance-example-card,
.assurance-page-cta {
    background: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .assurance-example-card h3 {
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .assurance-example-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.assurance-outputs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

    .assurance-outputs-list span,
    .assurance-regulatory-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(var(--primary-blue-rgb), 0.08);
        border: 1px solid rgba(var(--primary-blue-rgb), 0.14);
        color: var(--primary-blue);
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.2;
    }

.assurance-regulatory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.assurance-page-cta {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.40);
    padding: 40px 32px;
}

    .assurance-page-cta h3 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .assurance-page-cta p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 22px;
    }

@media (max-width: 1100px) {
    .assurance-example-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .assurance-page-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .assurance-pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .assurance-page-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .assurance-page-intro {
        margin-bottom: 52px;
    }

    .assurance-pillar-card,
    .assurance-example-card,
    .assurance-focus-panel,
    .assurance-page-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .assurance-outputs-list,
    .assurance-regulatory-tags {
        gap: 10px;
    }

        .assurance-outputs-list span,
        .assurance-regulatory-tags span {
            font-size: 0.86rem;
            padding: 10px 14px;
        }
}

/* =========================================
   COMPLIANCE PAGE
========================================= */

.compliance-page-section {
    padding: 160px 0 100px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon( 0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100% );
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

    .compliance-page-section.reveal {
        opacity: 0;
        transform: translateY(90px);
    }

        .compliance-page-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.compliance-page-intro {
    max-width: 920px;
    margin: 0 auto 68px;
    text-align: center;
}

    .compliance-page-intro h2 {
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: var(--primary-blue);
        margin: 10px 0 20px;
    }

    .compliance-page-intro p {
        font-size: 1.05rem;
        color: var(--slate-700);
        line-height: 1.85;
        margin-bottom: 16px;
    }

        .compliance-page-intro p:last-child {
            margin-bottom: 0;
        }

.compliance-pillars-block,
.compliance-examples-block,
.compliance-outputs-block,
.compliance-regulatory-block {
    margin-bottom: 64px;
}

.compliance-block-header {
    max-width: 880px;
    margin: 0 auto 34px;
    text-align: center;
}

    .compliance-block-header h2 {
        font-size: clamp(1.9rem, 3vw, 2.8rem);
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .compliance-block-header p {
        color: var(--slate-700);
        line-height: 1.8;
        font-size: 1rem;
    }

.compliance-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.compliance-pillar-card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .compliance-pillar-card h3 {
        font-size: 1.28rem;
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .compliance-pillar-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.compliance-focus-panel {
    margin-bottom: 64px;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.08), rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 28px;
    padding: 42px 38px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.compliance-focus-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.compliance-feature-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.compliance-focus-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.compliance-focus-content p {
    color: var(--slate-700);
    line-height: 1.85;
    margin-bottom: 14px;
}

    .compliance-focus-content p:last-child {
        margin-bottom: 0;
    }

.compliance-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.compliance-example-card,
.compliance-page-cta {
    background: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

    .compliance-example-card h3 {
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 12px;
    }

    .compliance-example-card p {
        color: var(--slate-700);
        line-height: 1.8;
    }

.compliance-outputs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

    .compliance-outputs-list span,
    .compliance-regulatory-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(var(--primary-blue-rgb), 0.08);
        border: 1px solid rgba(var(--primary-blue-rgb), 0.14);
        color: var(--primary-blue);
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.2;
    }

.compliance-regulatory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.compliance-page-cta {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.40);
    padding: 40px 32px;
}

    .compliance-page-cta h3 {
        font-size: clamp(1.7rem, 3vw, 2.3rem);
        color: var(--primary-blue);
        margin-bottom: 14px;
    }

    .compliance-page-cta p {
        color: var(--slate-700);
        line-height: 1.8;
        margin-bottom: 22px;
    }

@media (max-width: 1100px) {
    .compliance-example-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .compliance-page-section {
        margin-top: -90px;
        padding: 130px 0 80px;
    }

    .compliance-pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .compliance-page-section {
        margin-top: -70px;
        padding: 110px 0 72px;
        clip-path: polygon( 0% 0%, 8% 3%, 20% 7%, 35% 10%, 50% 11%, 65% 10%, 80% 7%, 92% 3%, 100% 0%, 100% 100%, 0% 100% );
    }

    .compliance-page-intro {
        margin-bottom: 52px;
    }

    .compliance-pillar-card,
    .compliance-example-card,
    .compliance-focus-panel,
    .compliance-page-cta {
        padding: 24px;
        border-radius: 20px;
    }

    .compliance-outputs-list,
    .compliance-regulatory-tags {
        gap: 10px;
    }

        .compliance-outputs-list span,
        .compliance-regulatory-tags span {
            font-size: 0.86rem;
            padding: 10px 14px;
        }
}

/* Midnight Alternate Section */
.section-dark {
    padding: var(--section-padding);
    background: var(--deep-midnight);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--deep-midnight);
    color: var(--white);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-ribbon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    width: 100%;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--slate-400);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--accent-orange);
}

.footer-socials {
    display: flex;
    align-items: center;
}

.social-link {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--accent-orange);
}

/* Contact Section */
.contact-section {
    padding: 160px 0 120px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon(0% 0%, 5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%, 50% 12.5%, 65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%, 100% 0%, 100% 100%, 0% 100%);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

    .contact-section.reveal {
        opacity: 0;
        transform: translateY(100px);
    }

        .contact-section.reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: stretch;
    margin-top: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    padding: 50px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 65, 194, 0.08);
}

    .contact-info h2 {
        font-size: 2.2rem;
        color: var(--deep-midnight);
        margin-bottom: 10px;
    }

.company-name {
    color: var(--accent-orange);
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

    .info-item i {
        font-size: 1.5rem;
        color: var(--primary-blue);
        margin-top: 5px;
    }

    .info-item p {
        color: var(--slate-700);
        font-size: 1.1rem;
        line-height: 1.6;
    }

.email-link {
    color: var(--accent-orange);
    font-size: 1.1rem;
    font-weight: 600;
}

    .email-link:hover {
        text-decoration: underline;
    }

/* Careers Section */
.careers-section {
    padding: 160px 0 120px;
    background: var(--soft-ice-blue);
    position: relative;
    z-index: 30;
    margin-top: -120px;
    clip-path: polygon(0% 0%,
            5% 2.5%, 15% 6.5%, 25% 9.5%, 35% 11.5%,
            50% 12.5%,
            65% 11.5%, 75% 9.5%, 85% 6.5%, 95% 2.5%,
            100% 0%,
            100% 100%, 0% 100%);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.careers-section.reveal {
    opacity: 0;
    transform: translateY(100px);
}

.careers-section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.careers-container {
    max-width: 1000px;
    margin-top: 60px;
    /* Room for the deeper scoop */
}

.careers-intro {
    text-align: center;
    margin-bottom: 60px;
}

.careers-intro h2 {
    font-size: 2.8rem;
    color: var(--deep-midnight);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.careers-intro h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.careers-intro p {
    color: var(--slate-700);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Job Cards Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
    }
}

.job-card {
    padding: 35px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 65, 194, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 65, 194, 0.1);
    border-color: rgba(var(--primary-blue-rgb), 0.3);
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.job-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-ice-blue);
    color: var(--primary-blue);
    border-radius: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.job-card:hover .job-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.job-title {
    color: var(--deep-midnight);
    font-size: 1.3rem;
    line-height: 1.3;
}

.job-card:hover .job-title {
    color: var(--primary-blue);
}

.job-desc {
    color: var(--slate-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* Careers CTA */
.careers-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(var(--primary-blue-rgb), 0.05);
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-blue-rgb), 0.1);
}

.careers-cta p {
    font-size: 1.2rem;
    color: var(--slate-800);
    font-weight: 500;
}

.careers-cta .email-link {
    color: var(--accent-orange);
    font-weight: 700;
    margin: 0 5px;
}

.careers-cta .email-link:hover {
    text-decoration: underline;
}