:root {
    --bg-color: #050505;
    --text-color: #f5f5f7;
    --muted-color: #b5b5c3;
    --accent-color: #ff3d32;
    --accent-dark: #d62a20;
    --border-color: rgba(255, 61, 50, 0.4);
    --shadow-color: rgba(255, 61, 50, 0.35);
    --page-width: clamp(960px, 92vw, 1200px);
    --page-gutter: clamp(1.5rem, 4vw, 2.75rem);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    background: radial-gradient(circle at 70% 20%, rgba(255, 61, 50, 0.12), transparent 55%), var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

.home-wrapper {
    min-height: 100vh;
    padding: 1.25rem var(--page-gutter) 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    position: relative;
    background: transparent;
    margin: 0;
}

.home-wrapper > * {
    width: min(100%, var(--page-width));
    margin-left: auto;
    margin-right: auto;
}

.home-wrapper::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.8) 0%, rgba(5, 5, 5, 0.95) 90%, #050505 100%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .home-wrapper {
        padding: 1.25rem clamp(1.5rem, 5vw, 3.2rem) 1.5rem;
    }
}

.hero-section,
.platform-intro,
.current-opportunities,
.opportunity-track,
.about-section,
.ai-solutions,
.blog-section {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.home-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.95rem, 2.25vw, 1.85rem);
    position: relative;
    padding: 0.15rem 0;
}

.hero-section,
.platform-intro,
.current-opportunities,
.explore-pi,
.opportunity-track,
.about-section,
.ai-solutions,
.blog-section {
    width: min(100%, var(--page-width));
    margin-left: auto;
    margin-right: auto;
}

.home-header {
    padding-left: calc(var(--page-gutter) - 0.75rem);
    padding-right: clamp(0rem, 0.25vw, 0.15rem);
}

.home-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 3vw, 2.4rem);
}

.home-nav .nav-links {
    margin-right: clamp(1.5rem, 4vw, 2.5rem);
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.15rem 0;
    text-decoration: none;
    margin-left: clamp(-3.5rem, -7vw, -2.5rem);
}

.brand-logo {
    display: block;
    height: clamp(78px, 11vw, 120px);
    width: auto;
    filter: drop-shadow(0 18px 36px rgba(255, 61, 50, 0.28));
}

.home-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.95rem, 2.5vw, 2rem);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 auto;
}

.home-nav .nav-emblem {
    display: inline-block;
    width: clamp(30px, 4.2vw, 52px);
    height: clamp(30px, 4.2vw, 52px);
    filter: drop-shadow(0 3px 8px rgba(236, 28, 36, 0.25));
    object-fit: contain;
    transform: scaleX(-1);
    transform-origin: center;
}

.home-nav .nav-links > a,
.home-nav .nav-dropdown-toggle {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0.25rem 0;
}

.home-nav .nav-links > a:first-child {
    gap: 0.2rem;
}

.home-nav .nav-links > a:first-child .nav-emblem {
    margin-left: 0.2rem;
    margin-right: 4.05rem;
}

.home-nav .nav-links > a:first-child {
    margin-right: 0.5rem;
}

.home-nav .nav-links > a:hover,
.home-nav .nav-dropdown-toggle:hover,
.home-nav .nav-links > a.active {
    color: #ffffff;
}

.home-nav .nav-dropdown {
    position: relative;
}

.dropdown-caret {
    font-size: 0.65rem;
}

.home-nav .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    min-width: 210px;
    background: rgba(15, 23, 42, 0.96);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 24px 48px rgba(2, 6, 23, 0.55);
    padding: 0.75rem 0;
    display: none;
    z-index: 120;
}

.home-nav .nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.home-nav .nav-dropdown-menu a,
.home-nav .nav-dropdown-menu span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.92rem;
}

.home-nav .nav-dropdown-menu a:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
}

.home-nav .nav-dropdown-menu .nav-dropdown-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    opacity: 0.85;
    padding-bottom: 0.35rem;
}

.home-nav .coming-soon-link {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 120, 110, 0.85);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
}

.home-nav .coming-soon-link:hover {
    color: #ffffff;
}

.coming-soon-badge {
    background: rgba(255, 61, 50, 0.2);
    color: #ff6b60;
    border: 1px solid rgba(255, 61, 50, 0.4);
    font-size: 0.62rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    order: -1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: auto;
    margin-right: clamp(-6.25rem, -12vw, -4rem);
    transform: translateX(clamp(0.8rem, 2.4vw, 1.6rem));
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.primary-btn {
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 61, 50, 0.9), rgba(214, 42, 32, 0.85));
    box-shadow: 0 15px 30px rgba(214, 42, 32, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(214, 42, 32, 0.35);
}

.hero-section {
    width: 100%;
    position: relative;
    z-index: 5;
    padding: 0 clamp(2rem, 6vw, 6rem) 0 clamp(0rem, 1vw, 0.5rem);
}

.hero-layout {
    width: min(100%, var(--page-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    grid-template-areas: "sidebar content";
    gap: clamp(1rem, 3.2vw, 3.2rem);
    align-items: start;
    justify-items: start;
}

.hero-sidebar {
    grid-area: sidebar;
    display: flex;
    gap: clamp(1.6rem, 3.5vw, 2.2rem);
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-self: stretch;
    padding: 0.35rem 0 0.35rem clamp(0.6rem, 1.4vw, 1rem);
    margin: 0;
    font-size: 0.84rem;
    color: rgba(245, 245, 247, 0.78);
    position: relative;
}

.hero-sidebar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    bottom: 0.15rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 61, 50, 0.35) 0%, rgba(214, 42, 32, 0.75) 55%, rgba(255, 61, 50, 0.35) 100%);
    box-shadow: 0 0 12px rgba(255, 61, 50, 0.25);
}

.hero-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    min-width: clamp(150px, 17vw, 200px);
    flex: 0 0 auto;
}

.hero-sidebar ul:first-child {
    margin-left: clamp(0.35rem, 1vw, 0.75rem);
}

.hero-sidebar ul + ul {
    padding-left: clamp(0.35rem, 1vw, 0.7rem);
    margin-left: clamp(0.45rem, 1.1vw, 0.9rem);
}

.hero-sidebar li {
    letter-spacing: 0.03em;
    padding: 0;
    color: rgba(245, 245, 247, 0.78);
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-sidebar a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-sidebar a:hover,
.hero-sidebar li:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.hero-sidebar li.sidebar-heading {
    padding: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(245, 245, 247, 0.58);
    font-size: 0.72rem;
}

.hero-sidebar li.sidebar-heading + li {
    margin-top: 0.35rem;
}

.hero-content {
    grid-area: content;
    width: 100%;
    max-width: clamp(520px, 62vw, 720px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0;
    padding-left: clamp(0.15rem, 0.6vw, 0.45rem);
    margin-left: clamp(-17rem, -14vw, -9rem);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.45rem);
    margin: 0;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-content .underline {
    position: relative;
    white-space: nowrap;
}

.hero-content .underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 14px;
    background: radial-gradient(circle at 50% 70%, rgba(255, 61, 50, 0.35), rgba(255, 61, 50, 0));
    border-radius: 999px;
    filter: blur(0.2px);
}

.hero-subtext {
    margin: 1.25rem 0 2.5rem;
    font-size: 1.05rem;
    color: rgba(245, 245, 247, 0.68);
    max-width: 520px;
    text-align: left;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    align-items: center;
}

.hero-cta .cta {
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-cta .cta.primary {
    background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
    color: #ffffff;
    box-shadow: 0 15px 36px rgba(214, 42, 32, 0.35);
    border: 1px solid rgba(255, 61, 50, 0.55);
}

.hero-cta .cta.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 45px rgba(214, 42, 32, 0.4);
}

.hero-cta .cta.secondary {
    background: rgba(255, 61, 50, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 61, 50, 0.35);
}

.hero-cta .cta.secondary:hover {
    background: rgba(255, 61, 50, 0.15);
}

.hero-cta .cta.outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 61, 50, 0.5);
}

.hero-cta .cta.outline:hover {
    background: rgba(255, 61, 50, 0.12);
}

@media (min-width: 1400px) {
    .hero-layout {
        width: min(100%, 1400px);
        grid-template-columns: minmax(320px, 360px) 1fr;
        column-gap: 5rem;
    }

    .hero-sidebar {
        gap: clamp(2.4rem, 3vw, 3.1rem);
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
}


@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "sidebar";
        gap: 3rem;
        text-align: center;
    }

    .hero-sidebar {
        justify-content: center;
        flex-wrap: wrap;
        gap: clamp(1.6rem, 4vw, 2.5rem);
        max-width: 620px;
        margin: 0 auto;
        padding: 0.5rem 0;
    }

    .hero-sidebar::before {
        display: none;
    }

    .hero-sidebar ul {
        min-width: clamp(160px, 42vw, 220px);
    }

    .hero-sidebar ul + ul {
        border-left: 0;
        padding-left: 0;
        margin-left: 0;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 620px;
        padding-left: 0;
        margin-left: 0;
    }

    .powered-by {
        align-items: center;
        text-align: center;
    }
}



.platform-intro {
    margin-top: 4rem;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 61, 50, 0.18);
    background: radial-gradient(circle at 12% 18%, rgba(255, 61, 50, 0.22), transparent 55%),
                radial-gradient(circle at 88% 16%, rgba(56, 189, 248, 0.14), transparent 60%),
                linear-gradient(155deg, rgba(12, 12, 18, 0.95), rgba(7, 7, 10, 0.94));
    box-shadow: 0 25px 60px rgba(5, 5, 8, 0.45);
    isolation: isolate;
}

.platform-intro-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
    align-items: center;
    padding: clamp(2.8rem, 5vw, 4rem);
}

.platform-copy {
    display: grid;
    gap: 0.75rem;
}

.platform-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 150, 140, 0.9);
}

.platform-kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: rgba(255, 150, 140, 0.45);
}

.platform-copy h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    line-height: 1.2;
    color: #f5f5f7;
}

.platform-lead {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(245, 245, 247, 0.82);
    line-height: 1.7;
}

.platform-sub {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.6;
}

.platform-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.9rem 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 61, 50, 0.4);
    background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    max-width: max-content;
    box-shadow: 0 18px 40px rgba(214, 42, 32, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(214, 42, 32, 0.38);
}

.platform-media {
    display: flex;
    justify-content: center;
    justify-self: center;
    align-self: center;
    transform: none;
    margin: 0 auto;
}

.platform-media-circle {
    position: relative;
    width: clamp(240px, 28vw, 320px);
    aspect-ratio: 1;
    overflow: hidden;
    --pi-emblem-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23fff' d='M100 0H0v100a100 100 0 0 0 100-100Z' transform='rotate(90 50 50)'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--pi-emblem-mask);
    mask-image: var(--pi-emblem-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    background: none;
    box-shadow: 0 24px 50px rgba(5, 5, 8, 0.45);
}

.platform-media-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 35%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55));
    mix-blend-mode: multiply;
    pointer-events: none;
}

.platform-media-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
    background: rgba(0, 0, 0, 0.2);
}

.current-opportunities {
    margin-top: 4rem;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border-radius: 32px;
    background: radial-gradient(circle at 18% 12%, rgba(255, 61, 50, 0.22), transparent 58%),
                radial-gradient(circle at 82% 18%, rgba(255, 61, 50, 0.18), transparent 60%),
                linear-gradient(160deg, rgba(12, 12, 16, 0.96), rgba(8, 8, 10, 0.92));
    border: 1px solid rgba(255, 61, 50, 0.18);
    box-shadow: 0 24px 60px rgba(5, 5, 8, 0.45);
}

.current-opportunities-header {
    display: grid;
    gap: 0.75rem;
    max-width: 720px;
}

.current-opportunities-header .kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: rgba(255, 150, 140, 0.88);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.current-opportunities-header .kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: rgba(255, 150, 140, 0.45);
}

.current-opportunities-header h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.25;
}

.current-opportunities-header p {
    margin: 0;
    color: rgba(245, 245, 247, 0.78);
    line-height: 1.7;
}

.opportunities-stack {
    display: grid;
    gap: clamp(2rem, 3vw, 2.8rem);
}

.opportunities-group {
    display: grid;
    gap: 1.4rem;
}

.group-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.group-heading h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
}

.group-heading h3 i {
    color: var(--accent-color);
    font-size: 1.1em;
}

.group-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 61, 50, 0.16);
    border: 1px solid rgba(255, 61, 50, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.group-link:hover {
    background: rgba(255, 61, 50, 0.26);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(214, 42, 32, 0.3);
}

.opportunities-scroller {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    scroll-padding: 0.5rem;
}

.opportunities-scroller::-webkit-scrollbar {
    display: none;
}

.opportunity-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: clamp(280px, 30vw, 320px);
    padding: 1.4rem;
    border-radius: 22px;
    background: rgba(12, 12, 16, 0.92);
    border: 1px solid rgba(255, 61, 50, 0.18);
    box-shadow: 0 18px 40px rgba(5, 5, 8, 0.45);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    scroll-snap-align: start;
    position: relative;
}

.opportunity-card header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 61, 50, 0.14);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.chip-muted {
    background: rgba(255, 61, 50, 0.08);
    color: rgba(255, 245, 245, 0.78);
}

.opportunity-card h4 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #ffffff;
}

.opportunity-card .meta {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(245, 245, 247, 0.7);
    font-size: 0.9rem;
}

.opportunity-card .meta i {
    color: var(--accent-color);
}

.opportunity-card .timestamp {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(245, 245, 247, 0.55);
}

.card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 61, 50, 0.4);
    background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(214, 42, 32, 0.35);
}

.opportunities-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.85rem;
}

.opportunities-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255, 61, 50, 0.45);
    background: rgba(255, 61, 50, 0.1);
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.opportunities-dots button.active {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.75);
    transform: scale(1.25);
}

.opportunities-dots button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.course-card .meta i {
    color: rgba(255, 245, 245, 0.8);
}

@media (max-width: 1100px) {
    .opportunity-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: clamp(260px, 45vw, 360px);
    }
}

@media (max-width: 800px) {
    .current-opportunities {
        padding: clamp(2rem, 6vw, 2.5rem);
    }

    .group-link {
        width: 100%;
        justify-content: center;
    }

    .opportunities-scroller {
        gap: 1rem;
    }

    .opportunity-card {
        flex: 0 0 calc(100% - 1rem);
    }
}

.powered-by {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(245, 245, 247, 0.55);
    align-items: flex-start;
    text-align: left;
}

.powered-logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.powered-logo-image {
    width: clamp(149px, 4vw, 110px);
    height: auto;
    display: block;
}

.powered-logo-text {
    color: #f5f5f7;
}

.opportunity-track {
    margin-top: 4.5rem;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 15, 18, 0.92) 0%, rgba(8, 8, 10, 0.95) 60%);
    border: 1px solid rgba(255, 61, 50, 0.16);
    box-shadow: 0 28px 60px rgba(8, 8, 10, 0.45);
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

.opportunity-track .section-heading {
    max-width: 640px;
}

.opportunity-track .kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(255, 120, 110, 0.8);
}

.opportunity-track .kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: rgba(255, 120, 110, 0.4);
}

.opportunity-track h2 {
    margin: 1rem 0 0.6rem;
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.opportunity-track p {
    margin: 0;
    color: rgba(245, 245, 247, 0.68);
    line-height: 1.6;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

.opportunity-track .market-focus-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(1.4rem, 3.5vw, 2rem);
    margin-top: 1.75rem;
}

.opportunity-track .focus-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: rgba(12, 12, 18, 0.86);
    padding: 1.6rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 22px 45px rgba(8, 8, 10, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    color: #e2e8f0;
    background-image: radial-gradient(circle at 30% -20%, rgba(255, 61, 50, 0.22), transparent 60%);
}

.opportunity-track .focus-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 61, 50, 0.35);
}

.opportunity-track .focus-card .focus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 61, 50, 0.18);
    color: #ff796f;
    font-size: 1.3rem;
}

.opportunity-track .focus-card.active {
    border-color: rgba(255, 61, 50, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(255, 61, 50, 0.28);
}

.opportunity-track .focus-card.active .focus-icon {
    background: linear-gradient(135deg, #ff3d32, #ff796f);
    color: #0f172a;
}

.opportunity-track .focus-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.opportunity-track .focus-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.55;
}

.opportunity-track .focus-card .focus-meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.85);
}

.opportunity-track .focus-panels {
    position: relative;
    display: grid;
    gap: 2rem;
}

.opportunity-track .focus-panel {
    display: none;
    background: radial-gradient(circle at 15% -10%, rgba(255, 61, 50, 0.18), transparent 60%), rgba(12, 12, 18, 0.94);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: clamp(2rem, 4vw, 2.6rem);
    box-shadow: 0 32px 70px rgba(8, 8, 10, 0.4);
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.opportunity-track .focus-panel.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.opportunity-track .focus-panel .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 61, 50, 0.18);
    color: rgba(255, 200, 195, 0.92);
}

.opportunity-track .focus-panel h3 {
    margin: 1.1rem 0 0.8rem;
    font-size: 1.5rem;
}

.opportunity-track .focus-panel p {
    margin: 0;
    color: rgba(245, 245, 247, 0.75);
    line-height: 1.7;
}

.opportunity-track .focus-panel ul {
    margin: 1.5rem 0 0;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.7rem;
    color: rgba(245, 245, 247, 0.78);
}

.opportunity-track .focus-panel ul li {
    display: flex;
    gap: 0.35rem;
}

.opportunity-track .focus-panel ul li::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff715e;
}

.opportunity-track .focus-panel .focus-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.9rem;
}

.opportunity-track .focus-panel .focus-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.75rem;
    border-radius: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 61, 50, 0.38);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.opportunity-track .focus-panel .focus-actions .btn.btn-outline:hover {
    background: rgba(255, 61, 50, 0.12);
    border-color: rgba(255, 61, 50, 0.6);
}

.opportunity-track .focus-panel .focus-actions .btn.btn-primary {
    background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
    box-shadow: 0 22px 45px rgba(255, 61, 50, 0.3);
    border-color: rgba(255, 61, 50, 0.55);
}

.opportunity-track .focus-panel .focus-actions .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 55px rgba(255, 61, 50, 0.38);
}

.about-section {
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 61, 50, 0.12);
    background: linear-gradient(135deg, rgba(15, 15, 18, 0.9), rgba(8, 8, 12, 0.92));
    box-shadow: 0 30px 70px rgba(8, 8, 12, 0.5);
}

.about-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 61, 50, 0.18), transparent 55%), radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.12), transparent 55%);
    z-index: 0;
    opacity: 0.8;
}

.about-content {
    position: relative;
    z-index: 1;
    padding: clamp(2.8rem, 5vw, 3.8rem);
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

.about-header {
    max-width: 700px;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 140, 130, 0.85);
}

.about-kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: rgba(255, 140, 130, 0.45);
}

.about-header h2 {
    margin: 1rem 0 0.7rem;
    font-size: clamp(2.1rem, 4vw, 2.9rem);
}

.about-header p {
    margin: 0;
    color: rgba(245, 245, 247, 0.72);
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

.about-card {
    background: rgba(12, 12, 18, 0.9);
    border-radius: 22px;
    border: 1px solid rgba(255, 61, 50, 0.16);
    padding: 1.9rem;
    display: grid;
    gap: 0.75rem;
    box-shadow: 0 24px 55px rgba(8, 8, 12, 0.42);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 61, 50, 0.4);
    box-shadow: 0 28px 65px rgba(255, 61, 50, 0.28);
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 61, 50, 0.16);
    color: rgba(255, 140, 130, 0.9);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-card h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.4;
    color: #ffffff;
}

.about-card p {
    margin: 0;
    color: rgba(245, 245, 247, 0.75);
    line-height: 1.7;
}

.about-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
    color: rgba(245, 245, 247, 0.78);
}

.about-card ul li {
    display: flex;
    gap: 0.55rem;
}

.about-card ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff6b60;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.about-stat {
    background: rgba(12, 12, 18, 0.82);
    border-radius: 18px;
    border: 1px solid rgba(255, 61, 50, 0.12);
    padding: 1.6rem;
    text-align: center;
    box-shadow: 0 20px 45px rgba(8, 8, 12, 0.38);
}

.about-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.about-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(245, 245, 247, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-footer {
    background: linear-gradient(160deg, rgba(12, 12, 16, 0.94), rgba(9, 9, 12, 0.9));
    border-top: 1px solid rgba(255, 61, 50, 0.22);
    margin-top: auto;
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
    width: 100%;
    align-self: stretch;
}

.home-footer::before,
.home-footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.45;
    pointer-events: none;
}

.home-footer::before {
    width: 420px;
    height: 420px;
    top: -220px;
    left: -160px;
    background: rgba(255, 61, 50, 0.24);
}

.home-footer::after {
    width: 360px;
    height: 360px;
    bottom: -200px;
    right: -140px;
    background: rgba(214, 42, 32, 0.22);
}

.home-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1.6rem, 2.5vw, 2.1rem) 0.9rem;
    display: grid;
    gap: clamp(1rem, 2vw, 1.6rem);
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.home-footer-col {
    display: grid;
    gap: 0.75rem;
}

.home-footer-col h4 {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.86);
}

.home-footer-text {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.7;
    font-size: 0.8rem;
}

.home-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.home-footer-col li a,
.home-footer-text a {
    color: rgba(245, 245, 247, 0.75);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.home-footer-col li a:hover,
.home-footer-text a:hover {
    color: rgba(255, 110, 100, 0.95);
    transform: translateX(4px);
}

.home-footer-brand {
    display: inline-flex;
    align-items: center;
}

.home-footer-brand img {
    height: 104px;
    width: auto;
}

.home-footer-social {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.home-footer-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 61, 50, 0.12);
    border: 1px solid rgba(255, 61, 50, 0.28);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.home-footer-social a:hover {
    transform: translateY(-3px);
    background: rgba(255, 61, 50, 0.25);
    border-color: rgba(255, 61, 50, 0.45);
}

.home-footer-contact {
    display: grid;
    gap: 0.35rem;
    color: rgba(245, 245, 247, 0.78);
    font-size: 0.8rem;
}

.home-footer-contact i {
    color: rgba(255, 110, 100, 0.95);
    margin-right: 0.5rem;
}

.home-footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.home-footer-cta .cta {
    flex: 1 1 140px;
    justify-content: center;
    border-radius: 14px;
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    border: 1px solid rgba(255, 61, 50, 0.32);
    background: rgba(255, 61, 50, 0.15);
    color: rgba(255, 245, 245, 0.9);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-footer-cta .cta:hover {
    background: rgba(255, 61, 50, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 61, 50, 0.3);
}

.home-footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.65rem 0.9rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 61, 50, 0.16);
    color: rgba(238, 238, 238, 0.68);
    font-size: 0.8rem;
}

.home-footer-link {
    color: rgba(238, 238, 238, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-footer-link:hover {
    color: rgba(255, 110, 100, 0.95);
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(23, 32, 58, 0.88));
    color: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 35px rgba(8, 13, 29, 0.45);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1200;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.95), rgba(129, 140, 248, 0.95));
    border-color: transparent;
}

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

    .home-footer-cta {
        flex-direction: column;
    }

    .home-footer-cta .cta {
        width: 100%;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

    border-style: dashed;
    border-color: rgba(56, 189, 248, 0.28);
}

    background: rgba(56, 189, 248, 0.18);
    color: #38bdf8;
}

    border-style: dashed;
    border-color: rgba(255, 61, 50, 0.3);
}

    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.32);
    color: rgba(199, 210, 254, 0.95);
}

    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.28);
    color: rgba(190, 227, 248, 0.95);
}

    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: clamp(1rem, 2.4vw, 1.6rem);
    width: 100%;
    margin: 0;
    padding: 0.4rem 0 0.6rem;
    overflow-x: auto;
}

    height: 6px;
}

    background: rgba(15, 15, 20, 0.4);
    border-radius: 999px;
}

    background: rgba(255, 61, 50, 0.35);
    border-radius: 999px;
}

    background: rgba(12, 12, 18, 0.86);
    border-radius: 18px;
    border: 1px solid rgba(255, 61, 50, 0.12);
    padding: 1.35rem;
    text-align: center;
    box-shadow: 0 18px 38px rgba(8, 8, 12, 0.32);
    display: grid;
    gap: 0.45rem;
    flex: 0 0 200px;
}

    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 61, 50, 0.18);
    color: rgba(255, 120, 110, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
}

    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(245, 245, 247, 0.62);
}

    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-start;
    margin-top: 1.2rem;
    padding: 0.2rem 0 0.4rem;
}

    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 61, 50, 0.35);
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
    box-shadow: 0 18px 36px rgba(214, 42, 32, 0.32);
}

    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(214, 42, 32, 0.36);
}

    background: transparent;
}

    background: rgba(255, 61, 50, 0.12);
}
.blog-section {
    margin-top: 6rem;
    background: radial-gradient(circle at 20% -10%, rgba(255, 61, 50, 0.18), transparent 55%), #060606;
    border: 1px solid rgba(255, 61, 50, 0.12);
    border-radius: 28px;
    padding: clamp(2.8rem, 5vw, 4rem);
    display: grid;
    gap: clamp(2.5rem, 4vw, 3.5rem);
    box-shadow: 0 25px 60px rgba(6, 6, 6, 0.55);
}

.blog-header {
    max-width: 640px;
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 61, 50, 0.75);
}

.blog-kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: rgba(255, 61, 50, 0.4);
}

.blog-header h2 {
    font-size: clamp(2.1rem, 4vw, 2.85rem);
    margin: 1rem 0 0.75rem;
}

.blog-header p {
    margin: 0;
    color: rgba(245, 245, 247, 0.7);
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

.blog-card {
    background: linear-gradient(180deg, rgba(15, 15, 18, 0.85) 0%, rgba(12, 12, 16, 0.92) 100%);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 20px;
    padding: 1.75rem;
    display: grid;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 61, 50, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 61, 50, 0.35);
    box-shadow: 0 24px 48px rgba(255, 61, 50, 0.12);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 61, 50, 0.15);
    color: rgba(255, 120, 110, 0.9);
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.4;
}

.blog-card p {
    margin: 0;
    color: rgba(245, 245, 247, 0.7);
    line-height: 1.6;
}

.blog-card .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(148, 163, 184, 0.85);
}

.blog-card .meta .link {
    color: #f5f5f7;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
    position: relative;
    z-index: 1;
}

.blog-card .meta .link:hover {
    color: rgba(255, 120, 110, 0.92);
}

.blog-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.blog-cta .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.85rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 61, 50, 0.35);
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-cta .cta.outline {
    background: transparent;
}

.blog-cta .cta.outline:hover {
    background: rgba(255, 61, 50, 0.12);
}

.blog-cta .cta.secondary {
    background: rgba(255, 61, 50, 0.12);
}

.blog-cta .cta.secondary:hover {
    background: rgba(255, 61, 50, 0.2);
}

.ai-solutions {
    position: relative;
    margin: 4.5rem auto;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 61, 50, 0.14);
    background: linear-gradient(140deg, rgba(14, 14, 18, 0.95), rgba(7, 7, 10, 0.94));
    box-shadow: 0 34px 70px rgba(8, 8, 12, 0.55);
}

.ai-solutions-background {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 61, 50, 0.24), transparent 55%),
        radial-gradient(circle at 82% 22%, rgba(56, 189, 248, 0.14), transparent 60%),
        linear-gradient(170deg, rgba(12, 12, 16, 0.96), rgba(8, 8, 12, 0.95));
    opacity: 0.95;
    z-index: 0;
}

.ai-solutions-background::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 48% 110%, rgba(255, 61, 50, 0.12), transparent 68%);
    opacity: 0.85;
}

.ai-solutions-background .ai-particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.ai-solutions-inner {
    position: relative;
    z-index: 2;
    padding: clamp(2.4rem, 4.5vw, 3.4rem);
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.ai-solutions-header {
    max-width: 720px;
}

.ai-solutions-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 140, 130, 0.85);
    position: relative;
    padding-left: 2.4rem;
}

.ai-solutions-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 1px;
    background: rgba(255, 140, 130, 0.45);
}

.ai-solutions-header h2 {
    margin: 1rem 0 0.65rem;
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    color: #f5f5f7;
}

.ai-solutions-header p {
    margin: 0;
    color: rgba(245, 245, 247, 0.72);
    line-height: 1.7;
}

.ai-solutions-banner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 3vw, 2.5rem);
    padding: clamp(1.9rem, 3vw, 2.6rem);
    border-radius: 26px;
    background: rgba(12, 12, 18, 0.9);
    border: 1px solid rgba(255, 61, 50, 0.18);
    box-shadow: 0 24px 55px rgba(8, 8, 12, 0.42);
    align-items: start;
}

.ai-solutions-banner-copy {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.ai-solutions-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 61, 50, 0.18);
    color: rgba(255, 221, 214, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-solutions-banner h3 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #f8fafc;
}

.ai-solutions-banner p {
    margin: 0;
    color: rgba(245, 245, 247, 0.72);
    line-height: 1.65;
}

.ai-solutions-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
    color: rgba(245, 245, 247, 0.78);
}

.ai-solutions-list li {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.ai-solutions-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff6b60;
    font-size: 0.8rem;
}

.ai-solutions-actions {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    grid-template-columns: repeat(auto-fit, minmax(210px, max-content));
    justify-content: flex-start;
    justify-items: stretch;
}

.ai-solutions-actions .cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.9rem;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
    color: #ffffff;
    border: 1px solid rgba(255, 61, 50, 0.55);
    box-shadow: 0 16px 32px rgba(214, 42, 32, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-solutions-actions .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(214, 42, 32, 0.38);
}

.ai-solutions-scroller {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.ai-solutions-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(1rem, 2.5vw, 1.6rem);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.65rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 61, 50, 0.45) rgba(15, 15, 20, 0.4);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    align-items: stretch;
    flex: 1 1 auto;
    scroll-padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
}

.ai-solutions-grid:focus-visible {
    outline: 2px solid rgba(255, 61, 50, 0.55);
    outline-offset: 4px;
}

.ai-solutions-grid::-webkit-scrollbar {
    height: 6px;
}

.ai-solutions-grid::-webkit-scrollbar-track {
    background: rgba(15, 15, 20, 0.4);
    border-radius: 999px;
}

.ai-solutions-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 61, 50, 0.45);
    border-radius: 999px;
}

.ai-solutions-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 61, 50, 0.35);
    background: rgba(255, 61, 50, 0.12);
    color: #ff6b60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.ai-solutions-arrow:hover {
    transform: translateY(-2px);
    background: rgba(255, 61, 50, 0.2);
    box-shadow: 0 18px 35px rgba(255, 61, 50, 0.28);
}

.ai-solutions-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.ai-card {
    background: rgba(12, 12, 18, 0.9);
    border-radius: 22px;
    border: 1px solid rgba(255, 61, 50, 0.16);
    padding: 1.9rem;
    display: grid;
    gap: 0.75rem;
    box-shadow: 0 18px 45px rgba(8, 8, 12, 0.38);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 0 0 clamp(240px, 26vw, 300px);
    scroll-snap-align: start;
}

.ai-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 61, 50, 0.4);
    box-shadow: 0 24px 55px rgba(255, 61, 50, 0.24);
}

.ai-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 61, 50, 0.16);
    color: rgba(255, 140, 130, 0.9);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ai-card h3 {
    margin: 0;
    font-size: 1.28rem;
    color: #ffffff;
}

.ai-card p {
    margin: 0;
    color: rgba(245, 245, 247, 0.75);
    line-height: 1.7;
}

.ai-solutions-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.ai-stat {
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(10, 10, 14, 0.92);
    border: 1px solid rgba(255, 61, 50, 0.14);
    text-align: center;
    box-shadow: 0 20px 45px rgba(8, 8, 12, 0.4);
    display: grid;
    gap: 0.35rem;
}

.ai-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b60;
}

.ai-stat-label {
    font-size: 0.9rem;
    color: rgba(245, 245, 247, 0.7);
}

.faq-section {
    margin: clamp(3.8rem, 6vw, 5rem) auto;
    padding: clamp(2.6rem, 5vw, 3.6rem);
    max-width: clamp(1100px, 92vw, 1280px);
    border-radius: 36px;
    background: linear-gradient(150deg, rgba(12, 12, 16, 0.96), rgba(70, 12, 12, 0.9));
    border: 1px solid rgba(255, 61, 50, 0.2);
    box-shadow: 0 34px 74px rgba(8, 8, 12, 0.52);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 20%, rgba(255, 61, 50, 0.22), transparent 55%),
                radial-gradient(circle at 82% 18%, rgba(255, 61, 50, 0.18), transparent 60%);
    opacity: 0.85;
}

.faq-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2.2rem, 4vw, 3rem);
}

.faq-header {
    text-align: center;
    max-width: clamp(560px, 60vw, 720px);
    margin: 0 auto;
    display: grid;
    gap: 0.9rem;
}

.faq-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 61, 50, 0.32);
    background: rgba(255, 61, 50, 0.14);
    color: rgba(255, 200, 195, 0.92);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #f8fafc;
}

.faq-header p {
    margin: 0;
    color: rgba(245, 245, 247, 0.72);
    line-height: 1.75;
}

.faq-grid {
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.2rem);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-item {
    padding: clamp(1.4rem, 3.2vw, 1.9rem);
    border-radius: 22px;
    background: rgba(12, 12, 16, 0.9);
    border: 1px solid rgba(255, 61, 50, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 61, 50, 0.12);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 2.5vw, 1.3rem);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% -10%, rgba(255, 61, 50, 0.28), transparent 65%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 61, 50, 0.32);
    box-shadow: 0 22px 48px rgba(255, 61, 50, 0.24);
}

.faq-item:hover::after {
    opacity: 1;
}

.faq-icon {
    width: clamp(52px, 6vw, 64px);
    height: clamp(52px, 6vw, 64px);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 61, 50, 0.24), rgba(214, 42, 32, 0.26));
    color: #ff8176;
    box-shadow: 0 16px 32px rgba(255, 61, 50, 0.26);
}

.faq-icon i {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.faq-copy {
    display: grid;
    gap: 0.75rem;
}

.faq-copy h3 {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: #ffffff;
}

.faq-copy p {
    margin: 0;
    color: rgba(245, 245, 247, 0.78);
    line-height: 1.7;
}

.faq-copy strong {
    color: #ff9a92;
}

.faq-copy a {
    color: #ff7a70;
    font-weight: 600;
    text-decoration: none;
}

.faq-copy a:hover {
    color: #ff9f94;
    text-decoration: underline;
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-intelligent-particle,
.ai-neural-node,
.ai-connection-line,
.ai-processing-core {
    will-change: transform, opacity;
}

@keyframes aiNeuralPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    25% { transform: scale(1.08) rotate(8deg); opacity: 0.75; }
    50% { transform: scale(0.96) rotate(-6deg); opacity: 0.5; }
    75% { transform: scale(1.04) rotate(4deg); opacity: 0.7; }
}

@keyframes aiDataFlow {
    0% { background-position: 0 0; }
    100% { background-position: 280px 280px; }
}

@keyframes aiParticleIntelligent {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(12px, -18px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-16px, -26px) scale(0.95); opacity: 0.35; }
    75% { transform: translate(18px, -10px) scale(1.08); opacity: 0.7; }
}

@keyframes aiAlgorithmSpin {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes whatsapp-float-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-icon {
    color: #ffffff;
    font-size: 1.9rem;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.94);
    color: #e2e8f0;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 18px 30px rgba(2, 6, 23, 0.45);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-6px, -50%);
}

.whatsapp-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1.5rem;
}

.whatsapp-modal.active {
    display: flex;
}

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

.whatsapp-modal-content {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.88));
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    max-width: 520px;
    width: 100%;
    color: #f8fafc;
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.55);
    overflow: hidden;
}

@keyframes whatsappModalSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-modal-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.7rem 1.9rem 1.4rem;
    border-bottom: 1px solid rgba(56, 189, 248, 0.18);
}

.whatsapp-modal-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(37, 211, 102, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 1.8rem;
}

.whatsapp-modal-title h3 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
}

.whatsapp-modal-title p {
    margin: 0;
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.9rem;
}

.whatsapp-modal-close {
    margin-left: auto;
    background: rgba(15, 23, 42, 0.75);
    color: rgba(226, 232, 240, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-modal-close:hover {
    background: rgba(37, 211, 102, 0.15);
    transform: scale(1.05);
}

.whatsapp-modal-body {
    padding: 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.whatsapp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.whatsapp-feature {
    background: rgba(15, 23, 42, 0.65);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(56, 189, 248, 0.12);
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.92rem;
}

.whatsapp-feature i {
    color: #38bdf8;
}

.whatsapp-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.whatsapp-modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.whatsapp-modal-form label {
    font-weight: 500;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.92rem;
}

.whatsapp-modal-form .form-control,
.whatsapp-modal-form select {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.6);
    color: #f8fafc;
    font: inherit;
}

.whatsapp-modal-form .form-control:focus,
.whatsapp-modal-form select:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.whatsapp-modal-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
}

.whatsapp-modal-form .checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
}

.whatsapp-connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 30px rgba(18, 140, 126, 0.45);
}

.whatsapp-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 34px rgba(18, 140, 126, 0.5);
}

.whatsapp-connect-btn i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .home-wrapper {
        padding: 2.75rem clamp(1.8rem, 4vw, 3rem);
    }

    .platform-intro {
        margin-top: 3rem;
    }

    .platform-intro-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem clamp(1.8rem, 4vw, 3rem);
        gap: 2.2rem;
    }

    .platform-media {
        justify-content: center;
        justify-self: center;
        align-self: center;
        transform: none;
    }

        padding: 2.3rem clamp(1.8rem, 4vw, 3.1rem);
    }

        padding: 0;
        gap: 0.35rem;
    }

        gap: 0.75rem;
        padding: 0.4rem 0;
    }

        flex-wrap: wrap;
        justify-content: center;
        padding: 0.3rem 0;
    }

        flex: 1 1 220px;
    }

    .home-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 0;
    }

    .hero-section {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }

    .hero-sidebar {
        order: 2;
        flex: 1 1 auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-sidebar ul {
        min-width: min(240px, 100%);
        margin-left: 0;
    }

    .hero-content {
        order: 1;
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding-left: 0;
        margin-left: 0;
    }

    .hero-subtext {
        margin: 1.25rem 0 2.5rem;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .opportunity-track {
        margin-top: 3.5rem;
        padding: 2.3rem;
    }

    .about-section {
        margin-top: 3.5rem;
        border-radius: 26px;
    }

    .blog-section {
        margin-top: 4rem;
        padding: 2.4rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .ai-solutions {
        margin: 3.5rem auto;
    }

    .ai-solutions-inner {
        padding: 2.45rem clamp(1.8rem, 4vw, 3rem);
    }

    .ai-solutions-banner {
        grid-template-columns: 1fr;
    }

    .ai-solutions-grid {
        overflow-x: auto;
    }

    .faq-section {
        padding: 2.3rem clamp(1.6rem, 4vw, 2.8rem);
        border-radius: 28px;
    }

    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 680px) {
    .whatsapp-modal-content {
        width: 100%;
        margin: 0;
    }

    .whatsapp-modal-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 0.75rem;
    }

    .whatsapp-float {
        bottom: 120px;
        right: 24px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float-tooltip {
        display: none;
    }

    .whatsapp-modal-body {
        padding: 1.6rem;
    }

    .whatsapp-features-grid {
        grid-template-columns: 1fr;
    }

    .home-wrapper {
        padding: 2.5rem 1.5rem 3rem;
    }

    .home-header {
        gap: 1.25rem;
    }

    .home-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .home-nav .nav-links {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .home-nav .nav-emblem {
        width: clamp(28px, 8vw, 40px);
        height: clamp(28px, 8vw, 40px);
    }

    .brand-block {
        margin-left: 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-section {
        gap: 2rem;
    }

    .hero-sidebar {
        order: 2;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .hero-sidebar ul {
        min-width: 100%;
        border-left: 0;
        padding-left: 0;
    }

    .hero-content {
        order: 1;
        margin-top: 0;
        transform: none;
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding-left: 0;
        margin-left: 0;
    }

    .hero-subtext {
        margin: 1.25rem 0 2.5rem;
        align-self: center;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        transform: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .cta {
        width: 100%;
        text-align: center;
    }

    .about-content {
        padding: 2.2rem 1.8rem;
    }

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .opportunity-track .market-focus-tabs {
        grid-template-columns: 1fr;
    }

    .opportunity-track .focus-panel .focus-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .opportunity-track .focus-panel .focus-actions .btn {
        justify-content: center;
    }

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

    .blog-section {
        padding: 2rem 1.5rem;
    }

    .blog-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-intro {
        margin-top: 2.6rem;
        border-radius: 28px;
    }

    .platform-intro-inner {
        gap: 2rem;
    }

    .platform-cta {
        width: 100%;
        justify-content: center;
    }

    .platform-media {
        justify-content: center;
        justify-self: center;
        align-self: center;
        transform: none;
    }

    .platform-media-circle {
        width: clamp(220px, 60vw, 280px);
    }

        padding: 2.1rem 1.5rem;
        gap: 2.2rem;
    }

        flex-direction: column;
        padding: 0;
        gap: 0.75rem;
    }

        width: 100%;
    }

        gap: 0.75rem;
        padding: 0.4rem 0;
    }

        width: 26px;
        height: 26px;
    }

        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
        padding: 0.3rem 0;
    }

        flex: 1 1 180px;
    }

        flex-direction: column;
        align-items: stretch;
    }

    .blog-cta .cta {
        width: 100%;
        text-align: center;
    }

    .ai-solutions {
        margin: 3rem auto;
    }

    .ai-solutions-inner {
        padding: 2.2rem 1.5rem;
    }

    .ai-solutions-banner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.5rem;
    }

    .ai-solutions-actions {
        grid-template-columns: 1fr;
    }

    .ai-solutions-stats {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .ai-solutions-scroller {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .ai-solutions-arrow {
        display: none;
    }

    .ai-solutions-grid {
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem 0.75rem;
    }

    .ai-card {
        flex: 0 0 clamp(260px, 80vw, 320px);
    }

    .faq-section {
        padding: 2rem 1.4rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .faq-item {
        padding: 1.3rem 1.2rem;
    }
}
.explore-pi {
    background: #050505;
    padding: clamp(4rem, 6vw, 6rem) 1.5rem;
}

.explore-pi-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: clamp(3rem, 4vw, 4.5rem);
}

.explore-pi-header {
    text-align: center;
    display: grid;
    gap: 0.85rem;
}

.explore-pi-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: #f8fafc;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.explore-pi-title i {
    color: #ef4444;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.explore-pi-subtitle {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(226, 232, 240, 0.75);
    font-size: 1.04rem;
    line-height: 1.8;
}

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

.explore-card {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.78));
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 22px 48px rgba(2, 6, 23, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(236, 72, 153, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 28px 56px rgba(2, 6, 23, 0.55);
}

.explore-card:hover::before {
    opacity: 1;
}

.explore-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 24px rgba(236, 68, 90, 0.35);
}

.explore-card-icon.flag {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.explore-card-icon.globe {
    background: linear-gradient(135deg, #f97316, #fb7185);
}

.explore-card-icon.shield {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.explore-card-icon.spark {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.explore-card h3 {
    margin: 0;
    font-size: 1.45rem;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.explore-card h3 span {
    color: #ef4444;
}

.explore-badge {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.explore-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.explore-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f8fafc;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.explore-card-link:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.6);
    transform: translateX(4px);
}

/* Disable lingering animations to keep the homepage responsive */
.home-wrapper *,
.home-wrapper *::before,
.home-wrapper *::after {
    animation: none !important;
}

@media (max-width: 768px) {
    .explore-pi {
        padding: 3.5rem 1.25rem;
    }

    .explore-card {
        padding: 1.75rem;
    }

    .home-wrapper {
        padding-left: clamp(1.5rem, 6vw, 2.25rem);
        padding-right: clamp(1.5rem, 6vw, 2.25rem);
    }

    .hero-sidebar {
        transform: none;
    }
}

.ai-solutions-scroller {
    position: relative;
    padding: 20px 50px;
}

.ai-solutions-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

/* Hide scrollbar */
.ai-solutions-grid::-webkit-scrollbar {
    display: none;
}

.ai-card {
    flex: 0 0 320px;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ai-card:hover {
    transform: translateY(-8px);
}

.ai-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 16px;
}

.ai-card-pill i {
    font-size: 1rem;
}

.ai-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.ai-card p {
    line-height: 1.6;
    flex-grow: 1;
}

.ai-solutions-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.ai-solutions-arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
}

.ai-solutions-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ai-solutions-arrow.prev {
    left: 10px;
}

.ai-solutions-arrow.next {
    right: 10px;
}

@media (max-width: 768px) {
    .ai-solutions-scroller {
        padding: 20px 20px;
    }

    .ai-card {
        flex: 0 0 280px;
        padding: 20px;
    }
}

 body.international-page {
            margin: 0;
            min-height: 100vh;
            background: radial-gradient(110% 140% at 50% 0%, rgba(12, 20, 40, 0.92) 0%, #04070f 55%, #01030a 100%);
            color: #e2e8f0;
            font-family: 'Poppins', sans-serif;
        }

        .international-hero {
            padding: clamp(6rem, 10vw, 8rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
            position: relative;
            overflow: hidden;
        }

        .international-hero::before,
        .international-hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(130px);
            opacity: 0.55;
            pointer-events: none;
        }

        .international-hero::before {
            width: 460px;
            height: 460px;
            top: -180px;
            left: -150px;
            background: rgba(79, 70, 229, 0.35);
        }

        .international-hero::after {
            width: 400px;
            height: 400px;
            bottom: -200px;
            right: -160px;
            background: rgba(14, 165, 233, 0.3);
        }

        .international-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: clamp(2.5rem, 5vw, 4rem);
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            align-items: center;
        }

        .international-hero-copy {
            display: grid;
            gap: 1.5rem;
        }

        .international-hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(129, 140, 248, 0.85);
        }

        .international-hero-kicker i {
            color: #60a5fa;
        }

        .international-hero-copy h1 {
            margin: 0;
            font-size: clamp(2.4rem, 5vw, 3.4rem);
            line-height: 1.1;
            color: #f8fafc;
        }

        .international-hero-copy p {
            margin: 0;
            max-width: 560px;
            color: rgba(226, 232, 240, 0.78);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .international-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .international-hero-actions .cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            min-width: 220px;
            padding: 0.9rem 1.75rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.94rem;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .international-hero-actions .cta.primary {
            background: linear-gradient(130deg, rgba(255, 61, 50, 0.96), rgba(131, 24, 67, 0.9));
            color: #fff;
            border-color: rgba(255, 61, 50, 0.45);
            box-shadow: 0 20px 38px rgba(131, 24, 67, 0.35);
        }

        .international-hero-actions .cta.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 28px 46px rgba(131, 24, 67, 0.45);
        }

        .international-hero-actions .cta.outline {
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            border-color: rgba(255, 61, 50, 0.45);
            box-shadow: 0 14px 28px rgba(10, 10, 10, 0.45);
        }

        .international-hero-actions .cta.outline:hover {
            transform: translateY(-2px);
            background: rgba(255, 61, 50, 0.14);
            border-color: rgba(255, 61, 50, 0.64);
        }

        .international-hero-stats {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .international-stat {
            background: linear-gradient(160deg, rgba(17, 25, 47, 0.92), rgba(23, 32, 58, 0.78));
            border: 1px solid rgba(99, 102, 241, 0.22);
            border-radius: 18px;
            padding: 1.6rem;
            display: grid;
            gap: 0.45rem;
            box-shadow: 0 24px 48px rgba(2, 6, 23, 0.45);
        }

        .international-stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #f8fafc;
        }

        .international-stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(148, 163, 184, 0.85);
        }

        .international-jobs {
            position: relative;
            padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(4rem, 7vw, 6rem);
        }

        .international-jobs::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(85% 120% at 15% 15%, rgba(96, 165, 250, 0.18), transparent 55%);
            opacity: 0.65;
            pointer-events: none;
        }

        .international-jobs .section-heading {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 780px;
            margin: 0 auto clamp(3rem, 5vw, 3.5rem);
        }

        .international-jobs .section-heading h2 {
            color: #f8fafc;
        }

        .international-jobs .section-heading p {
            color: rgba(226, 232, 240, 0.75);
        }

        .international-jobs-grid {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .international-card {
            background: linear-gradient(152deg, rgba(14, 14, 16, 0.96), rgba(66, 15, 22, 0.82));
            border: 1px solid rgba(255, 61, 50, 0.18);
            border-radius: 22px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 28px 56px rgba(10, 10, 12, 0.52);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .international-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(120% 120% at 110% -20%, rgba(255, 61, 50, 0.32), transparent 60%), radial-gradient(100% 90% at -15% 120%, rgba(244, 63, 94, 0.2), transparent 65%);
            opacity: 0.75;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .international-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 61, 50, 0.38);
            box-shadow: 0 34px 64px rgba(12, 12, 14, 0.65);
        }

        .international-card:hover::before {
            opacity: 1;
        }

        .international-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .international-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.9rem;
            border-radius: 999px;
            background: rgba(255, 61, 50, 0.15);
            border: 1px solid rgba(255, 61, 50, 0.32);
            color: rgba(255, 170, 164, 0.95);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
        }

        .international-card-header time {
            font-size: 0.78rem;
            color: rgba(203, 213, 225, 0.75);
            letter-spacing: 0.08em;
        }

        .international-card h3 {
            margin: 0;
            font-size: 1.45rem;
            color: #f8fafc;
            position: relative;
            z-index: 1;
        }

        .international-company {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: rgba(252, 165, 165, 0.88);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .international-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            position: relative;
            z-index: 1;
        }

        .international-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            background: rgba(20, 20, 24, 0.72);
            border: 1px solid rgba(255, 61, 50, 0.24);
            font-size: 0.78rem;
            color: rgba(226, 232, 240, 0.8);
        }

        .international-meta i {
            color: rgba(248, 113, 113, 0.85);
        }

        .international-card-description {
            margin: 0;
            color: rgba(226, 232, 240, 0.78);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .international-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
            padding: 0.65rem 1.4rem;
            border-radius: 999px;
            border: none;
            background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(131, 24, 67, 0.9));
            color: #ffffff;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            z-index: 1;
            box-shadow: 0 18px 34px rgba(131, 24, 67, 0.35);
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .international-card-link:hover {
            transform: translateX(4px);
            background: linear-gradient(135deg, rgba(255, 99, 71, 1), rgba(190, 18, 60, 0.95));
            box-shadow: 0 24px 42px rgba(131, 24, 67, 0.45);
        }

        .international-card-demo::after {
            content: 'Demo Role';
            position: absolute;
            top: 1.3rem;
            right: 1.3rem;
            background: linear-gradient(135deg, #fb7185, #ec4899);
            color: #fff;
            font-size: 0.68rem;
            letter-spacing: 0.08em;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            text-transform: uppercase;
        }

        .international-card-demo .international-pill {
            background: rgba(248, 113, 113, 0.15);
            border-color: rgba(248, 113, 113, 0.32);
            color: #fca5a5;
        }

        .international-note {
            margin-top: 2.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 1.25rem;
            border-radius: 12px;
            background: rgba(12, 20, 40, 0.72);
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: rgba(226, 232, 240, 0.75);
        }

        .international-note i {
            color: #60a5fa;
        }

        .international-empty {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(160deg, rgba(17, 25, 47, 0.9), rgba(23, 32, 58, 0.82));
            border: 1px solid rgba(99, 102, 241, 0.22);
            border-radius: 20px;
            box-shadow: 0 32px 56px rgba(8, 13, 29, 0.6);
            display: grid;
            gap: 1rem;
        }

        .international-empty i {
            font-size: 2.2rem;
            color: #60a5fa;
        }

        .international-empty h3 {
            margin: 0;
            font-size: 1.6rem;
            color: #f8fafc;
        }

        .international-empty p {
            margin: 0;
            color: rgba(226, 232, 240, 0.75);
        }

        .international-empty-actions {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .international-hero {
                padding-top: 5rem;
            }

            .international-hero-actions .cta {
                width: 100%;
            }

            .international-card {
                padding: 1.75rem;
            }

            .international-card-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        body.domestic-page {
            margin: 0;
            min-height: 100vh;
            background: radial-gradient(120% 140% at 50% 0%, rgba(30, 41, 72, 0.92) 0%, #060913 55%, #020617 100%);
            color: #e2e8f0;
            font-family: 'Poppins', sans-serif;
        }

        .domestic-hero {
            padding: clamp(6rem, 10vw, 8.5rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
            position: relative;
            overflow: hidden;
        }

        .domestic-hero::before,
        .domestic-hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.55;
            pointer-events: none;
        }

        .domestic-hero::before {
            width: 420px;
            height: 420px;
            top: -160px;
            left: -120px;
            background: rgba(236, 68, 90, 0.35);
        }

        .domestic-hero::after {
            width: 360px;
            height: 360px;
            bottom: -180px;
            right: -140px;
            background: rgba(14, 165, 233, 0.28);
        }

        .domestic-hero-inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: clamp(2.5rem, 5vw, 4rem);
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            align-items: center;
        }

        .domestic-hero-copy {
            display: grid;
            gap: 1.5rem;
        }

        .domestic-hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(248, 250, 252, 0.75);
        }

        .domestic-hero-kicker i {
            color: #ef4444;
        }

        .domestic-hero-copy h1 {
            margin: 0;
            font-size: clamp(2.4rem, 5vw, 3.4rem);
            line-height: 1.1;
            color: #f8fafc;
        }

        .domestic-hero-copy p {
            margin: 0;
            max-width: 520px;
            color: rgba(226, 232, 240, 0.8);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .domestic-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .domestic-hero-actions .cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            min-width: 200px;
            padding: 0.85rem 1.6rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.92rem;
            text-decoration: none;
            border: 1px solid transparent;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .domestic-hero-actions .cta.primary {
            background: linear-gradient(130deg, rgba(255, 61, 50, 0.96), rgba(131, 24, 67, 0.92));
            color: #fff;
            box-shadow: 0 18px 36px rgba(131, 24, 67, 0.35);
            border-color: rgba(255, 61, 50, 0.45);
        }

        .domestic-hero-actions .cta.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 24px 44px rgba(131, 24, 67, 0.45);
        }

        .domestic-hero-actions .cta.outline {
            background: transparent;
            color: rgba(255, 255, 255, 0.88);
            border-color: rgba(255, 61, 50, 0.45);
            box-shadow: 0 12px 26px rgba(8, 8, 8, 0.45);
        }

        .domestic-hero-actions .cta.outline:hover {
            transform: translateY(-2px);
            background: rgba(255, 61, 50, 0.12);
            border-color: rgba(255, 61, 50, 0.65);
        }

        .domestic-hero-stats {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .domestic-stat {
            background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 72, 0.78));
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 18px;
            padding: 1.6rem;
            display: grid;
            gap: 0.45rem;
            box-shadow: 0 24px 48px rgba(2, 6, 23, 0.45);
        }

        .domestic-stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #f8fafc;
            letter-spacing: 0.01em;
        }

        .domestic-stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(148, 163, 184, 0.85);
        }

        .domestic-jobs {
            position: relative;
            padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(4rem, 7vw, 6rem);
        }

        .domestic-jobs::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(80% 120% at 10% 10%, rgba(236, 68, 90, 0.18), transparent 55%);
            opacity: 0.6;
            pointer-events: none;
        }

        .domestic-jobs .section-heading {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 760px;
            margin: 0 auto clamp(3rem, 5vw, 3.5rem);
        }

        .domestic-jobs .section-heading h2 {
            color: #f8fafc;
        }

        .domestic-jobs .section-heading p {
            color: rgba(226, 232, 240, 0.75);
        }

        .domestic-jobs-grid {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .domestic-jobs .job-card {
            position: relative;
            display: flex;
            border-radius: 22px;
            padding: 2rem;
            background: linear-gradient(152deg, rgba(14, 14, 16, 0.96), rgba(66, 15, 22, 0.82));
            border: 1px solid rgba(255, 61, 50, 0.18);
            box-shadow: 0 28px 60px rgba(10, 10, 12, 0.55);
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .domestic-jobs .job-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(120% 120% at 110% -20%, rgba(255, 61, 50, 0.32), transparent 60%), radial-gradient(100% 90% at -10% 120%, rgba(244, 63, 94, 0.22), transparent 65%);
            opacity: 0.85;
            pointer-events: none;
        }

        .domestic-jobs .job-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 36px 70px rgba(12, 12, 14, 0.68);
            border-color: rgba(255, 61, 50, 0.38);
        }

        .domestic-jobs .job-card-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            width: 100%;
        }

        .domestic-jobs .job-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .domestic-jobs .job-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.85rem;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            border-radius: 999px;
            background: rgba(255, 61, 50, 0.15);
            color: rgba(255, 170, 164, 0.98);
            border: 1px solid rgba(255, 61, 50, 0.35);
            font-weight: 600;
        }

        .domestic-jobs .job-salary {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fecdd3;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(248, 113, 113, 0.14);
            border: 1px solid rgba(248, 113, 113, 0.32);
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
        }

        .domestic-jobs .job-card h4 {
            margin: 0;
            font-size: 1.25rem;
            color: #f8fafc;
            letter-spacing: 0.01em;
        }

        .domestic-jobs .job-card p {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            color: rgba(226, 232, 240, 0.82);
            font-size: 0.88rem;
        }

        .domestic-jobs .job-card p i {
            color: rgba(248, 113, 113, 0.8);
        }

        .domestic-jobs .job-card .job-company i {
            color: rgba(252, 165, 165, 0.85);
        }

        .domestic-jobs .job-card .job-location i {
            color: rgba(252, 211, 77, 0.9);
        }

        .domestic-jobs .job-card .job-meta.job-summary {
            align-items: flex-start;
            line-height: 1.6;
            color: rgba(226, 232, 240, 0.82);
        }

        .domestic-jobs .job-card .job-meta.job-summary i {
            margin-top: 0.25rem;
            color: rgba(248, 113, 113, 0.92);
        }

        .domestic-jobs .job-card-footer {
            margin-top: auto;
        }

        .domestic-jobs .job-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.2rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(131, 24, 67, 0.9));
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 16px 32px rgba(131, 24, 67, 0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
        }

        .domestic-jobs .job-card-link:hover {
            transform: translateX(4px);
            box-shadow: 0 22px 38px rgba(131, 24, 67, 0.5);
            background: linear-gradient(135deg, rgba(255, 99, 71, 1), rgba(190, 18, 60, 0.95));
        }

        .domestic-jobs.current-opportunities .job-card {
            min-height: 100%;
        }

        .domestic-jobs.current-opportunities .job-card .job-card-content {
            gap: 1.1rem;
        }

        .domestic-jobs.current-opportunities .job-card .job-card-header {
            gap: 0.85rem;
        }

        .domestic-jobs.current-opportunities .job-card .job-card-header .job-date {
            font-size: 0.7rem;
            color: rgba(203, 213, 225, 0.7);
            font-weight: 500;
            letter-spacing: 0.08em;
        }

        .domestic-jobs.current-opportunities .job-card .job-company,
        .domestic-jobs.current-opportunities .job-card .job-location,
        .domestic-jobs.current-opportunities .job-card .job-meta {
            font-size: 0.88rem;
        }

        .domestic-jobs.current-opportunities .job-card .job-meta.job-summary {
            align-items: flex-start;
            line-height: 1.65;
        }

        .domestic-jobs.current-opportunities .job-card .job-meta.job-summary i {
            margin-top: 0.2rem;
        }

        .domestic-jobs.current-opportunities .job-card .job-meta.job-date {
            color: rgba(148, 163, 184, 0.85);
        }

        .domestic-jobs.current-opportunities .job-card .job-meta.job-date i {
            color: rgba(96, 165, 250, 0.85);
        }

        .domestic-jobs.current-opportunities .job-card.job-card-demo .job-tag {
            background: rgba(249, 115, 22, 0.22);
            border-color: rgba(249, 115, 22, 0.38);
            color: #fb923c;
        }

        .domestic-jobs.current-opportunities .job-card.job-card-demo::after {
            content: 'Demo Role';
            position: absolute;
            top: 1.15rem;
            right: 1.15rem;
            background: linear-gradient(135deg, #f97316, #fb7185);
            color: #fff;
            font-size: 0.68rem;
            letter-spacing: 0.08em;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .domestic-note {
            margin-top: 2.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 1.25rem;
            border-radius: 12px;
            background: rgba(15, 23, 42, 0.72);
            border: 1px solid rgba(148, 163, 184, 0.18);
            color: rgba(226, 232, 240, 0.75);
        }

        .domestic-note i {
            color: #fbbf24;
        }

        .domestic-empty {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 72, 0.85));
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 20px;
            box-shadow: 0 32px 56px rgba(2, 6, 23, 0.55);
            display: grid;
            gap: 1rem;
        }

        .domestic-empty i {
            font-size: 2.2rem;
            color: #ef4444;
        }

        .domestic-empty h3 {
            margin: 0;
            font-size: 1.6rem;
            color: #f8fafc;
        }

        .domestic-empty p {
            margin: 0;
            color: rgba(226, 232, 240, 0.75);
        }

        .domestic-empty-actions {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .domestic-hero {
                padding-top: 5rem;
            }

            .domestic-hero-actions .cta {
                width: 100%;
            }

            .domestic-jobs.current-opportunities .job-card {
                padding: 1.6rem;
            }

            .domestic-jobs.current-opportunities .job-card .job-card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

/* ===== Premium Common Modal ===== */

.modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 999;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .modal {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 100%;
            overflow: hidden;
            animation: slideUp 0.4s ease;
            position: relative;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
            padding: 3px 22px 3px;
            color: white;
            position: relative;
        }

        .modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            /* background: linear-gradient(90deg, #667eea, #764ba2, #667eea); */
            background: linear-gradient(90deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85), rgba(255, 61, 50, 0.95));
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0%, 100% {
                background-position: 200% 0;
            }
            50% {
                background-position: -200% 0;
            }
        }

        .modal-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .modal-header p {
            font-size: 14px;
            opacity: 0.9;
            font-weight: 300;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 40px 30px;
        }

        .modal-body p {
            color: #555;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .modal-footer {
            padding: 30px;
            background: #f8f9fa;
            display: flex;
            gap: 15px;
            justify-content: flex-end;
        }

        .modal-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-cancel {
            background: #e0e0e0;
            color: #333;
        }

        .btn-cancel:hover {
            background: #d0d0d0;
            transform: translateY(-2px);
        }

        .btn-confirm {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background: linear-gradient(135deg, rgba(255, 61, 50, 0.95), rgba(214, 42, 32, 0.85));
            color: white;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .btn-confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
        }

        @media (max-width: 600px) {
            .modal {
                margin: 20px;
            }

            .modal-header h2 {
                font-size: 24px;
            }

            .modal-footer {
                flex-direction: column;
            }

            .modal-btn {
                width: 100%;
            }
        }


