:root {
    /* Corporate Palette */
    --color-black: #000000;
    --color-dark: #121212;
    --color-white: #ffffff;
    --color-gray-100: #f4f6f8;
    /* Slightly cooler gray for modern feel */
    --color-gray-800: #333333;

    /* Brand Accents */
    --accent-primary: #a100ff;
    /* Deep Electric Purple */
    --accent-secondary: #00e5ff;
    /* Cyan */
    --accent-gradient: linear-gradient(135deg, #a100ff, #00e5ff);

    /* Type */
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

/* Header */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-head);
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand-symbol {
    color: var(--accent-primary);
    font-weight: 900;
}

.nav-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-800);
}

.nav-desktop a:hover {
    color: var(--accent-primary);
}

.nav-contact {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-black);
    color: #fff !important;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.nav-contact:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
    border-bottom: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #000;
}

/* Client Section */
.section-clients {
    padding: 4rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.client-ticker {
    width: 100%;
    position: relative;
}

.client-track {
    display: flex;
    width: max-content;
    gap: 6rem;
    animation: scroll 60s linear infinite;
    align-items: center;
}

.client-logo {
    height: 32px;
    width: auto;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.client-logo-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.client-logo:hover,
.client-logo-text:hover {
    filter: grayscale(0%) opacity(1);
    color: var(--color-black);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.section-clients:hover .client-track {
    animation-play-state: paused;
}

/* Hero Block - Accenture/Detailed Style */
.hero-block {
    margin-top: 80px;
    min-height: 85vh;
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.hero-headline {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.highlight-text {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    max-width: 550px;
}

.hero-sub p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.5;
}

.btn-corporate {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(161, 0, 255, 0.3);
}

.btn-corporate:hover {
    background: var(--accent-secondary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

.btn-corporate .arrow {
    margin-left: 10px;
    transition: transform 0.2s;
}

.btn-corporate:hover .arrow {
    transform: translateX(5px);
}

.shape-slash {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60%;
    height: 100%;
    transform: translateY(-50%);
    background: url('assets/images/hero.webp') no-repeat center right;
    background-size: cover;
    opacity: 0.8;
    pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
}

/* Insights Section - clean white card grid */
.section-white {
    padding: 120px 0;
    background: var(--color-gray-100);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    display: inline-block;
}

.section-heading-dark {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 4rem;
    max-width: 900px;
    line-height: 1.1;
    color: var(--color-dark);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.corp-card {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.corp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(161, 0, 255, 0.2);
}

.card-image {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gradient-1 {
    background: url('assets/images/card-agents.webp') no-repeat center center;
    background-size: cover;
}

.gradient-2 {
    background: url('assets/images/card-scaling.webp') no-repeat center center;
    background-size: cover;
}

.gradient-3 {
    background: url('assets/images/card-security.webp') no-repeat center center;
    background-size: cover;
}

.card-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.card-body p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    color: var(--color-black);
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.corp-card:hover .read-more::after {
    width: 100%;
}

/* Capabilities - Dark Block */
.section-black {
    padding: 120px 0;
    background: var(--color-black);
    color: var(--color-white);
}

.section-label-light {
    color: var(--accent-secondary);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-heading-light {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.lead-text {
    font-size: 1.35rem;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.5;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.capability-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    transition: all 0.3s ease;
}

.capability-item:hover {
    border-top-color: var(--accent-primary);
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.capability-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Impact */
.section-impact {
    padding: 140px 0;
    background: var(--accent-primary);
    background: linear-gradient(135deg, #a100ff 0%, #7000b3 100%);
    color: #fff;
    text-align: center;
}

.impact-quote {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.quote-mark {
    font-size: 6rem;
    line-height: 1;
    opacity: 0.2;
    display: block;
    margin-bottom: -40px;
    font-family: serif;
}

.author {
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer-corporate {
    background: var(--color-dark);
    color: #fff;
    padding: 100px 0 30px;
    border-top: 1px solid #333;
}

.cta-area {
    margin-bottom: 6rem;
}

.cta-area h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2.5rem;
    line-height: 1;
}

.btn-corporate-white {
    padding: 16px 40px;
    background: #fff;
    color: #000;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-corporate-white:hover {
    background: var(--accent-secondary);
    color: #000;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
    margin-bottom: 4rem;
}

.footer-links-grid h4 {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: 1rem;
}

.link-list a {
    color: #ccc;
    font-size: 0.95rem;
}

.link-list a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}

/* Feature List Style (New) */
.feature-list {
    margin-top: 2rem;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    font-weight: 600;
    color: var(--color-gray-800);
}

.feature-list li::before {
    content: '/';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 900;
    font-size: 1.1em;
}

/* Team Section Styles */
.section-team {
    padding: 120px 0;
    background: #fdfdfd;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: 5rem;
    align-items: start;
}

.team-card {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.lead-figure {
    position: sticky;
    top: 120px;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1/1;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 2.5rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.team-bio {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-credentials {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.credential-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1rem;
}

.credential-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.credential-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.credential-tag:hover {
    background: var(--color-black);
    color: #fff;
    border-color: var(--color-black);
    transform: translateY(-2px);
}

/* --- Premium Form System --- */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.corporate-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.corporate-form label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.corporate-form .form-group:focus-within label {
    color: var(--accent-primary);
}

.corporate-form input,
.corporate-form select,
.corporate-form textarea {
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    background: #fdfdfd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-dark);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    outline: none;
}

.corporate-form input::placeholder,
.corporate-form textarea::placeholder {
    color: #bbb;
}

.corporate-form input:hover,
.corporate-form select:hover,
.corporate-form textarea:hover {
    border-color: #ccc;
    background: #ffffff;
}

.corporate-form input:focus,
.corporate-form select:focus,
.corporate-form textarea:focus {
    border-color: var(--accent-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(161, 0, 255, 0.08);
}

.corporate-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 18px) center;
    padding-right: 40px;
}

.corporate-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: #d32f2f;
}

/* Responsive */
/* Honeypot field - visually hidden but accessible to bots */
.hp-field {
    display: none !important;
    visibility: hidden !important;
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .container-fluid {
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .header-inner {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 1rem;
    }

    .nav-desktop.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 2rem;
        border-bottom: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 1001;
        padding: 5px;
    }

    .hero-block {
        margin-top: 80px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-container {
        padding: 2rem 0;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lead-figure {
        position: static;
    }

    .shape-slash {
        width: 100%;
        opacity: 0.2;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    /* Global Section Reduction */
    .section-white,
    .section-black,
    .section-team,
    .section-impact,
    .section-clients {
        padding: 40px 0;
    }

    /* Tighter gaps for grids */
    .card-grid,
    .team-grid,
    .split-layout {
        gap: 2rem;
    }

    .hero-block {
        margin-top: 60px;
        padding-bottom: 40px;
    }

    .hero-headline {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

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

    .section-heading-dark,
    .section-heading-light {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .cta-area h2 {
        font-size: 2.5rem;
    }

    /* Workshop Grid specific override */
    #workshops-home .card-grid {
        gap: 0.75rem;
        margin-bottom: 1.5rem !important;
        /* Override inline style */
    }

    /* Compact Card Design */
    .workshop-mini-card {
        padding: 1rem !important;
        border-radius: 6px !important;
    }

    .workshop-mini-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .workshop-mini-card p {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.4 !important;
    }
}