/* Global Reset & Fonts */
:root {
    --bg-dark: #0f141a;
    --bg-darker: #0b0e12;
    --text-white: #ffffff;
    --text-grey: #8c8c8c;
    --accent: #ccff00;
    /* StadiumGo Neon */
    --accent-gold: #c5a35d;
    /* IGCP Gold-ish tone reference if needed, kept neon for brand */
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header (IGCP Like) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(15, 20, 26, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s;
}

/* Removed .logo-symbol */

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-contact {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.btn-contact:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

.locales {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.locales a {
    color: var(--text-grey);
}

.locales a.active {
    color: var(--text-white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    /* Ensure button is above menu if needed */
}

.mobile-menu-btn .line {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: 0.3s;
}

.mobile-menu-btn.active .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .line:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    padding: 10px 0;
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-grey);
    font-size: 0.9rem;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section (Split) */
.home-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header offset */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero_stadium_background.png') no-repeat center center/cover;
    filter: brightness(0.4);
    z-index: 0;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top roughly */
    width: 100%;
}

.hero-left {
    max-width: 50%;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-title .highlight {
    font-style: italic;
    /* Mimic outline font or serif if preferred, keeping simple italic for now */
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.cta-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.cta-link:hover .cta-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

/* Hero Right: Transactions Widget */
.hero-right {
    width: 35%;
}

.widget-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transaction-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.transaction-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--text-grey);
}

.flags {
    display: flex;
    align-items: center;
    gap: 5px;
}

.category {
    text-transform: uppercase;
    font-size: 0.7rem;
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 20px;
}

.card-body {
    margin-bottom: 20px;
}

.card-body .action {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 5px;
}

.company-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.deal-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-grey);
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 40px;
    width: 100%;
}

/* Remove the border from the last item if desired, or keep to match grid lines */
.stat-box:last-child {
    border-bottom: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 400;
    /* Removed bold */
    line-height: 1;
    color: var(--text-white);
    min-width: 400px;
    text-align: right;
}

.stat-desc {
    font-size: 1.6rem;
    /* Increased size */
    color: var(--text-grey);
    line-height: 1.4;
    max-width: 500px;
    text-align: left;
}

.stat-highlight {
    color: var(--accent);
    font-weight: 500;
}

.stat-highlight {
    color: var(--accent);
    /* Neon Green for key phrases */
    font-weight: 500;
    /* Subtle bold */
}

/* Updated Stats responsive - Ensure text wraps nicely with new highlights */
@media (max-width: 768px) {
    .stat-desc {
        font-size: 1.1rem;
    }
}


/* Responsive Stats */
@media (max-width: 768px) {
    .stat-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    .stat-number {
        font-size: 5rem;
        min-width: auto;
        text-align: left;
    }
}

/* Flag Icons Row */
/* Flag Icons Row */
.flag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
    padding-left: 10px;
}

.flag-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-dark);
    margin-right: -12px;
    /* Overlap effect */
    position: relative;
    transition: transform 0.3s, z-index 0.3s;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.flag-circle:hover {
    transform: scale(1.1) translateY(-5px);
    z-index: 10;
    border-color: var(--accent);
}

.flag-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.8rem;
    border: 2px solid var(--bg-dark);
    z-index: 1;
    margin-left: 5px;
}

/* Stats Intro Text */
.stats-intro {
    max-width: 100%;
    margin-bottom: 80px;
}

.stats-intro h2 {
    font-family: var(--font-main);
    /* Changed from Playfair Display to match Hero Title */
    font-size: 3rem;
    font-weight: 500;
    /* Match hero title weight */
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.stats-intro p {
    font-size: 1.1rem;
    /* Readable body text */
    color: var(--text-grey);
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .stats-intro h2 {
        font-size: 2rem;
    }
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
}

.section-subtitle {
    color: var(--text-grey);
}

.view-all {
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Sectors Grid */
.sectors-section {
    background: #151a21;
    /* Slightly lighter dark */
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.sector-card {
    background: var(--bg-dark);
    padding: 25px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    height: 140px;
}

.sector-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.sector-icon {
    font-size: 2rem;
    color: var(--text-white);
}

.sector-card span {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.sector-card:hover span,
.sector-card:hover .sector-icon {
    color: var(--accent);
}

/* Video Section */
.video-section {
    height: 500px;
    position: relative;
    background: #000;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero_stadium_background.png') no-repeat center bottom/cover;
    opacity: 0.6;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    cursor: pointer;
    transition: 0.3s;
}

.play-button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

/* Transactions List */
.transactions-list-section {
    background: var(--bg-dark);
}

.filters-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.filter-dropdown {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 10px;
}

.transactions-grid {
    display: grid;
    gap: 1px;
    /* Gap for borders if we used background trick, else just margin */
    background: var(--border-color);
    /* Grid border effect */
    border: 1px solid var(--border-color);
}

.tx-item {
    background: var(--bg-dark);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: 0.3s;
}

.tx-item:hover {
    background: #13181f;
}

.transactions-grid {
    grid-template-columns: repeat(3, 1fr);
}

.tx-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tx-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 4px 8px;
    background: var(--text-white);
    color: var(--bg-dark);
    font-weight: 700;
}

.tx-tag.outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.tx-label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.tx-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tx-body p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.tx-value {
    display: block;
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
    font-family: var(--font-main);
}

.tx-footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.why-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.why-card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 60px 0;
    font-size: 0.9rem;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: var(--text-white);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-grey);
    font-size: 1.1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-grey);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        padding: 40px;
        gap: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        padding: 15px 20px;
        margin-top: 15px;
        width: 100%;
        border-radius: 8px;
        /* Force visibility on mobile */
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .navbar-right .btn-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-img {
        height: 45px;
    }

    header {
        padding: 15px 0;
    }

    .home-hero-section {
        padding-top: 120px;
        height: auto;
        min-height: auto;
    }

    .hero-wrapper {
        flex-direction: column;
        padding-top: 20px;
    }

    .hero-left {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero-right {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .transactions-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

/* Pillar Sections (M&A, Credit, Tech) */
.pillar-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.pillar-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

/* Reversed Layout for middle section */
.pillar-section.reversed .pillar-container {
    flex-direction: row-reverse;
}

.pillar-text {
    flex: 1;
}

.pillar-title {
    font-family: var(--font-main);
    /* Normalized to DM Sans */
    font-size: 3rem;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.1;
}

.pillar-desc {
    color: var(--text-grey);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

.pillar-link:hover {
    gap: 15px;
    color: var(--text-white);
}

/* Inner Pages Styles */
.inner-page {
    background: var(--bg-dark);
}

.page-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background: var(--bg-dark);
}

.page-title {
    font-size: 3.5rem;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-grey);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Page Specifics */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(15, 20, 26, 0.9), rgba(15, 20, 26, 0.9)), url('hero_stadium_background.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    /* Increased slightly */
    font-family: var(--font-main);
    color: var(--text-white);
    max-width: 1000px;
    margin: 0 auto 30px;
    line-height: 1.4;
    /* More breathing room */
    font-weight: 400;
    /* Lighter weight for elegance */
    letter-spacing: -0.02em;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-grey);
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-main);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-grey);
    text-align: left;
    /* Better readability */
    line-height: 1.8;
}

.about-img {
    flex: 1;
    /* Removed fixed height to prevent cropping */
    height: auto;
    border-radius: 4px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
    /* Ensure fully visible */
}

/* MVV Section */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 4px;
    border-top: 2px solid var(--accent);
    /* Thinner accent line */
    transition: transform 0.3s ease, background 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.mvv-card h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 500;
}

.mvv-card p,
.mvv-card ul {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mvv-card ul li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* CEO Section */
.ceo-section {
    background: var(--bg-darker);
}

.ceo-name {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 500;
}

.ceo-role {
    font-size: 0.9rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.ceo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.ceo-link:hover {
    opacity: 1;
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .about-split {
        flex-direction: column;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }
}

.pillar-image {
    flex: 1;
    height: 500px;
    /* Tall elegant images */
    overflow: hidden;
    /* border-radius: 4px; Optional */
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Elegant Black & White feel */
    transition: 0.5s;
}

.pillar-section:hover .pillar-image img {
    filter: grayscale(0%);
    /* Color on hover */
    transform: scale(1.03);
}

/* M&A Page Process Styles */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.process-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: 0.3s;
}

.process-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-card:hover .process-number {
    color: rgba(35, 255, 0, 0.1);
    /* Slight accent hint */
}

.process-card h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 500;
    margin-top: 10px;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* Styled List for M&A */
.styled-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.styled-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-grey);
    font-size: 1.1rem;
}

.styled-list li::before {
    content: "\f00c";
    /* Font Awesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    /* Adjusted weight for check */
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.info-block {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.info-block h3 {
    font-family: var(--font-main);
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 500;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--text-grey);
}

.contact-list li i {
    color: var(--accent);
    font-size: 1.4rem;
    margin-top: 3px;
}

.contact-list li a {
    color: var(--text-white);
    text-decoration: none;
    transition: 0.3s;
}

.contact-list li a:hover {
    color: var(--accent);
}

.address-text {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.address-text strong {
    color: var(--text-white);
}

/* Form Styles */
.st-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.st-form input,
.st-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 4px;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: 0.3s;
}

.st-form input:focus,
.st-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.sector-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-item input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.checkbox-item span {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.btn-submit {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #fff;
}

.form-disclaimer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-top: 15px;
    line-height: 1.5;
}

.label-highlight {
    color: var(--accent) !important;
}

.process-card:hover .process-number {
    color: rgba(35, 255, 0, 0.1);
    /* Slight accent hint */
}

.process-card h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 500;
    margin-top: 10px;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* Styled List for M&A */
.styled-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.styled-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-grey);
    font-size: 1.1rem;
}

.styled-list li::before {
    content: "\f00c";
    /* Font Awesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    /* Adjusted weight for check */
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.9rem;
}

/* Responsive Pillars */
@media (max-width: 900px) {

    .pillar-container,
    .pillar-section.reversed .pillar-container {
        flex-direction: column-reverse;
        /* Text on bottom, Image on top for mobile? Or Text Top? Let's do Text top usually better but here Image first is impactful */
        gap: 40px;
    }

    .pillar-image {
        width: 100%;
        height: 300px;
    }

    .pillar-title {
        font-size: 2.2rem;
    }
}