/* Modern Corporate Design System - V2.5 Premium Polish */
:root {
    /* Palette Tuning: Metallic Gold & Slate */
    --primary: #0F172A;
    /* Slate 900 - Authority */
    --primary-light: #1E293B;
    /* Slate 800 */

    /* Metallic Gold (Less Orange, More Premium) */
    --accent: #B78628;
    --accent-light: #D4AF37;

    --bg-body: #FAF9F6;
    /* Off-White / Alabaster - Easier on eyes */
    --bg-surface: #F1F5F9;
    /* Slate 100 */
    --bg-surface-alt: #E2E8F0;
    /* Slate 200 */

    /* Higher Contrast Text */
    --text-main: #334155;
    /* Slate 700 */
    --text-heading: #020617;
    /* Slate 950 - Almost Black */
    --text-muted: #475569;
    /* Slate 600 - Darker than before */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-xl: 0 25px 30px -5px rgb(0 0 0 / 0.15), 0 10px 10px -5px rgb(0 0 0 / 0.1);

    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.65;
    /* Increased for comfort */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Animation Utility Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in;
    animation: fadeIn 1s forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Shimmer Button */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

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

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--bg-surface-alt);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 45px;
    /* Slightly bigger */
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 1px solid var(--bg-surface-alt);
    padding-left: 15px;
}

.nav-btn {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-btn:hover {
    background: var(--bg-surface);
    color: var(--accent);
}

.nav-cta {
    background-color: #DC2626;
    /* Red 600 */
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    background-color: #B91C1C;
    /* Red 700 */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.4);
}

/* Split Hero */
.hero-split {
    display: flex;
    min-height: 90vh;
    overflow: hidden;
    position: relative;
    background: var(--bg-body);
}

.hero-left {
    flex: 1.1;
    display: flex;
    align-items: center;
    padding: 60px 0 60px 8%;
    background: var(--bg-body);
}

.hero-right {
    flex: 0.9;
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Diagonal cut */
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    max-width: 650px;
    padding-right: 40px;
}

.pill-label {
    display: inline-block;
    padding: 8px 16px;
    background: #E2E8F0;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-heading {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent);
    position: relative;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--text-heading);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-text {
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
}

.btn-text:hover {
    color: var(--accent);
}

/* Hero Image */
.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.abstract-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary) 0%, transparent 50%);
    opacity: 0.6;
}

/* Abstract Visual (Legacy or potential overlap) */
.hero-abstract-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.abstract-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-anim {
    animation: pulse 8s infinite ease-in-out;
}

.abstract-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    /* very subtle glass */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 30px;
    border-radius: 16px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 38%;
    left: 18%;
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.float-anim-delayed {
    animation: float 7s ease-in-out infinite 1s;
}

.card-2 {
    bottom: 38%;
    right: 18%;
}

.abstract-card i {
    font-size: 1.8rem;
    color: var(--accent);
}

.abstract-card span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

/* Gap Section */
.gap-section {
    padding: 120px 0;
    background: #fff;
}

.gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gap-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.gap-text .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.gap-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: var(--bg-body);
    padding: 40px 30px;
    border-radius: var(--radius);
    border-top: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.stat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Zig Zag Section */
.zigzag-section {
    padding: 100px 0;
    background: var(--bg-body);
}

.zigzag-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 140px;
    gap: 80px;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zigzag-visual {
    flex: 1;
    min-height: 450px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bg-slate {
    background: var(--bg-surface-alt);
    color: var(--primary);
}

.bg-gold {
    background: #FDE68A;
    color: var(--accent);
}

/* Muted gold bg */

.large-icon {
    font-size: 10rem;
    opacity: 0.15;
    transform: rotate(-15deg);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}

.zigzag-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.modern-list {
    list-style: none;
    margin-top: 30px;
}

.modern-list li {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    font-size: 1.05rem;
}

.modern-list li i {
    color: var(--accent);
    margin-top: 5px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-pills span {
    padding: 8px 16px;
    border: 1px solid var(--bg-surface-alt);
    background: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Bento Grid */
.bento-section {
    padding: 120px 0;
    background: #fff;
}

.divider-center {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 25px auto 70px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
}

.bento-card {
    background: var(--bg-body);
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid transparent;
}

.bento-card:hover {
    border-color: var(--bg-surface-alt);
}

.span-2 {
    grid-column: span 2;
}

.bg-navy {
    background: var(--primary);
    color: white !important;
}

.bg-navy h3 {
    color: white;
}

.bg-navy p {
    color: rgba(255, 255, 255, 0.7);
}

.bento-card i {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.highlight-border {
    border: 2px solid var(--accent);
    background: white;
}

/* Split Impact */
.impact-section {
    padding: 120px 0;
    background: var(--bg-body);
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.impact-col {
    padding: 80px 60px;
    background: #fff;
}

.impact-col.dark {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact-col.dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.impact-col h4 {
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.impact-col.dark h4 {
    color: white;
}

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

.impact-col li {
    font-size: 1.15rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.marker {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--bg-surface-alt);
    opacity: 0.6;
}

.marker.gold {
    color: var(--accent);
    opacity: 1;
}

/* CTA */
.cta-section {
    padding: 140px 0;
    background: #fff;
    border-top: 1px solid var(--bg-surface-alt);
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.large {
    padding: 22px 56px;
    font-size: 1.15rem;
}

/* CTA Grid Layout */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    /* Increased from 900px to fill container */
    margin: 0 auto;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.cta-box.dark {
    background-color: #0F172A;
    /* Dark Navy */
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-box.dark:hover {
    background-color: #1E293B;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-full-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.cta-box.outline {
    background-color: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 100%;
}

.cta-box.outline:hover {
    background-color: var(--bg-surface);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

/* Decorative Bars */
.color-bars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.bar {
    width: 60px;
    height: 6px;
    border-radius: 4px;
}

.bar-1 {
    background-color: var(--primary);
}

.bar-2 {
    background-color: var(--accent);
}

.bar-3 {
    background-color: var(--text-muted);
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: var(--bg-body);
    border-top: 1px solid var(--bg-surface-alt);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 80px 20px;
    }

    .hero-right {
        height: 0;
        padding: 0;
        overflow: hidden;
        display: none;
    }

    .hero-heading {
        font-size: 2.8rem;
    }

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

    .gap-stats {
        gap: 20px;
    }

    .zigzag-row {
        flex-direction: column !important;
        gap: 50px;
    }

    .zigzag-visual {
        min-height: 300px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    .impact-wrapper {
        grid-template-columns: 1fr;
    }

    .impact-col {
        padding: 50px 30px;
    }
}