:root {
    /* Corporate Palette */
    --color-black: #000000;
    --color-dark: #121212;
    --color-white: #ffffff;
    --color-gray-100: #f2f2f2;
    --color-gray-800: #333333;

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

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

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

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.5;
}

/* 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: var(--color-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.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: 2rem;
    align-items: center;
}

.nav-desktop a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-black);
}

.nav-desktop a:hover {
    color: var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
}

.nav-contact {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-primary);
    color: #fff !important;
    font-weight: 600;
}

.nav-contact:hover {
    background: var(--accent-secondary);
    color: #000 !important;
    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: 3.5rem 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: 35px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    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.1);
}

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

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

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

/* Hero Block - Accenture 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%;
}

.hero-headline {
    font-size: 6rem;
    line-height: 0.95;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

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

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

.hero-sub p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-corporate {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 0;
    font-size: 1rem;
}

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

.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: 100px 0;
    background: var(--color-gray-100);
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.section-heading-dark {
    font-size: 3rem;
    margin-bottom: 4rem;
    max-width: 800px;
}

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

.corp-card {
    background: #fff;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.corp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    width: 100%;
}

.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: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gray-800);
    margin-bottom: 0.5rem;
}

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

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

.read-more {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.corp-card:hover .read-more {
    border-bottom-color: var(--accent-primary);
}

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

.section-label-light {
    color: var(--accent-secondary);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.section-heading-light {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

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

.capability-item:hover {
    border-top-color: var(--accent-primary);
    padding-left: 20px;
}

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

.cap-desc {
    color: #999;
}

/* Impact */
.section-impact {
    padding: 120px 0;
    background: var(--accent-primary);
    color: #fff;
    text-align: center;
}

.impact-quote {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

.author {
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Footer */
.footer-corporate {
    background: var(--color-dark);
    color: #fff;
    padding: 80px 0 30px;
}

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

.cta-area h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.btn-corporate-white {
    padding: 15px 40px;
    background: #fff;
    color: #000;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

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

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

.footer-links-grid h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.link-list a {
    color: #999;
}

.link-list a:hover {
    color: #fff;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #666;
}

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

    .menu-toggle {
        display: flex;
    }

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

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

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

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

/* Blog Specific Styles */
.article-page {
    background: #fff;
    color: #111;
}

.article-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--color-black);
    color: #fff;
    text-align: center;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.1;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.article-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #333;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content code {
    background: #f4f4f4;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
    color: #d63384;
}

.article-content pre {
    background: #0d0d12;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.back-link:hover {
    text-decoration: underline;
}

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

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

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.team-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@media (max-width: 900px) {
    .lead-figure {
        position: static;
    }
}

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

.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-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
}

.avatar-michael {
    background: var(--color-black);
}

.team-info {
    padding: 2rem;
}

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

.team-role {
    font-size: 0.9rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

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

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

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

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

.credential-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    background: #f8f8f8;
    border: 1px solid #eee;
    color: #444;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Corporate Form Styles */
.corporate-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-800);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-group select {
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' 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;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(161, 0, 255, 0.05);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #f0fff4;
    color: #28a745;
    border: 1px solid #c6f6d5;
}

.form-status.error {
    display: block;
    background: #fff5f5;
    color: #dc3545;
    border: 1px solid #fed7d7;
}

@media (max-width: 900px) {
    .corporate-form {
        padding: 2rem;
    }
}