 /* Saintslink Digital Agency - Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;700;900&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400;1,8..60,500&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    /* overflow-x is intentionally set on body (line ~64), NOT on html.
     * Setting overflow on the html element creates a new scroll container
     * on iOS Safari which breaks position:fixed, scroll restoration, and
     * window.scrollTo() — causing the intermittent mobile freeze. */
    scroll-behavior: smooth;
    width: 100%;
    min-width: 0;
}

body {
    width: 100%;
    min-width: 0;
}

button,
input,
textarea,
select {
    min-width: 0;
}

:root {
    /* Colors from React Snippet & Logo */
    --bg-black: #121212;
    --bg-dark: #181818;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-900: #1e3a8a;
    --blue-950: #172554;

    --text-white: #ffffff;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    /* Cool gray for more premium feel */

    --primary-gradient: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    --surface-gradient: linear-gradient(180deg, rgba(23, 37, 84, 0.2), rgba(18, 18, 18, 0));

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(59, 130, 246, 0.4);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Duplicate html { scroll-behavior: smooth } removed — single declaration above is authoritative. */

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video,
canvas,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.text-gray {
    color: var(--text-gray);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .nav-container {
        padding: 0 1rem;
    }
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.04em;
    white-space: nowrap;
}

.nav-logo:hover {
    opacity: 0.9;
}

.logo-letter {
    display: inline-block;
    min-width: 0.3em;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
    will-change: transform, opacity, max-width;
}

.nav-logo.collapsed {
    gap: 0.01em;
}

.nav-logo.collapsed .logo-letter {
    transition-duration: 0.45s;
    transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
    min-width: 0;
    max-width: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transform: translateY(0) scale(0.6);
}

.nav-logo.collapsed .logo-letter:nth-child(2) { transition-delay: 0s; }
.nav-logo.collapsed .logo-letter:nth-child(3) { transition-delay: 0.03s; }
.nav-logo.collapsed .logo-letter:nth-child(4) { transition-delay: 0.06s; }
.nav-logo.collapsed .logo-letter:nth-child(5) { transition-delay: 0.09s; }
.nav-logo.collapsed .logo-letter:nth-child(6) { transition-delay: 0.12s; }
.nav-logo.collapsed .logo-letter:nth-child(8) { transition-delay: 0s; }
.nav-logo.collapsed .logo-letter:nth-child(9) { transition-delay: 0.03s; }
.nav-logo.collapsed .logo-letter:nth-child(10) { transition-delay: 0.06s; }

.nav-logo.collapsed .logo-letter:nth-child(1),
.nav-logo.collapsed .logo-letter:nth-child(7) {
    min-width: auto;
    max-width: none;
    opacity: 1;
    transform: translateY(0) scale(1);
    color: var(--blue-400);
    text-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
    transition-delay: 0.18s;
}

.nav-links {
    display: none;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        min-width: 0;
    }
}

.nav-links,
.nav-links > a,
.nav-dropdown,
.dropdown-trigger {
    min-width: 0;
}

.nav-links > a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links > a:hover,
.nav-links > a.active-nav {
    color: var(--blue-400);
    opacity: 1;
}

/* Desktop Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    opacity: 0.7;
}

.dropdown-trigger i {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger {
    opacity: 1;
    color: var(--blue-400);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown--solutions:hover .dropdown-content {
    transform: translateX(0) translateY(0);
}

/* Solutions mega menu */
.nav-dropdown--solutions .solutions-mega {
    width: max-content;
    max-width: calc(100vw - 2rem);
    left: 0;
    padding: 0;
    gap: 0;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.nav-dropdown--solutions:focus-within .dropdown-content,
.nav-dropdown--solutions.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.solutions-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.solutions-mega-card {
    padding: 1.35rem 1.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 132px;
    position: relative;
}

.solutions-mega-card:nth-child(4n) {
    border-right: none;
}

.solutions-mega-card:nth-child(n+5) {
    border-bottom: none;
}

.solutions-mega-card:hover,
.solutions-mega-card:focus-visible {
    background: rgba(96, 165, 250, 0.06);
    outline: none;
}

.solutions-mega-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 0.25rem;
}

.solutions-mega-card__icon i {
    width: 16px;
    height: 16px;
}

.solutions-mega-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
}

.solutions-mega-card__desc {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.45;
    flex: 1;
}

.solutions-mega-card__link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--blue-400);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: auto;
}

.solutions-mega-card__link i {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
}

.solutions-mega-card:hover .solutions-mega-card__link i {
    transform: translateX(3px);
}

.solutions-mega-footer {
    padding: 0.9rem 1.5rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.solutions-mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.solutions-mega-cta:hover {
    color: var(--blue-400);
}

.solutions-mega-cta i {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.solutions-mega-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .nav-dropdown--solutions .solutions-mega {
        width: 520px;
    }

    .solutions-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-mega-card:nth-child(4n) {
        border-right: 1px solid var(--border);
    }

    .solutions-mega-card:nth-child(2n) {
        border-right: none;
    }

    .solutions-mega-card:nth-child(n+5) {
        border-bottom: 1px solid var(--border);
    }

    .solutions-mega-card:nth-child(n+7) {
        border-bottom: none;
    }
}

.products-dropdown {
    width: 320px;
}

.dropdown-content.resources-dropdown {
    width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1rem;
    padding: 1.25rem;
}

.dropdown-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dropdown-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    transition: color 0.2s ease;
}

.dropdown-item:hover .item-title {
    color: var(--blue-400);
}

.item-desc {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.15rem;
    line-height: 1.3;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    inset: 80px 0 0 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-height: calc(100dvh - 80px);
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    overflow-y: auto;
    padding: 1.5rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-sizing: border-box;
    pointer-events: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    max-width: calc(100% - 1rem);
    text-align: center;
    padding: 0 0.5rem;
    flex-shrink: 0; /* Prevent container from shrinking smaller than expanded dropdowns */
}

.mobile-link,
.mobile-dropdown-trigger {
    width: 100%;
    word-break: break-word;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.mobile-link:hover {
    color: var(--blue-400);
}

/* Mobile Dropdown styles */
.mobile-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-dropdown-trigger {
    background: none;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.mobile-dropdown-trigger i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 0 0.75rem 0.5rem;
}

.mobile-dropdown-content a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.mobile-dropdown-content a:hover {
    color: var(--text-white);
}

.mobile-cta {
    margin-top: 1rem;
    width: 100%;
}

.nav-cta {
    background: white;
    color: black !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    background: var(--blue-500);
    color: white !important;
    transform: translateY(-3px);
}

/* Subtle Watermark */
.saintslink-watermark {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
    z-index: 10000;
    text-decoration: none;
    transition: color 0.3s ease;
    background: rgba(18, 18, 18, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.saintslink-watermark:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 8rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
    transition: var(--transition);
}

.hero-bg-logo img {
    width: 100%;
    height: auto;
}

.hero-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-400);
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 42rem;
    margin: 0 auto 3.5rem;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns a {
        width: 100%;
        max-width: 300px;
    }
}

.btn-primary {
    background: white;
    color: black;
    padding: 1.125rem 2.5rem;
    border-radius: 2px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background: var(--blue-500);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px var(--blue-600);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 2px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blue-400);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    width: 100%;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* Packages Section */
.packages {
    padding: 10rem 2rem;
    background: var(--bg-dark);
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-400);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.package-card:hover {
    border-color: var(--blue-500);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-5px);
}

.package-card.featured {
    border-color: var(--blue-500);
    background: rgba(59, 130, 246, 0.05);
}

.featured-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue-500);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 2px;
    letter-spacing: 0.1em;
}

.package-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.package-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.package-features li i {
    width: 18px;
    height: 18px;
    color: var(--blue-400);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.package-outcome {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-left: 3px solid var(--blue-500);
}

.package-price-dynamic {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-400);
    margin: 1.5rem 0;
}

.package-details-reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card.active .package-details-reveal {
    max-height: 1000px;
}

/* Services Categories */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-categories {
        grid-template-columns: 1fr;
    }
}

.service-category {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.service-category:hover {
    border-color: var(--blue-900);
}

.service-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    text-align: left;
}

.service-toggle h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.service-toggle .chevron {
    transition: transform 0.3s ease;
    color: var(--blue-400);
}

.service-category.active .chevron {
    transform: rotate(180deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.service-category.active .service-details {
    max-height: 500px;
    padding-bottom: 2rem;
}

.service-details ul {
    list-style: none;
    padding: 0 4rem;
}

.service-details li {
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-details li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.7rem;
    width: 4px;
    height: 4px;
    background: var(--blue-900);
    border-radius: 50%;
}

.service-details li:hover {
    color: white;
    transform: translateX(5px);
}

.service-desc {
    padding: 1.5rem 2rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.pricing-reveal {
    padding: 0 2rem 2rem;
    text-align: center;
}

.btn-pricing-reveal {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-400);
    border: 1px solid var(--blue-900);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-pricing-reveal:hover {
    background: var(--blue-500);
    color: white;
}

.pricing-range {
    display: none;
    margin-top: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.pricing-reveal.active .pricing-range {
    display: block;
}

.pricing-reveal.active .btn-pricing-reveal {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Services */
.additional-services {
    padding: 6rem 2rem;
    background: var(--bg-black);
    text-align: center;
}

.additional-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.additional-list span {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: #94a3b8;
    transition: var(--transition);
}

.additional-list span:hover {
    border-color: var(--blue-500);
    color: white;
    background: rgba(59, 130, 246, 0.05);
}

/* Approach Section */
.approach {
    padding: 10rem 2rem;
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--blue-500);
    transform: translateY(-5px);
}

.step-image {
    height: 150px;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.step-card:hover .step-image img {
    opacity: 1;
    transform: scale(1.05);
}

.step-content {
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.1);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
    padding: 10rem 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-card {
    height: 400px;
    background: radial-gradient(circle at top right, var(--blue-950), black);
    border-radius: 4px;
    border: 1px solid var(--border);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: scale(1.02);
    border-color: var(--blue-500);
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-bg {
    opacity: 0.5;
    transform: scale(1.1);
}

.portfolio-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-badge.live {
    background: #10b981;
    color: white;
}

.portfolio-badge.progress {
    background: #f59e0b;
    color: white;
}

.portfolio-badge.concept {
    background: #6366f1;
    color: white;
}

.portfolio-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.portfolio-services {
    font-size: 0.8rem;
    color: var(--blue-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Partners Page Specifics */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-500);
    background: rgba(59, 130, 246, 0.05);
}

.partner-image {
    height: 200px;
    width: 100%;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: var(--transition);
}

.partner-card:hover .partner-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-content {
    padding: 2rem;
}

.partner-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.partner-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    height: 2.7rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.referral-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-400);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 8rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-feature i {
    color: var(--blue-400);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 500px;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-black), transparent);
}

/* Contact Section */
.contact {
    scroll-margin-top: 120px;
    padding: 8rem 1rem;
    background: linear-gradient(0deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border);
}

.contact-container {
    max-width: 64rem;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

input,
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

/* Scalability Page Styles */
.scalability-hero {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 10rem;
    overflow: hidden;
}

.header-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.scalability-hero .header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.stat-item i {
    color: var(--blue-400);
    width: 32px;
    height: 32px;
}

.stat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Map Simulation Section */
.map-system-section {
    padding: 10rem 0;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
    min-height: 100dvh;
}

.parallax-nebula {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%),
        url('https://images.unsplash.com/photo-1464802686167-b939a67e06a1?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    filter: blur(2px) brightness(0.5);
    transition: transform 0.2s ease-out;
}

.map-system-container {
    max-width: 1600px;
    margin: 4rem auto;
    height: 900px;
    position: relative;
    z-index: 1;
}

/* Central Hub - SL HUB */
.sl-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-core {
    width: 140px;
    height: 140px;
    background: var(--bg-black);
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 2;
}

.hub-label {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: #fff;
    text-shadow: 0 0 10px #00d4ff;
}

.hub-status {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: #00d4ff;
    margin-top: 5px;
}

.hub-pulse {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: hub-pulse 4s infinite ease-in-out;
}

@keyframes hub-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
}

/* Nodes & Tiers */
.map-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    z-index: 50;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: scale(0.5);
}

.map-node.visible {
    opacity: 1;
    transform: scale(1);
}

.map-node.synergy-highlight {
    transform: scale(1.2);
    z-index: 150;
}

.map-node.synergy-highlight .node-icon {
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.map-node.synergy-highlight .node-label {
    color: #fff;
    opacity: 1;
}

.node-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    position: relative;
}

.node-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.map-node:hover .node-icon {
    border-color: #00d4ff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}

.map-node:hover .node-label {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Connections */
.map-connections {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.connection-line {
    stroke: rgba(0, 212, 255, 0.15);
    stroke-width: 1;
    transition: all 0.4s ease;
}

.connection-line.active {
    stroke: rgba(0, 212, 255, 0.6);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.4));
}

/* Deep Dive Panel */
.deep-dive-panel {
    position: absolute;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-left: 1px solid rgba(0, 212, 255, 0.3);
    padding: 3rem;
    backdrop-filter: blur(30px);
    z-index: 200;
    transition: right 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.deep-dive-panel.active {
    right: 0;
}

.close-panel {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.close-panel:hover {
    opacity: 1;
}

.panel-tag {
    font-size: 0.6rem;
    font-weight: 800;
    color: #00d4ff;
    letter-spacing: 0.25em;
}

#panelTitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 1rem 0 2.5rem;
    text-transform: uppercase;
    color: #fff;
}

.panel-section {
    margin-bottom: 2.5rem;
}

.panel-section label {
    display: block;
    font-size: 0.6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.panel-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.milestone-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ms-year {
    font-size: 0.65rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.ms-text {
    font-size: 0.9rem;
    color: #fff;
}

/* --- GROWTH SIMULATION V2 STYLES --- */

/* Color Groups */
:root {
    --group-cyan: #00d4ff;
    --group-gold: #ffd700;
    --group-emerald: #50c878;
    --group-purple: #bf40bf;
    --group-orange: #ff4500;
}

.map-node.group-cyan {
    --node-glow: var(--group-cyan);
}

.map-node.group-gold {
    --node-glow: var(--group-gold);
}

.map-node.group-emerald {
    --node-glow: var(--group-emerald);
}

.map-node.group-purple {
    --node-glow: var(--group-purple);
}

.map-node.group-orange {
    --node-glow: var(--group-orange);
}

.map-node {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(var(--node-glow), 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate(-50%, -50%) scale(0);
}

.map-node.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    /* Liquid Growth Emergence */
    pointer-events: all;
}

.map-node:hover {
    box-shadow: 0 0 30px var(--node-glow);
    border-color: var(--node-glow);
}

/* SL HUB Heartbeat */
@keyframes hubHeartbeat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        filter: brightness(1.3);
    }
}

.node-hub .hub-core {
    background: radial-gradient(circle, var(--group-cyan) 0%, transparent 70%);
    animation: hubHeartbeat 3s infinite ease-in-out;
}

/* Neural Pathways (SVG) */
.connection-polyline {
    fill: none;
    stroke-width: 1.5;
    opacity: 0.3;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 5px var(--group-cyan));
}

.connection-polyline.active {
    opacity: 1;
    stroke-width: 2.5;
}

@keyframes energyFlow {
    to {
        stroke-dashoffset: -100;
    }
}

.path-energy {
    stroke-dasharray: 4, 12;
    animation: energyFlow 3s linear infinite;
    pointer-events: none;
}

/* Satellite Orbiting */
@keyframes orbitRotation {
    from {
        transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
    }
}

.satellite-node {
    position: absolute;
    left: 50%;
    top: 50%;
    /* Orbit is handled via JS for radius but class for style */
}

/* Timeline Slider Enhancement */
.timeline-slider-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px 40px;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
}

#yearDisplay {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 4px;
    color: var(--group-cyan);
    text-shadow: 0 0 10px var(--group-cyan);
}

/* View Toggle */
.view-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.view-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.toggle-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #00d4ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* Map Views */
.map-view {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.map-view.active {
    opacity: 1;
    pointer-events: all;
    transform: none;
}

/* Global View Styling */
.global-view {
    padding: 2rem;
}

.world-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: var(--bg-black);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.world-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.world-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-black) 100%);
}

.geo-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 50;
    transition: transform 0.3s ease;
}

.geo-node:hover {
    transform: scale(1.15);
}

.node-dot {
    width: 12px;
    height: 12px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00d4ff;
}

.node-pulse {
    position: absolute;
    inset: -10px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: geo-pulse 2s infinite;
}

@keyframes geo-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.region-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    text-shadow: 0 0 10px #000;
}

.geo-node:hover .region-label {
    color: #fff;
    text-shadow: 0 0 10px #00d4ff;
}

/* Geo Node Positions */
[data-region="africa"] {
    top: 60%;
    left: 52%;
}

[data-region="europe"] {
    top: 32%;
    left: 49%;
}

[data-region="americas"] {
    top: 40%;
    left: 25%;
}

[data-region="asia"] {
    top: 38%;
    left: 75%;
}

[data-region="middle-east"] {
    top: 45%;
    left: 58%;
}

/* Timeline Slider */
.timeline-slider-container {
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-label {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #00d4ff;
    margin-bottom: 2rem;
}

.slider-wrapper {
    width: 600px;
    position: relative;
    margin-bottom: 2rem;
}

.timeline-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.timeline-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #00d4ff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
}

.current-year-display {
    font-size: 0.9rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.1em;
}

#yearDisplay {
    color: #00d4ff;
}

/* Satellite orbiting (Tier 3) */
@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(400px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(400px) rotate(-360deg);
    }
}

.satellite-node {
    animation: orbit 60s infinite linear;
}

/* Responsive Scaling */
@media (max-width: 1200px) {
    .slider-wrapper {
        width: 400px;
    }

    .universe-map {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .deep-dive-panel {
        width: 100%;
        right: -100%;
    }

    .slider-wrapper {
        width: 280px;
    }

    .view-toggle {
        flex-direction: column;
        border-radius: 20px;
    }
}


/* Global Expansion Map */
.global-expansion {
    padding: 10rem 0;
    background: var(--bg-dark);
}

.map-container-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-black);
}

.world-map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: var(--bg-black);
    overflow: hidden;
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(100%) contrast(1.2) brightness(0.6);
}

.map-overlay-dark {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.map-legend {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 8px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #ccc;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.green {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.dot.yellow {
    background: #eab308;
    box-shadow: 0 0 10px #eab308;
}

.dot.blue {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

/* Geo Nodes */
.geo-node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}

.geo-node:hover {
    z-index: 20;
}

.geo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-black);
    transition: var(--transition);
}

.geo-node.base {
    z-index: 15;
}

.geo-node.base .geo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--blue-500);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.geo-node.base .geo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geo-node.base .geo-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 5px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Node Colors */
.geo-node.recommended .geo-dot {
    background: #10b981;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
}

.geo-node.optional .geo-dot {
    background: #eab308;
    box-shadow: 0 0 0 rgba(234, 179, 8, 0.4);
}

.geo-node.long-term .geo-dot {
    background: #3b82f6;
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4);
}

.geo-node:hover .geo-dot {
    transform: scale(1.5);
}

/* Pulse Animation for base */
.geo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--blue-500);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

/* Tooltips */
.geo-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border);
    padding: 0.8rem;
    border-radius: 6px;
    width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    text-align: center;
    z-index: 50;
}

.tooltip-flag {
    width: 24px;
    height: auto;
    border-radius: 2px;
    margin-bottom: 0.4rem;
}

.geo-node:hover .geo-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 140%;
}

.geo-tooltip h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.geo-tooltip p {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.geo-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.7rem;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
}

.geo-tooltip .status {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status.green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status.yellow {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.status.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}


/* Detail Panel */
.node-detail-panel {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) translateX(120%);
    width: 400px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 8px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 100;
}

.node-detail-panel.active {
    transform: translateY(-50%) translateX(0);
}

.close-detail {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.detail-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item h5 {
    color: var(--blue-400);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.detail-item ul {
    list-style: none;
    padding: 0;
}

.detail-item li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.synergy-pills {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.synergy-pills h5 {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
}

/* Expansion Flow Diagram */
.expansion-flow {
    padding-bottom: 10rem;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-black));
}

.flow-scroller {
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-500) var(--bg-black);
}

.flow-diagram {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 1200px;
    padding: 0 1rem;
}

.flow-column {
    flex: 1;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.flow-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.phase-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.phase-badge.green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.phase-badge.yellow {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.phase-badge.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.flow-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.flow-header .years {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Flow Cards Scrollable for long lists */
.flow-cards.scroll-y {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-500) var(--bg-black);
}

.flow-card {
    background: var(--bg-black);
    border: 1px solid var(--border);
    padding: 0.8rem;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.flow-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-500);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.card-icon {
    width: 24px;
    height: 18px;
    /* Flag ratioish */
    background: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 2px;
}

.flow-card h5 {
    font-size: 0.85rem;
    margin-bottom: 0;
    flex: 1;
}

/* Specific Global Column */
.global-column {
    min-width: 400px;
}

.global-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.g-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-gray);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.g-tab:hover,
.g-tab.active {
    background: var(--blue-500);
    color: white;
    border-color: var(--blue-500);
}

.global-content-area {
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    min-height: 300px;
}

.region-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.region-grid.active {
    display: grid;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #ccc;
    background: var(--bg-black);
    padding: 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-card img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.flow-card .priority {
    font-size: 0.7rem;
    font-weight: 700;
}

.flow-card .priority {
    color: #10b981;
}

.flow-card .priority.opt {
    color: #eab308;
}

.flow-card .priority.long {
    color: #3b82f6;
}

/* Flow Tooltip */
.flow-tooltip {
    position: absolute;
    left: 105%;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
    pointer-events: none;
}

.flow-card:hover .flow-tooltip {
    opacity: 1;
    visibility: visible;
    left: 110%;
}

.flow-tooltip h6 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.flow-tooltip p {
    font-size: 0.7rem;
    line-height: 1.3;
    color: var(--text-gray);
    margin: 0;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    color: var(--text-gray);
    opacity: 0.3;
}

/* Timeline */
.phased-plan {
    padding-bottom: 10rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 6rem auto 0;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    width: 100%;
    margin-bottom: 4rem;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--blue-500);
}

.phase-tag {
    display: inline-block;
    color: var(--blue-400);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.phase-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.phase-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.phase-list i {
    width: 16px;
    height: 16px;
    color: var(--blue-400);
}

.phase-revenue {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

/* Synergies */
.synergy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.synergy-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
}

.synergy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--blue-400);
}

.synergy-visual i {
    width: 32px;
    height: 32px;
}

/* Notebook Section */
.internal-notebook {
    padding: 10rem 2rem;
}

.notebook-case {
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.notebook-header {
    background: #1a1a1a;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.notebook-tabs {
    display: flex;
    gap: 1.5rem;
}

.nt-tab {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    text-transform: uppercase;
}

.nt-tab.active {
    color: var(--blue-400);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.notebook-body {
    padding: 4rem;
    min-height: 500px;
}

.page-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.strategy-notes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.note-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.note-bullet {
    width: 6px;
    height: 6px;
    background: var(--blue-500);
    border-radius: 50%;
}

.note-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.what-next-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.next-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 4px;
}

.next-box h5 {
    color: var(--blue-400);
    margin-bottom: 0.5rem;
}

.next-box p {
    font-size: 0.9rem;
    margin: 0;
}

/* Conclusion */
.conclusion-box {
    background: radial-gradient(circle at top right, #1a1a1a, black);
    padding: 6rem 4rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    margin: 10rem 0;
}

.conclusion-box h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

.conclusion-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 2rem;
    }

    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem;
    }

    .timeline-item {
        justify-content: flex-start;
    }

    .universe-container {
        height: auto;
        flex-direction: column;
    }

    .universe-map {
        height: 600px;
    }

    .node-detail-panel {
        position: fixed;
        width: 100%;
        height: 80vh;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        transform: translateY(100%);
        border-radius: 20px 20px 0 0;
    }

    .node-detail-panel.active {
        transform: translateY(0);
    }
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    background: rgba(255, 255, 255, 0.02);
}

/* Footer */
footer {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-gray);
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   SaintsLink Enterprise Styling Extensions
   ========================================== */

/* Hero Enterprise Layout Override */
.hero-enterprise {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem !important;
    min-height: calc(100dvh - 80px);
}

.hero-enterprise .hero-content {
    text-align: left;
    max-width: 680px;
    margin: 0;
}

.hero-enterprise h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-enterprise p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-enterprise .hero-btns {
    justify-content: flex-start;
}

/* Hero Dashboard Visual Mockup */
.hero-visual {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    gap: 1rem;
    perspective: 1000px;
}

.hv-panel {
    background: rgba(24, 24, 24, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.hv-panel:hover {
    border-color: rgba(96, 165, 250, 0.3);
}

.hv-panel--main {
    flex: 2.5;
    display: flex;
}

.hv-sidebar {
    width: 48px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
    background: rgba(18, 18, 18, 0.4);
}

.hv-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue-500);
}

.hv-nav-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    align-items: center;
}

.hv-nav-item {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.hv-nav-active {
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid var(--blue-400);
}

.hv-main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.hv-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hv-header-title {
    width: 120px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.hv-header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hv-pill {
    width: 40px;
    height: 14px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 10px;
}

.hv-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.hv-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hv-stat-block {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hv-stat-label {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.hv-stat-value {
    width: 80%;
    height: 14px;
    background: var(--blue-400);
    border-radius: 3px;
}

.hv-stat-value.mid {
    width: 60%;
    background: var(--text-white);
}

.hv-stat-value.short {
    width: 40%;
    background: rgba(255, 255, 255, 0.4);
}

.hv-stat-badge {
    width: 25px;
    height: 6px;
    border-radius: 3px;
}

.hv-stat-badge.up {
    background: #10b981;
}

.hv-stat-badge.neutral {
    background: rgba(255, 255, 255, 0.2);
}

.hv-chart-area {
    height: 140px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.3);
    margin-bottom: 1rem;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
}

.hv-chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    gap: 6px;
}

.hv-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px 2px 0 0;
    transition: var(--transition);
}

.hv-bar--active {
    background: var(--primary-gradient);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.hv-table-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hv-table-row {
    height: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    width: 100%;
}

.hv-row-header {
    background: rgba(255, 255, 255, 0.1);
    width: 50%;
}

.hv-panel--side {
    flex: 1.1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hv-side-card {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hv-side-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.hv-side-icon.hv-icon-alt {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.hv-side-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hv-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.hv-line.hv-long { width: 85%; }
.hv-line.hv-medium { width: 65%; }
.hv-line.hv-short { width: 45%; }

.hv-donut-wrap {
    margin-top: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(18, 18, 18, 0.2);
}

.hv-donut {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--blue-500);
    border-right-color: var(--blue-400);
    transform: rotate(45deg);
}

.hv-donut-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hv-activity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
}

.hv-activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.hv-activity-dot.hv-dot-alt {
    background: #f59e0b;
}

/* Hero Visual Animations */
@keyframes barGrow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes barPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(96, 165, 250, 0.7);
    }
}

@keyframes donutSpin {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.4;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.hv-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px 2px 0 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: bottom;
    animation: barGrow 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    cursor: pointer;
    position: relative;
}

.hv-bar:hover {
    background: rgba(96, 165, 250, 0.3);
    transform: scaleY(1.05);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}

.hv-bar--active {
    background: var(--primary-gradient);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    animation: barGrow 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, barPulse 2.5s ease-in-out infinite 0.8s;
}

.hv-bar:nth-child(1) { animation-delay: 0.1s; }
.hv-bar:nth-child(2) { animation-delay: 0.15s; }
.hv-bar:nth-child(3) { animation-delay: 0.2s; }
.hv-bar:nth-child(4) { animation-delay: 0.25s; }
.hv-bar:nth-child(5) { animation-delay: 0.3s; }
.hv-bar:nth-child(6) { animation-delay: 0.35s; }
.hv-bar:nth-child(7) { animation-delay: 0.4s; }
.hv-bar:nth-child(8) { animation-delay: 0.45s; }

.hv-donut {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--blue-500);
    border-right-color: var(--blue-400);
    animation: donutSpin 4s linear infinite;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
}

.hv-side-card {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.hv-side-card:nth-child(1) { animation-delay: 0.2s; }
.hv-side-card:nth-child(2) { animation-delay: 0.35s; }

.hv-side-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(96, 165, 250, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(96, 165, 250, 0.1);
}

.hv-side-card:hover .hv-side-icon {
    border-color: var(--blue-400);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.3);
}

.hv-side-card:hover .hv-line {
    background: rgba(255, 255, 255, 0.3);
    animation: shimmer 1.5s linear infinite;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
    background-size: 200% 100%;
}

.hv-donut-wrap {
    margin-top: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(18, 18, 18, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

.hv-donut-wrap:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hv-activity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.hv-activity:nth-child(4) { animation-delay: 0.6s; }
.hv-activity:nth-child(5) { animation-delay: 0.7s; }
.hv-activity:nth-child(6) { animation-delay: 0.8s; }

.hv-activity:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.hv-activity:hover .hv-activity-dot {
    animation: dotPulse 1s ease-in-out infinite;
}

.hv-stat-block {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.hv-stat-block:nth-child(1) { animation-delay: 0.3s; }
.hv-stat-block:nth-child(2) { animation-delay: 0.4s; }
.hv-stat-block:nth-child(3) { animation-delay: 0.5s; }

.hv-stat-block:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hv-stat-value {
    width: 80%;
    height: 14px;
    background: var(--blue-400);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hv-stat-block:hover .hv-stat-value {
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}

.hv-nav-item {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.4s ease-out forwards;
    opacity: 0;
}

.hv-nav-item:nth-child(1) { animation-delay: 0.1s; }
.hv-nav-item:nth-child(2) { animation-delay: 0.15s; }
.hv-nav-item:nth-child(3) { animation-delay: 0.2s; }
.hv-nav-item:nth-child(4) { animation-delay: 0.25s; }
.hv-nav-item:nth-child(5) { animation-delay: 0.3s; }

.hv-nav-item:hover {
    background: rgba(96, 165, 250, 0.3);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}

.hv-nav-active {
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid var(--blue-400);
    animation: navPulse 2s ease-in-out infinite;
}

.hv-panel--main {
    flex: 2.5;
    display: flex;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hv-panel--main:hover {
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(96, 165, 250, 0.08);
}

.hv-panel--side {
    flex: 1.1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hv-panel--side:hover {
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(96, 165, 250, 0.08);
}

@media (max-width: 1024px) {
    .hero-visual {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }

    .hv-panel--main {
        min-height: 400px;
    }

    .hv-panel--side {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hv-side-card,
    .hv-donut-wrap {
        flex: 1;
        min-width: 140px;
    }

    .hv-activity {
        flex: 1;
        min-width: 120px;
    }
}

/* About Stats and Layer Stack Visual */
.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.intro-stat {
    border-left: 2px solid var(--blue-500);
    padding-left: 1rem;
}

.intro-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.intro-stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.about-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.infra-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 440px;
}

.infra-layer {
    background: rgba(24, 24, 24, 0.8);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    cursor: default;
}

.infra-layer:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.layer-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-400);
}

.layer-name {
    font-weight: 500;
    color: var(--text-light);
}

.infra-label {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Products Grid Section */
.products-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
}

.product-card {
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-category-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: rgba(96, 165, 250, 0.08);
    color: var(--blue-400);
    border: 1px solid rgba(96, 165, 250, 0.15);
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex: 1;
}

.product-link {
    color: var(--blue-400);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.product-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.product-link:hover {
    color: var(--text-white);
}

.product-link:hover i {
    transform: translateX(4px);
}

/* Selected Case Studies list layout */
.case-studies {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-entry {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 2.5fr 1fr;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
}

.case-entry:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.case-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-industry {
    font-weight: 600;
    color: var(--blue-400);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.case-year {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.case-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.case-challenge {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.case-solution {
    font-size: 0.95rem;
    color: var(--text-light);
}

.case-outcome {
    display: flex;
    justify-content: flex-end;
}

.outcome-badge {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.case-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Process Horizontal Timeline Styles */
.process-section {
    background: var(--bg-dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    max-width: 1300px;
    margin: 4rem auto 0 auto;
    padding: 0 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}

.ts-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-black);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-400);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.timeline-step:hover .ts-number {
    border-color: var(--blue-400);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
    transform: scale(1.05);
}

.ts-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.ts-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    max-width: 170px;
    line-height: 1.5;
}

.timeline-connector {
    height: 1px;
    width: 25px;
    background: var(--border);
    align-self: flex-start;
    margin-top: 35px;
}

/* Why SaintsLink Section grid */
.why-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-tile {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}

.why-tile:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.why-tile i {
    width: 32px;
    height: 32px;
    color: var(--blue-400);
    margin-bottom: 1.5rem;
}

.why-tile h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.why-tile p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Partners Slim Section banner */
.partners-slim {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.partners-slim-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-slim-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.partners-slim-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ==========================================
   Responsive Adaptations for Enterprise UI
   ========================================== */

@media (max-width: 1024px) {
    .hero-enterprise {
        grid-template-columns: 1fr;
        padding-top: 6rem !important;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-enterprise .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-enterprise .hero-btns {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        height: 380px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 1.5rem;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-entry {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }
    
    .case-outcome {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hv-panel--side {
        display: none;
    }
    
    .hv-panel--main {
        flex: 1;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-enterprise {
        padding: 4.5rem 1rem 2.5rem !important;
        gap: 1.25rem;
    }

    .hero-enterprise h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .hero-enterprise p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-btns {
        gap: 0.75rem;
    }

    .hero-btns a,
    .hero-btns button {
        padding: 0.95rem 1.35rem;
    }

    .hero-visual {
        height: auto;
        min-height: 280px;
        margin-top: 0;
    }

    .mobile-menu-container {
        gap: 1rem;
    }

    .mobile-link,
    .mobile-dropdown-trigger {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero-enterprise {
        padding-top: 4rem !important;
    }

    .hero-enterprise h1 {
        font-size: clamp(1.9rem, 10vw, 2.6rem);
    }

    .hero-enterprise p {
        font-size: 0.95rem;
    }

    .section-header {
        gap: 0.6rem;
    }
}

/* ═══════════════════════════════════════════════════════
   PRODUCT PAGES — ENTERPRISE COMPONENT LIBRARY
   All components use existing SaintsLink design tokens
   ═══════════════════════════════════════════════════════ */

/* ── Product Hero ── */
.product-hero {
    padding: 9rem 2rem 6rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(23,37,84,0.12) 0%, var(--bg-black) 100%);
}

.product-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.product-hero-content .hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.product-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.product-hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 38rem;
}

.product-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-ai-page .product-hero {
    padding-top: 8rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 440px;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
}

.hero-visual-frame {
    flex: 1.2;
    min-width: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 110px rgba(0,0,0,0.35);
    background: linear-gradient(180deg, rgba(18,18,18,0.95), rgba(18,18,18,0.8));
}

.hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-info-card {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 320px;
    padding: 1.25rem 1.4rem;
    background: rgba(12, 19, 38, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 28px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(16px);
}

.hero-info-card span {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.hero-info-card strong {
    display: block;
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.5;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 1rem;
    display: inline-block;
}

.section-copy {
    color: var(--text-gray);
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.8;
}

.timeline-section,
.genesis-section,
.powered-section,
.roadmap-section,
.support-section,
.industry-section,
.ecosystem-section,
.future-section,
.cta-section {
    padding: 8rem 2rem;
    background: var(--bg-black);
}

.timeline-track,
.genesis-grid,
.powered-grid,
.roadmap-grid,
.support-grid,
.industry-grid,
.why-grid,
.ecosystem-graphic {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.timeline-track {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.timeline-step {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    min-height: 140px;
    display: grid;
    place-items: center;
    text-align: center;
}

.timeline-badge {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}

.genesis-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 3rem;
}

.genesis-copy .eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-400);
    font-weight: 700;
}

.genesis-copy h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.genesis-highlights {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.genesis-highlights span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.genesis-mockup {
    display: grid;
    gap: 1rem;
}

.genesis-mockup-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

.genesis-mockup-card img {
    width: 100%;
    height: auto;
    display: block;
}

.genesis-mockup-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
}

.powered-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.powered-copy h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.powered-visual {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.powered-node,
.powered-connector {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
}

.powered-node {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-white);
}

.powered-node.primary {
    background: linear-gradient(135deg, rgba(18,18,38,0.95), rgba(23,37,84,0.9));
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 16px 30px rgba(0,0,0,0.2);
}

.powered-node.muted {
    opacity: 0.8;
}

.powered-connector {
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.25);
    color: var(--blue-400);
}

.roadmap-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.roadmap-step {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.roadmap-step.current {
    border-color: var(--blue-400);
    background: rgba(59,130,246,0.08);
}

.roadmap-step strong {
    font-size: 1rem;
    color: var(--text-white);
}

.roadmap-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    color: var(--text-white);
    font-weight: 700;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59,130,246,0.35);
}

.industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.industry-card:hover {
    background: rgba(59,130,246,0.04);
    border-color: rgba(59,130,246,0.25);
    transform: translateY(-2px);
}

.industry-card i {
    width: 40px;
    height: 40px;
    color: var(--blue-400);
}

.industry-card h4 {
    margin: 0;
}

.why-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.why-copy h2 {
    margin-bottom: 1.5rem;
}

.why-highlights {
    display: grid;
    gap: 1rem;
}

.highlight-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    min-height: 88px;
    display: flex;
    align-items: center;
    color: var(--text-white);
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: rgba(59,130,246,0.35);
    transform: translateY(-2px);
}

.ecosystem-graphic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ecosystem-node {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-white);
}

.ecosystem-node.primary {
    background: rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.35);
}

.future-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
}

.future-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.future-card span {
    color: var(--text-gray);
    display: block;
}

.cta-section {
    background: linear-gradient(180deg, rgba(23,37,84,0.15) 0%, rgba(18,18,18,0.95) 100%);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 28px;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    color: var(--text-gray);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1100px) {
    .timeline-track,
    .roadmap-grid,
    .support-grid,
    .industry-grid,
    .why-grid,
    .ecosystem-graphic {
        grid-template-columns: 1fr;
    }

    .genesis-grid,
    .powered-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        flex-direction: column;
        padding: 0;
        border-radius: 20px;
    }

    .hero-info-card {
        position: static;
        width: 100%;
        margin-top: 1rem;
        max-width: 100%;
        right: auto;
        bottom: auto;
    }

    .timeline-track,
    .roadmap-grid,
    .support-grid,
    .industry-grid,
    .why-grid,
    .ecosystem-graphic {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2rem;
    }
}

/* ── CRM Dashboard Mockup ── */
.crm-mockup-shell {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.crm-mockup-titlebar {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.crm-dot.red   { background: #ff5f57; }
.crm-dot.amber { background: #febc2e; }
.crm-dot.green { background: #28c840; }

.crm-mockup-titlebar-label {
    margin-left: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.crm-mockup-body {
    display: flex;
    height: 340px;
}

.crm-mock-sidebar {
    width: 52px;
    background: rgba(0,0,0,0.3);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

.crm-mock-nav-dot {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
}

.crm-mock-nav-dot.active {
    background: rgba(59,130,246,0.3);
    border: 1px solid rgba(59,130,246,0.5);
}

.crm-mock-main {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    overflow: hidden;
}

.crm-mock-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crm-mock-page-title {
    height: 14px;
    width: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.crm-mock-actions {
    display: flex;
    gap: 0.5rem;
}

.crm-mock-btn {
    height: 26px;
    width: 70px;
    border-radius: 2px;
    background: rgba(59,130,246,0.3);
    border: 1px solid rgba(59,130,246,0.4);
}

.crm-mock-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}

.crm-mock-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.625rem;
}

.crm-mock-stat-label {
    height: 8px;
    width: 60%;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.crm-mock-stat-value {
    height: 16px;
    width: 80%;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.crm-mock-stat-badge {
    height: 8px;
    width: 40%;
    border-radius: 2px;
    margin-top: 0.375rem;
}

.crm-mock-stat-badge.up   { background: rgba(16,185,129,0.4); }
.crm-mock-stat-badge.mid  { background: rgba(245,158,11,0.4); }

.crm-mock-table-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.crm-mock-table-head {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 0.75fr;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 2px;
    border: 1px solid var(--border);
}

.crm-mock-th {
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
}

.crm-mock-table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 0.75fr;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: rgba(255,255,255,0.015);
    align-items: center;
}

.crm-mock-td {
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.crm-mock-td.name  { background: rgba(255,255,255,0.15); }
.crm-mock-td.badge {
    height: 16px;
    border-radius: 2px;
    background: rgba(59,130,246,0.25);
    border: 1px solid rgba(59,130,246,0.3);
    width: 50px;
}

.crm-mock-td.badge.won { background: rgba(16,185,129,0.25); border-color: rgba(16,185,129,0.3); }
.crm-mock-td.badge.lost { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.3); }

/* ── Booking Mockup ── */
.booking-mockup-shell {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.booking-mockup-body {
    display: flex;
    height: 340px;
}

.booking-mock-left {
    width: 200px;
    background: rgba(0,0,0,0.25);
    border-right: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-mock-month {
    height: 12px;
    width: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.booking-mock-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.booking-mock-day {
    height: 20px;
    border-radius: 2px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-mock-day.booked {
    background: rgba(59,130,246,0.3);
    border: 1px solid rgba(59,130,246,0.4);
}

.booking-mock-day.today {
    background: rgba(59,130,246,0.6);
}

.booking-mock-day.empty {
    background: transparent;
}

.booking-mock-slots {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

.booking-mock-slot {
    height: 22px;
    border-radius: 2px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    gap: 0.375rem;
}

.booking-mock-slot-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(16,185,129,0.7);
    flex-shrink: 0;
}

.booking-mock-slot-dot.busy { background: rgba(239,68,68,0.7); }

.booking-mock-slot-label {
    height: 7px;
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.booking-mock-right {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}

.booking-mock-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-mock-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.booking-mock-title {
    height: 14px;
    width: 140px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.booking-mock-subtitle {
    height: 9px;
    width: 90px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.booking-mock-add-btn {
    height: 28px;
    width: 80px;
    border-radius: 2px;
    background: rgba(59,130,246,0.3);
    border: 1px solid rgba(59,130,246,0.4);
}

.booking-mock-appt-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.booking-mock-appt {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: rgba(255,255,255,0.02);
}

.booking-mock-appt-time {
    height: 9px;
    width: 40px;
    background: rgba(96,165,250,0.4);
    border-radius: 2px;
    flex-shrink: 0;
}

.booking-mock-appt-bar {
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.booking-mock-appt-status {
    width: 50px;
    height: 16px;
    border-radius: 2px;
    background: rgba(16,185,129,0.25);
    border: 1px solid rgba(16,185,129,0.3);
    flex-shrink: 0;
}

.booking-mock-appt-status.pending {
    background: rgba(245,158,11,0.2);
    border-color: rgba(245,158,11,0.35);
}

/* ── Section: Why SaintsLink ── */
.why-product-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
}

.why-product-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.why-product-item {
    padding: 2rem 2rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.why-product-item:hover {
    background: rgba(59,130,246,0.04);
}

.why-product-icon {
    width: 32px;
    height: 32px;
    color: var(--blue-400);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.why-product-icon i {
    width: 32px;
    height: 32px;
}

.why-product-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-white);
}

.why-product-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ── Section: Core Capabilities ── */
.capabilities-section {
    padding: 8rem 2rem;
    background: var(--bg-black);
}

.capabilities-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.capability-card {
    background: var(--bg-black);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.3s ease;
}

.capability-card:hover {
    background: rgba(59,130,246,0.04);
}

.capability-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 4px;
    color: var(--blue-400);
    flex-shrink: 0;
}

.capability-icon i {
    width: 20px;
    height: 20px;
}

.capability-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.capability-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ── Section: Product Preview (Tabbed) ── */
.preview-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
}

.preview-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.preview-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.preview-tabs::-webkit-scrollbar { display: none; }

.preview-tab {
    background: none;
    border: none;
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.875rem 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.preview-tab:hover {
    color: var(--text-white);
}

.preview-tab.active {
    color: var(--blue-400);
    border-bottom-color: var(--blue-400);
}

.preview-panels {
    position: relative;
}

.preview-panel {
    display: none;
}

.preview-panel.active {
    display: block;
}

.preview-panel-ui {
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.preview-panel-bar {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.preview-panel-bar-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.preview-panel-content {
    padding: 2rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Sales Dashboard Preview */
.pd-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.pd-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.25rem;
}

.pd-stat-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.625rem;
}

.pd-stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.375rem;
}

.pd-stat-delta {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

.pd-stat-delta.neg { color: #ef4444; }
.pd-stat-delta.neu { color: var(--text-gray); }

.pd-chart-area {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    min-height: 120px;
}

.pd-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: rgba(59,130,246,0.25);
    border: 1px solid rgba(59,130,246,0.3);
    transition: background 0.2s;
}

.pd-bar:hover { background: rgba(59,130,246,0.5); }
.pd-bar.active { background: rgba(59,130,246,0.6); border-color: rgba(59,130,246,0.7); }

/* Pipeline Preview */
.pipeline-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    flex: 1;
}

.pipeline-col {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pipeline-col-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0.25rem;
}

.pipeline-col-header.active-col { border-color: var(--blue-500); color: var(--blue-400); }
.pipeline-col-header.won-col { border-color: #10b981; color: #10b981; }

.pipeline-deal-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.625rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.pipeline-deal-name {
    height: 9px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.pipeline-deal-value {
    height: 8px;
    width: 60%;
    background: rgba(96,165,250,0.3);
    border-radius: 2px;
}

/* Customer Profile Preview */
.profile-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    flex: 1;
}

.profile-sidebar-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-avatar-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59,130,246,0.25);
    border: 2px solid rgba(59,130,246,0.4);
}

.profile-name-block {
    height: 10px;
    width: 80px;
    background: rgba(255,255,255,0.18);
    border-radius: 2px;
}

.profile-company-block {
    height: 8px;
    width: 60px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.profile-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-meta-item {
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
}

.profile-main-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-tab-row {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

.profile-tab-item {
    height: 9px;
    width: 60px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.profile-tab-item.active {
    background: rgba(96,165,250,0.5);
}

.profile-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-timeline-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-tl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(59,130,246,0.5);
    flex-shrink: 0;
}

.profile-tl-line {
    flex: 1;
    height: 9px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
}

.profile-tl-date {
    width: 50px;
    height: 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Reports Preview */
.reports-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.report-widget {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.report-widget-title {
    height: 9px;
    width: 100px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
}

.report-donut-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

.report-donut {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 8px solid rgba(59,130,246,0.25);
    border-top-color: rgba(59,130,246,0.8);
    flex-shrink: 0;
}

.report-legend {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.report-legend-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.report-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.report-legend-label {
    height: 8px;
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.report-bar-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.report-bar-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.report-bar-label {
    width: 60px;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    flex-shrink: 0;
}

.report-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 2px;
    overflow: hidden;
}

.report-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: rgba(59,130,246,0.5);
}

/* Calendar Preview */
.calendar-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.cal-week-header {
    display: grid;
    grid-template-columns: 60px repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.cal-week-header-day {
    background: var(--bg-black);
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
}

.cal-week-header-day.today-col { color: var(--blue-400); }

.cal-body {
    display: grid;
    grid-template-columns: 60px repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 0 0 3px 3px;
    overflow: hidden;
    flex: 1;
}

.cal-time-col {
    background: var(--bg-black);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cal-time-slot {
    height: 40px;
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    border-bottom: 1px solid var(--border);
}

.cal-day-col {
    background: var(--bg-dark);
    position: relative;
    display: flex;
    flex-direction: column;
}

.cal-day-col.today-col { background: rgba(59,130,246,0.03); }

.cal-hour-block {
    height: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cal-event {
    position: absolute;
    left: 3px;
    right: 3px;
    border-radius: 2px;
    padding: 0.25rem 0.375rem;
    font-size: 0.65rem;
    font-weight: 600;
    overflow: hidden;
}

.cal-event-1 {
    top: 10px;
    height: 50px;
    background: rgba(59,130,246,0.3);
    border-left: 2px solid var(--blue-400);
    color: var(--blue-400);
}

.cal-event-2 {
    top: 90px;
    height: 35px;
    background: rgba(16,185,129,0.2);
    border-left: 2px solid #10b981;
    color: #10b981;
}

.cal-event-3 {
    top: 45px;
    height: 60px;
    background: rgba(245,158,11,0.2);
    border-left: 2px solid #f59e0b;
    color: #f59e0b;
}

/* ── Section: Integrations ── */
.integrations-section {
    padding: 8rem 2rem;
    background: var(--bg-black);
    border-top: 1px solid var(--border);
}

.integrations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 3rem;
}

.integration-item {
    background: var(--bg-black);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    transition: background 0.3s ease;
}

.integration-item:hover {
    background: rgba(59,130,246,0.04);
}

.integration-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-gray);
}

.integration-icon i { width: 18px; height: 18px; }

.integration-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.integrations-note {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    background: rgba(59,130,246,0.04);
    border: 1px solid rgba(59,130,246,0.12);
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.integrations-note i {
    color: var(--blue-400);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.integrations-note p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ── Section: Pricing ── */
.pricing-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.pricing-cards-row {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    background: rgba(59,130,246,0.04);
    transform: translateY(-4px);
}

.pricing-card.featured-plan {
    border-color: var(--blue-500);
    background: rgba(59,130,246,0.06);
}

.pricing-featured-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-500);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.875rem;
    border-radius: 0 0 4px 4px;
}

.pricing-card-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.pricing-card-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.pricing-card-price span.currency {
    font-size: 1.25rem;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
    color: var(--text-gray);
}

.pricing-card-unit {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.pricing-card-features li i {
    width: 16px;
    height: 16px;
    color: var(--blue-400);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-card-features li.dimmed {
    opacity: 0.4;
}

.pricing-card-features li.dimmed i {
    color: var(--text-gray);
}

.pricing-card-cta {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid var(--border);
    padding: 0.875rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: var(--transition);
}

.pricing-card-cta:hover {
    background: white;
    color: black;
    border-color: white;
}

.pricing-card.featured-plan .pricing-card-cta {
    background: var(--blue-500);
    border-color: var(--blue-500);
    color: white;
}

.pricing-card.featured-plan .pricing-card-cta:hover {
    background: var(--blue-600);
}

.pricing-enterprise {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-enterprise-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-enterprise-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-gray);
    margin-bottom: 0.625rem;
}

.pricing-enterprise-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.pricing-enterprise-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 40rem;
}

/* Comparison Table */
.pricing-compare-wrap {
    max-width: 1200px;
    margin: 4rem auto 0;
}

.pricing-compare-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.pricing-table th {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
}

.pricing-table th.plan-col {
    color: var(--text-white);
    border-top: 2px solid var(--blue-500);
}

.pricing-table td {
    border: 1px solid var(--border);
    padding: 0.875rem 1.25rem;
    color: #cbd5e1;
    vertical-align: middle;
}

.pricing-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.015);
}

.pricing-table td.feature-col {
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-table td.check i {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.pricing-table td.cross i {
    color: rgba(255,255,255,0.2);
    width: 16px;
    height: 16px;
}

.pricing-table td.text-val {
    color: var(--blue-400);
    font-weight: 600;
}

.pricing-table .group-row td {
    background: rgba(59,130,246,0.04);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-400);
    border-top: 1px solid rgba(59,130,246,0.15);
}

/* ── Section: FAQ ── */
.faq-section {
    padding: 8rem 2rem;
    background: var(--bg-black);
    border-top: 1px solid var(--border);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.975rem;
    font-weight: 600;
    transition: background 0.25s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question i {
    width: 18px;
    height: 18px;
    color: var(--blue-400);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(59,130,246,0.04);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 2rem 1.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

/* ── Section: Final CTA ── */
.product-cta-section {
    padding: 7rem 2rem;
    background: linear-gradient(0deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border);
    text-align: center;
}

.product-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.product-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.product-cta-section p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.product-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Section: Industries ── */
.industries-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
}

.industries-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: var(--border-hover);
    background: rgba(59,130,246,0.04);
    transform: translateY(-3px);
}

.industry-icon {
    width: 36px;
    height: 36px;
    color: var(--blue-400);
}

.industry-icon i { width: 36px; height: 36px; }

.industry-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.industry-card p {
    font-size: 0.825rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ── Section: Add-ons ── */
.addons-section {
    padding: 8rem 2rem;
    background: var(--bg-black);
    border-top: 1px solid var(--border);
}

.addons-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.addon-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.addon-card:hover {
    background: rgba(59,130,246,0.04);
    border-color: var(--border-hover);
}

.addon-icon {
    width: 34px;
    height: 34px;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    flex-shrink: 0;
}

.addon-icon i { width: 18px; height: 18px; }

.addon-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.addon-text p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ── Section: Enterprise Sectors ── */
.enterprise-sectors-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.sectors-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sector-tile {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.sector-tile:hover {
    border-color: var(--border-hover);
    background: rgba(59,130,246,0.04);
    transform: translateY(-3px);
}

.sector-icon {
    color: var(--blue-400);
    width: 28px;
    height: 28px;
}
.sector-icon i { width: 28px; height: 28px; }

.sector-tile h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

.sector-tile p {
    font-size: 0.825rem;
    color: var(--text-gray);
    line-height: 1.55;
    flex: 1;
}

.sector-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--blue-400);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.sector-cta:hover { color: white; }
.sector-cta i { width: 14px; height: 14px; }

/* ── Placeholder Page ── */
.placeholder-hero {
    padding: 14rem 2rem 10rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.placeholder-hero .tag { margin-bottom: 2rem; }

.placeholder-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.placeholder-hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.placeholder-progress {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    height: 3px;
    overflow: hidden;
}

.placeholder-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
    width: 35%;
    animation: progressPulse 2.5s ease-in-out infinite alternate;
}

@keyframes progressPulse {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

/* ── Section header (product pages variant) ── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

/* ── Product breadcrumb bar ── */
.product-breadcrumb {
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 2rem;
}

.product-breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.775rem;
    color: var(--text-gray);
}

.product-breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-breadcrumb a:hover { color: white; }

.product-breadcrumb-sep {
    color: rgba(255,255,255,0.2);
}

.product-breadcrumb-current {
    color: var(--text-white);
    font-weight: 600;
}

/* ── What's Included ── */
.whats-included-section {
    padding: 8rem 2rem;
    background: var(--bg-black);
    border-top: 1px solid var(--border);
}

.whats-included-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
}

.included-item:hover {
    background: rgba(59,130,246,0.04);
    border-color: var(--border-hover);
}

.included-check {
    width: 32px;
    height: 32px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}

.included-check i { width: 16px; height: 16px; }

.included-text h4 {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.375rem;
}

.included-text p {
    font-size: 0.825rem;
    color: var(--text-gray);
    line-height: 1.55;
}

/* ── Responsive: Product Pages ── */
@media (max-width: 1100px) {
    .product-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .crm-mockup-shell,
    .booking-mockup-shell {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 8rem 1.25rem 5rem;
    }

    .why-product-grid {
        grid-template-columns: 1fr;
    }

    .why-product-item {
        border-right: none;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-tabs {
        gap: 0;
    }

    .pd-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pipeline-cols {
        grid-template-columns: repeat(3, 1fr);
    }

    .reports-layout {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-cards-row {
        grid-template-columns: 1fr;
    }

    .pricing-enterprise-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-table {
        font-size: 0.8rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.875rem;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crm-mock-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .crm-mock-table-head,
    .crm-mock-table-row {
        grid-template-columns: 2fr 1fr 0.75fr;
    }

    .crm-mock-th:nth-child(4),
    .crm-mock-th:nth-child(5),
    .crm-mock-td:nth-child(4),
    .crm-mock-td:nth-child(5) {
        display: none;
    }

    .booking-mock-left {
        display: none;
    }

    .profile-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .product-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .product-cta-btns a {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================
   EDITORIAL / INSIDE SAINTSLINK
   ============================================ */

.editorial-body {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-gray);
    font-weight: 400;
}

.editorial-body--large {
    font-size: 1.35rem;
    line-height: 1.75;
    color: var(--text-light);
}

.editorial-body strong {
    color: var(--text-white);
    font-weight: 600;
}

.editorial-body em {
    color: var(--text-light);
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.editorial-container--wide {
    max-width: 1100px;
}

.editorial-container--narrow {
    max-width: 640px;
}

.editorial-section {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.editorial-section:first-of-type {
    border-top: none;
}

.editorial-section--alt {
    background: var(--bg-dark);
}

.editorial-section--dark {
    background: var(--bg-black);
}

.editorial-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(96, 165, 250, 0.08);
    border-radius: 2px;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.editorial-title--small {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.editorial-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.editorial-lead {
    font-size: 1.4rem;
    line-height: 1.65;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 2.5rem;
    font-family: 'Source Serif 4', Georgia, serif;
}

.editorial-paragraph {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 1.75rem;
    font-family: 'Source Serif 4', Georgia, serif;
}

.editorial-paragraph:last-child {
    margin-bottom: 0;
}

.editorial-quote {
    border-left: 2px solid var(--blue-500);
    padding: 2rem 2.5rem;
    margin: 3.5rem 0;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.04), transparent);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.editorial-quote p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Source Serif 4', Georgia, serif;
    margin: 0;
}

.editorial-quote::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: rgba(96, 165, 250, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.editorial-callout {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 3rem 0;
    position: relative;
}

.editorial-callout__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.editorial-callout p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    font-family: 'Source Serif 4', Georgia, serif;
}

.editorial-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 5rem 0;
    color: var(--text-gray);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}

.editorial-divider::before,
.editorial-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.research-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.research-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(96,165,250,0.06), transparent 60%);
    opacity: 0;
    pointer-events: none;
transition: opacity 0.5s ease;
}

.research-card:hover::after {
    opacity: 1;
}

.research-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(96, 165, 250, 0.06);
}

.research-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--blue-400);
    position: relative;
    z-index: 1;
}

.research-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.research-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.publication-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.publication-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.publication-card:hover::before {
    transform: scaleX(1);
}

.publication-card:hover {
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.publication-status {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.publication-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    line-height: 1.3;
}

.publication-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(to bottom, var(--border), var(--blue-500), var(--border));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-black);
    border: 2px solid var(--blue-500);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: var(--blue-500);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.timeline-content {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.company-hero {
    padding: 10rem 2rem 6rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border);
}

.company-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.company-hero p {
    font-size: 1.35rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-family: 'Source Serif 4', Georgia, serif;
    max-width: 640px;
    margin: 0 auto;
}

.company-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .editorial-section {
        padding: 5rem 0;
    }
    
    .editorial-quote {
        padding: 1.5rem;
    }
    
    .editorial-quote p {
        font-size: 1.15rem;
    }
    
    .editorial-lead {
        font-size: 1.2rem;
    }
    
    .editorial-paragraph {
        font-size: 1.05rem;
    }
    
    .research-grid,
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -1.5rem;
        width: 8px;
        height: 8px;
    }
    
    .company-hero {
        padding: 8rem 1.5rem 4rem;
    }
    
    .company-hero p {
        font-size: 1.15rem;
    }
}

/* ═══════════════════════════════════════════════════════
   SOLUTIONS PAGES
   ═══════════════════════════════════════════════════════ */

.solution-hero {
    padding: 9rem 2rem 5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(23, 37, 84, 0.12) 0%, var(--bg-black) 100%);
}

.solution-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.solution-hero-content .hero-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: block;
}

.solution-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.solution-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.solution-hero-intro {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 36rem;
}

.solution-hero-visual {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    aspect-ratio: 4/3;
    background: var(--bg-dark);
}

.solution-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.solution-service-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.solution-service-card:hover {
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.solution-service-card:hover::before {
    transform: scaleX(1);
}

.solution-service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
    padding-right: 1.5rem;
}

.solution-service-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.55;
    flex: 1;
}

.solution-service-card__arrow {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    color: var(--blue-400);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.solution-service-card__arrow i {
    width: 16px;
    height: 16px;
}

.solution-service-card:hover .solution-service-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Solutions index */
.solutions-index-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
}

.solutions-index-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.solutions-index-hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.solutions-index-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.solutions-index-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.015);
}

.solutions-index-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.solutions-index-card h2 {
    font-size: 1.25rem;
    color: var(--text-white);
}

.solutions-index-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
}

.solutions-index-card__link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* SaintsLink Verified — ecosystem capabilities */
.solution-capabilities {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-capability-highlight {
    padding: 2.5rem;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.06), rgba(30, 58, 138, 0.1));
    margin-bottom: 3rem;
}

.solution-capability-highlight h2 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.solution-capability-highlight p {
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 640px;
}

.solution-capability-highlight .sl-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .solution-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .solution-hero-visual {
        order: -1;
        max-height: 280px;
        aspect-ratio: auto;
    }
}

/* ═══════════════════════════════════════════════════════
   RESOURCES PAGES
   ═══════════════════════════════════════════════════════ */

.resources-dropdown .dropdown-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
}

.resources-dropdown .dropdown-item__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
}

.resources-dropdown .dropdown-item__icon i {
    width: 14px;
    height: 14px;
}

.resources-dropdown .dropdown-item__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.resource-breadcrumb {
    position: static;
    top: auto;
    width: auto;
    height: auto;
    z-index: auto;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6.5rem 2rem 0;
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.resource-breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.resource-breadcrumb a:hover {
    color: var(--blue-400);
}

.resource-breadcrumb span {
    color: var(--text-white);
}

.resource-hero {
    padding: 2.5rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
}

.resource-hero .hero-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-400);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.resource-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.resource-hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 640px;
}

.resource-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.resource-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-section-header {
    margin-bottom: 2.5rem;
}

.resource-section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.resource-section-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.resource-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.resource-card:hover {
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 0.25rem;
}

.resource-card__icon i {
    width: 18px;
    height: 18px;
}

.resource-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.resource-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.55;
    flex: 1;
}

.resource-card__meta {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-top: 0.5rem;
}

.resource-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    align-self: flex-start;
}

.resource-badge--soon {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: var(--blue-400);
}

.resource-badge--live {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.resource-badge--beta {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}

.resource-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.resource-status-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.015);
}

.resource-status-card__label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.resource-status-card__value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.resource-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
}

.resource-status-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.resource-cta-band {
    margin: 0 2rem 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.04), rgba(30, 58, 138, 0.08));
    text-align: center;
}

.resource-cta-band h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.resource-cta-band p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.resource-market-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.resource-cert-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.resource-cert-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed rgba(96, 165, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--blue-400);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.5rem;
}

@media (max-width: 640px) {
    .dropdown-content.resources-dropdown {
        width: min(320px, calc(100vw - 2rem));
        grid-template-columns: 1fr;
    }

    .resource-hero,
    .resource-section,
    .resource-breadcrumb {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════
   PARTNERS PAGE — ECOSYSTEM
   ═══════════════════════════════════════════════════════ */

.partners-dropdown {
    width: 360px;
}

.partners-page .partner-hero {
    position: relative;
    padding: 10rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.partner-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(37, 99, 235, 0.08), transparent 60%),
        radial-gradient(ellipse 30% 30% at 15% 70%, rgba(96, 165, 250, 0.06), transparent 50%);
    pointer-events: none;
    animation: partnerHeroPulse 12s ease-in-out infinite alternate;
}

@keyframes partnerHeroPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.partner-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.partner-hero-inner h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.partner-hero-inner .lead {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.partner-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-section--wide {
    max-width: 1400px;
}

.partner-section--alt {
    background: var(--bg-dark);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.partner-section--alt > .partner-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-section--alt.partner-section--wide > .partner-section-inner {
    max-width: 1400px;
}

.why-matter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.why-matter-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition);
}

.why-matter-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-matter-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 1.25rem;
}

.why-matter-card__icon i { width: 20px; height: 20px; }

.why-matter-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    color: var(--text-white);
}

.why-matter-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.category-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.category-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
    background: rgba(96, 165, 250, 0.04);
}

.category-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 1.25rem;
}

.category-card__icon i { width: 18px; height: 18px; }

.category-card h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.category-card__tags span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-gray);
}

.community-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.community-story__text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.community-story__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.community-story__chips span {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.02);
}

.community-story__visual {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
}

.community-story__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.partners-page .partners-grid {
    padding: 0;
    margin-top: 3rem;
}

.partners-page .partner-content p {
    height: auto;
    min-height: 2.7rem;
}

.feature-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.feature-4-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.015);
}

.feature-4-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.3);
}

.feature-4-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    border-radius: 12px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
}

.feature-4-card__icon i { width: 22px; height: 22px; }

.feature-4-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.feature-4-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.55;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: rgba(96, 165, 250, 0.25);
}

.benefit-item i {
    width: 18px;
    height: 18px;
    color: var(--blue-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.featured-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.featured-partner-card {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition);
}

.featured-partner-card:hover {
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-3px);
}

.featured-partner-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--blue-400);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.featured-partner-card h3 {
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.featured-partner-card p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.featured-partner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.featured-partner-meta span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.55rem;
    border-radius: 4px;
    background: rgba(96, 165, 250, 0.08);
    color: var(--blue-400);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.verified-band,
.affiliate-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), rgba(30, 58, 138, 0.1));
    margin-top: 2rem;
}

.verified-band h2,
.affiliate-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.verified-band p,
.affiliate-band p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.verified-list,
.affiliate-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.verified-list li,
.affiliate-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.verified-list li i,
.affiliate-list li i {
    width: 16px;
    height: 16px;
    color: var(--blue-400);
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 2.5rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-500), var(--border));
}

.journey-step {
    position: relative;
    padding-bottom: 2.5rem;
}

.journey-step:last-child { padding-bottom: 0; }

.journey-step::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-black);
    border: 2px solid var(--blue-500);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.35);
}

.journey-step__num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--blue-400);
    margin-bottom: 0.35rem;
}

.journey-step h3 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 0.4rem;
}

.journey-step p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.story-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition);
}

.story-card:hover {
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-4px);
}

.story-card__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 0.75rem;
}

.story-card h3 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.story-card dl {
    display: grid;
    gap: 1rem;
}

.story-card dt {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.story-card dd {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
}

.world-map {
    margin-top: 3rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.world-map__svg {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    opacity: 0.35;
}

.world-map__pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.world-map__pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
    animation: pinPulse 2.5s ease-out infinite;
    pointer-events: auto;
    cursor: pointer;
}

.world-map__pin::after {
    content: attr(data-label);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-white);
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.world-map__pin:hover::after { opacity: 1; }

@keyframes pinPulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.world-map__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.world-map__stat {
    text-align: center;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.world-map__stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.world-map__stat span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.partner-faq {
    margin-top: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.partner-faq-item {
    border-bottom: 1px solid var(--border);
}

.partner-faq-item button {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.partner-faq-item button i {
    width: 18px;
    height: 18px;
    color: var(--blue-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.partner-faq-item.active button i {
    transform: rotate(180deg);
}

.partner-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.partner-faq-answer p {
    padding-bottom: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.partner-final-cta {
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--border);
    background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(59, 130, 246, 0.12), transparent 70%);
}

.partner-final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.partner-final-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .why-matter-grid,
    .feature-4-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-story,
    .verified-band,
    .affiliate-band {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .world-map__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-matter-grid,
    .feature-4-grid,
    .world-map__stats {
        grid-template-columns: 1fr;
    }

    .partner-hero {
        padding: 8rem 1.25rem 4rem;
    }

    .verified-band,
    .affiliate-band {
        padding: 1.75rem;
    }
}

/* ═══════════════════════════════════════════════════════
   SCALABILITY — STRATEGIC VISION ADDITIONS
   ═══════════════════════════════════════════════════════ */

body.strategy-locked {
    overflow: hidden;
}

.sl-access-gate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sl-access-gate.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sl-access-gate__panel {
    max-width: 440px;
    width: 100%;
    padding: 2.5rem;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(24, 24, 28, 0.98), rgba(18, 18, 22, 0.98));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    text-align: center;
}

.sl-access-gate__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 1.25rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.08);
}

.sl-access-gate__badge i {
    width: 14px;
    height: 14px;
}

.sl-access-gate__panel h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.sl-access-gate__panel > p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.sl-access-gate__form {
    text-align: left;
    display: grid;
    gap: 0.65rem;
}

.sl-access-gate__form label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.sl-access-gate__form input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.sl-access-gate__form input:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.5);
}

.sl-access-gate__hint {
    margin-top: 1rem !important;
    font-size: 0.8rem !important;
    color: var(--text-gray);
}

.sl-access-gate__back {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-decoration: none;
}

.sl-access-gate__back:hover {
    color: var(--blue-400);
}

.strategy-principles {
    padding: 5rem 2rem 6rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.principle-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
    transition: var(--transition);
}

.principle-card:hover {
    border-color: rgba(96, 165, 250, 0.25);
}

.principle-card i {
    width: 18px;
    height: 18px;
    color: var(--blue-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.principle-card span {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.45;
}

.timeline-item.current-phase .timeline-content {
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.1);
}

.current-position {
    padding: 4rem 2rem 6rem;
}

.current-position-panel {
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 2.5rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), rgba(30, 58, 138, 0.08));
}

.current-position-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 1.5rem;
}

.current-focus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.current-focus-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(74, 222, 128, 0.25);
    background: rgba(74, 222, 128, 0.08);
    color: #86efac;
    font-size: 0.88rem;
    font-weight: 600;
}

.current-focus-item i {
    width: 14px;
    height: 14px;
}

.future-phases-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.future-phases-note span {
    color: var(--text-white);
    font-weight: 600;
}

.ecosystem-flywheel {
    padding: 6rem 2rem;
}

.flywheel {
    position: relative;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    margin: 3rem auto 1.5rem;
}

.flywheel-ring {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px dashed rgba(96, 165, 250, 0.25);
    animation: flywheelSpin 40s linear infinite;
}

.flywheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.flywheel-center span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-white);
}

.flywheel-center small {
    font-size: 0.65rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

.flywheel-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    margin-left: -55px;
    margin-top: -18px;
    transform: rotate(calc(var(--i) * 40deg)) translateY(-175px) rotate(calc(var(--i) * -40deg));
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(18, 18, 18, 0.9);
    transition: var(--transition);
}

.flywheel-node:hover {
    border-color: rgba(96, 165, 250, 0.4);
    color: var(--blue-400);
}

@keyframes flywheelSpin {
    to { transform: rotate(360deg); }
}

.flywheel-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.why-ecosystem {
    padding: 4rem 2rem 6rem;
}

.why-chain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    max-width: 320px;
    margin: 2.5rem auto 0;
}

.why-chain-item {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    color: var(--text-light);
}

.why-chain-item--end {
    border-color: rgba(96, 165, 250, 0.35);
    color: var(--blue-400);
    background: rgba(96, 165, 250, 0.08);
}

.why-chain > i {
    width: 16px;
    height: 16px;
    color: var(--blue-400);
    opacity: 0.7;
}

.decisions-section {
    padding: 5rem 2rem 7rem;
}

.decisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 2.5rem auto 0;
}

.decision-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.35rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.015);
}

.decision-card i {
    width: 18px;
    height: 18px;
    color: #f87171;
    flex-shrink: 0;
    margin-top: 2px;
}

.decision-card span {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.45;
}

@media (max-width: 768px) {
    .flywheel-node {
        width: 88px;
        margin-left: -44px;
        font-size: 0.62rem;
        transform: rotate(calc(var(--i) * 40deg)) translateY(-140px) rotate(calc(var(--i) * -40deg));
    }
}


/* ==========================================
   Homepage Refinement 2026 (index.html only)
   Scoped classes: hp-*, enhanced hero/about
   ========================================== */

.hero-enterprise {
    position: relative;
    overflow: hidden;
}

.hero-ambient {
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(96, 165, 250, 0.12), transparent 70%),
        radial-gradient(ellipse 40% 35% at 80% 20%, rgba(56, 189, 248, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: hpAmbientDrift 18s ease-in-out infinite alternate;
}

@keyframes hpAmbientDrift {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
    to { transform: translate3d(2%, 3%, 0) scale(1.05); opacity: 1; }
}

.hero-enterprise .hero-content,
.hero-enterprise .hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual {
    --mx: 50%;
    --my: 40%;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -8%;
    background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(96, 165, 250, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.hv-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hv-net-line {
    fill: none;
    stroke: rgba(96, 165, 250, 0.45);
    stroke-width: 1.2;
    stroke-dasharray: 6 8;
    animation: hvDash 8s linear infinite;
}

.hv-net-line--delayed {
    stroke: rgba(56, 189, 248, 0.3);
    animation-duration: 12s;
    animation-direction: reverse;
}

@keyframes hvDash {
    to { stroke-dashoffset: -80; }
}

.hv-net-node {
    fill: var(--blue-400);
    opacity: 0.7;
}

.hv-net-node--pulse {
    animation: dotPulse 2.4s ease-in-out infinite;
}

.hv-ai-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-400);
    background: rgba(10, 10, 12, 0.75);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    backdrop-filter: blur(8px);
}

.hv-ai-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: dotPulse 1.6s ease-in-out infinite;
}

.hv-live-metric {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(96, 165, 250, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hv-live-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.hv-live-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #34d399;
    font-variant-numeric: tabular-nums;
}

.hv-workflow {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.hv-wf-step {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding: 0.25rem 0.45rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.hv-wf-step.active {
    color: var(--blue-400);
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.25);
}

.hv-wf-pipe {
    width: 12px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hv-wf-pipe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
    animation: hvPipeFlow 2.2s linear infinite;
}

@keyframes hvPipeFlow {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.hv-chart-area {
    position: relative;
    overflow: hidden;
}

.hv-data-stream {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.08), transparent);
    animation: hvStream 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hvStream {
    0% { left: -40%; }
    100% { left: 110%; }
}

.hv-panel--main,
.hv-panel--side {
    position: relative;
    z-index: 1;
}

/* About infrastructure journey */
.infra-journey {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 420px;
    gap: 0;
}

.infra-step {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.15rem 1.35rem;
    background: rgba(24, 24, 24, 0.85);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    opacity: 0.55;
    transform: translateX(8px);
}

.infra-journey.is-active .infra-step {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--step, 0) * 0.12s);
}

.infra-step:hover {
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.infra-step-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-400);
}

.infra-step-name {
    font-weight: 500;
    color: var(--text-light);
}

.infra-connector {
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
}

.infra-connector span {
    width: 1px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.55), rgba(96, 165, 250, 0.15));
    position: relative;
    overflow: hidden;
}

.infra-journey.is-active .infra-connector span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--blue-400);
    animation: infraFlow 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

@keyframes infraFlow {
    0% { top: -40%; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.infra-visual-animation {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 1;
    margin: 2rem 0 1.25rem;
    display: grid;
    place-items: center;
}

.infra-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.08);
    animation: infraPulse 4.5s ease-in-out infinite;
}

.infra-ring--outer {
    width: 100%;
    height: 100%;
}

.infra-ring--inner {
    width: 72%;
    height: 72%;
    animation-duration: 3.2s;
}

.infra-model-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 30px;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(96, 165, 250, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.infra-model-node::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    opacity: 0.4;
    background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.16), transparent 40%);
}

.infra-model-node--core { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 40px; }
.infra-model-node--network { top: 15%; left: 52%; transform: translate(-50%, -50%); }
.infra-model-node--data { top: 46%; left: 88%; transform: translate(-50%, -50%); }
.infra-model-node--security { top: 78%; left: 68%; transform: translate(-50%, -50%); }
.infra-model-node--ai { top: 72%; left: 18%; transform: translate(-50%, -50%); }

.infra-model-flow {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 2px dashed rgba(96, 165, 250, 0.28);
    animation: infraRotate 18s linear infinite;
}

@keyframes infraPulse {
    0%, 100% { transform: scale(0.98); opacity: 0.95; }
    50% { transform: scale(1.02); opacity: 1; }
}

@keyframes infraRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.infra-label {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Capabilities cards */
.hp-capabilities .cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 3.5rem auto 0;
}

.cap-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    min-height: 210px;
}

.cap-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    background: rgba(96, 165, 250, 0.04);
}

.cap-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: var(--blue-400);
}

.cap-card-icon i {
    width: 20px;
    height: 20px;
}

.cap-card h3 {
    font-size: 1.15rem;
    margin: 0.25rem 0 0;
}

.cap-card p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.55;
    flex: 1;
    margin: 0;
}

.cap-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-400);
    margin-top: 0.5rem;
}

.cap-card-cta i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.cap-card:hover .cap-card-cta i {
    transform: translateX(4px);
}

.cap-footer {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Product ecosystem */
.hp-product-ecosystem {
    padding: 7rem 2rem;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.hp-product-ecosystem::before {
    content: '';
    position: absolute;
    inset: 12% 10% auto;
    height: 280px;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.1), transparent 65%);
    pointer-events: none;
}

.pe-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 3.5rem auto 0;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    touch-action: pan-y;
}

.pe-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.pe-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1c1a17;
    background: linear-gradient(180deg, rgba(243, 232, 214, 0.98), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .pe-slide {
        flex-direction: row;
        align-items: stretch;
    }
}

.pe-slide-visual {
    width: 100%;
    overflow: hidden;
    background: rgba(28, 26, 23, 0.04);
}

@media (min-width: 768px) {
    .pe-slide-visual {
        flex: 1 1 60%;
        border-right: 1px solid rgba(28, 26, 23, 0.06);
    }
}

.pe-slide-visual img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .pe-slide-visual img {
        height: 100%;
        min-height: 400px;
    }
}

.pe-slide-content {
    flex: 1 1 40%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.pe-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(28, 26, 23, 0.12);
    background: rgba(255,255,255,0.48);
    color: #534d46;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.pe-slide-content h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1c1a17;
    line-height: 1.1;
}

.pe-slide-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #413d39;
}

.pe-link {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e2d3d;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pe-link i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.pe-slide:hover .pe-link i {
    transform: translateX(4px);
}

/* Controls */
.pe-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1c1a17;
    z-index: 10;
    transition: all 0.2s ease;
}

.pe-nav-btn:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

.pe-prev {
    left: 1rem;
}

.pe-next {
    right: 1rem;
}

.pe-pagination {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.pe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(28, 26, 23, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pe-dot.active {
    background: rgba(28, 26, 23, 0.8);
    transform: scale(1.2);
}

/* Industries */
.hp-industries {
    padding: 7rem 2rem;
    background: var(--bg-dark);
}

.hp-industries .industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 3.5rem auto 0;
}

.hp-industries .industry-card {
    padding: 1.5rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.015);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
}

.hp-industries .industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.hp-industries .industry-card i {
    width: 22px;
    height: 22px;
    color: var(--blue-400);
    margin-bottom: 0.85rem;
}

.hp-industries .industry-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hp-industries .industry-card p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* How we work horizontal timeline */
.hp-process .hp-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 1.5rem;
}

.hp-timeline-track {
    position: absolute;
    top: 1.85rem;
    left: 4%;
    right: 4%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hp-timeline-track::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
    transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hp-timeline.is-active .hp-timeline-track::after {
    width: 100%;
}

.hp-timeline-step {
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.hp-tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: var(--bg-black);
    border: 2px solid rgba(96, 165, 250, 0.45);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.hp-timeline.is-active .hp-tl-dot {
    background: var(--blue-400);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.45);
}

.hp-timeline-step h4 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.hp-timeline-step p {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.45;
    margin: 0;
}

/* Why SaintsLink refined */
.hp-why .hp-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
}

.hp-why .why-tile {
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hp-why .why-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.3);
}

.hp-why .why-tile i {
    width: 22px;
    height: 22px;
    color: var(--blue-400);
    margin-bottom: 1rem;
}

.hp-why .why-tile h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.hp-why .why-tile p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Partners preview */
.hp-partners {
    padding: 6rem 2rem;
}

.hp-partners .partners-slim-content {
    max-width: 820px;
}

.hp-partner-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.75rem 0 2rem;
}

.hp-partner-types span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-light);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.hp-partner-types span:hover {
    border-color: rgba(96, 165, 250, 0.35);
    color: var(--blue-400);
}

/* Vision */
.hp-vision {
    padding: 6rem 2rem;
    background: var(--bg-black);
    position: relative;
}

.hp-vision-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 16px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(96, 165, 250, 0.1), transparent 70%),
        rgba(18, 18, 22, 0.6);
}

.hp-vision-inner h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0.75rem 0 1rem;
}

.hp-vision-inner p {
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

/* Final CTA polish */
.hp-contact {
    position: relative;
    overflow: hidden;
}

.hp-contact-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(96, 165, 250, 0.12), transparent 70%),
        radial-gradient(ellipse 30% 30% at 80% 80%, rgba(56, 189, 248, 0.06), transparent 70%);
    pointer-events: none;
    animation: hpAmbientDrift 16s ease-in-out infinite alternate;
}

.hp-contact .contact-container {
    position: relative;
    z-index: 1;
}

.hp-contact .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

/* Homepage responsive */
@media (max-width: 1100px) {
    .hp-capabilities .cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-industries .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hp-process .hp-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
    }
    .hp-timeline-track {
        display: none;
    }
}

@media (max-width: 900px) {
    .eco-network {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
        padding-top: 0;
    }
    .eco-lines,
    .eco-hub {
        display: none;
    }
    .eco-node {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: none;
        width: 100%;
    }
    .eco-node:hover,
    .eco-node:focus-visible {
        transform: translateY(-3px);
    }
    .eco-tip {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
    }
    .eco-tip a {
        display: inline-block;
        margin-top: 0.25rem;
    }
}

@media (max-width: 768px) {
    .hv-ai-badge,
    .hv-live-metric,
    .hv-network {
        display: none;
    }
    .hv-workflow {
        display: none;
    }
    .hp-capabilities .cap-grid,
    .hp-why .hp-why-grid,
    .hp-industries .industry-grid {
        grid-template-columns: 1fr;
    }
    .hp-process .hp-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hp-timeline-step {
        text-align: left;
        display: grid;
        grid-template-columns: 14px 1fr;
        column-gap: 1rem;
        align-items: start;
    }
    .hp-tl-dot {
        margin: 0.35rem 0 0;
        grid-row: 1 / span 2;
    }
    .eco-network {
        grid-template-columns: 1fr;
    }
}

/* --- SAINTSLINK WORK PAGE --- */
.work-page {
    padding: 7.5rem 1.5rem 0;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), transparent 24%);
}
.work-hero,
.work-section {
    max-width: 1200px;
    margin: 0 auto;
}
.work-hero {
    padding: 5rem 0 4rem;
}
.work-eyebrow {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--blue-400);
    margin-bottom: 1rem;
}
.work-hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1.02;
    margin-bottom: 1.2rem;
    max-width: 920px;
}
.work-hero p {
    max-width: 720px;
    font-size: 1.06rem;
    color: var(--text-gray);
}
.work-section {
    padding: 3.5rem 0;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.section-heading h2,
.design-intro h2,
.capability-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
    margin: 0;
    max-width: 760px;
}
.product-showcase {
    display: grid;
    gap: 1.1rem;
}
.product-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
    padding: 1.8rem;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}
.product-panel--reverse {
    grid-template-columns: 0.95fr 1.05fr;
}
.product-panel__intro h3 {
    font-size: 1.9rem;
    margin: 0.8rem 0 0.7rem;
}
.product-panel__intro p,
.design-intro p,
.industry-card p,
.research-card p,
.product-development p,
.timeline-events p,
.metric-card span,
.work-cta p,
.capability-band p {
    color: var(--text-gray);
}
.work-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.26);
    color: var(--blue-400);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}
.work-link-btn,
.work-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.24);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}
.work-link-btn:hover,
.work-cta-btn:hover {
    border-color: var(--blue-400);
    background: rgba(96, 165, 250, 0.12);
    transform: translateY(-1px);
}
.product-panel__visual,
.industry-card,
.research-card,
.design-card,
.metric-card,
.timeline-events,
.product-development,
.capability-band {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}
.product-panel__visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
}
.feature-pill {
    display: inline-flex;
    width: fit-content;
    padding: 0.65rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-size: 0.92rem;
}
.product-development {
    padding: 1.6rem 1.8rem;
}
.product-development h3 {
    font-size: 1.5rem;
    margin: 0.6rem 0 0.5rem;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1rem;
}
.industry-card,
.design-card,
.metric-card,
.research-card {
    padding: 1.35rem;
}
.industry-card h3,
.design-card h3,
.research-card h3 {
    margin: 0 0 0.6rem;
}
.research-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x proximity;
}
.research-card {
    min-width: 280px;
    scroll-snap-align: start;
}
.research-category {
    color: var(--blue-400);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.design-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}
.design-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 1rem;
}
.capability-band {
    padding: 2rem;
}
.capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}
.capability-list span {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.03);
}
.timeline {
    display: grid;
    gap: 1rem;
    border-left: 1px solid var(--border);
    padding-left: 1.3rem;
}
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
}
.timeline-year {
    color: var(--blue-400);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-top: 0.2rem;
}
.timeline-events {
    padding: 1rem 1.15rem;
}
.timeline-events p {
    margin: 0.2rem 0;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 1rem;
}
.metric-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.4rem;
}
.metric-card strong {
    font-size: 1.8rem;
    color: var(--text-light);
}
.work-cta {
    text-align: center;
    padding: 4rem 0 2rem;
}
.work-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0.4rem 0 0.75rem;
}
.work-cta p {
    max-width: 640px;
    margin: 0 auto 1.4rem;
}
.page-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 7.5rem 1.5rem 3rem;
}
.page-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}
.page-card h2,
.page-card h3 {
    margin-bottom: 0.75rem;
}
.page-card p,
.page-card li {
    color: var(--text-gray);
}
.page-card ul {
    padding-left: 1.1rem;
}
.saintslink-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg, #000);
    color: var(--text-gray, #888);
    padding: 5rem 2rem 2rem;
    font-family: inherit;
    margin-top: 4rem;
}
.saintslink-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.saintslink-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}
.saintslink-footer .footer-brand {
    flex: 1 1 300px;
}
.saintslink-footer .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light, #fff);
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.saintslink-footer .footer-description {
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 320px;
}
.saintslink-footer .footer-columns {
    flex: 2 1 600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}
.saintslink-footer .footer-column h4 {
    color: var(--text-light, #fff);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.saintslink-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.saintslink-footer .footer-column li {
    margin-bottom: 0.7rem;
}
.saintslink-footer .footer-column a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}
.saintslink-footer .footer-column a:hover {
    color: var(--blue-400, #60a5fa);
    padding-left: 0.25rem;
}
.saintslink-footer .footer-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-left: 0.5rem;
    color: var(--text-light, #fff);
    font-weight: 600;
}
.saintslink-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}
.saintslink-footer .footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.saintslink-footer .footer-legal-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.saintslink-footer .footer-legal-links a:hover {
    color: var(--text-light, #fff);
}
[data-theme="light"] .work-page {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), transparent 24%);
}
[data-theme="light"] .product-panel,
[data-theme="light"] .industry-card,
[data-theme="light"] .research-card,
[data-theme="light"] .design-card,
[data-theme="light"] .metric-card,
[data-theme="light"] .timeline-events,
[data-theme="light"] .product-development,
[data-theme="light"] .capability-band,
[data-theme="light"] .page-card {
    background: #fdfdfc;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .product-panel__visual,
[data-theme="light"] .feature-pill {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}
@media (max-width: 1000px) {
    .product-panel,
    .product-panel--reverse,
    .design-layout {
        grid-template-columns: 1fr;
    }
    .industry-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}
@media (max-width: 768px) {
    .work-page {
        padding-top: 6rem;
    }
    .work-hero {
        padding-top: 3.5rem;
    }
    .section-heading {
        flex-direction: column;
        align-items: start;
    }
    .saintslink-footer .footer-top {
        flex-direction: column;
        gap: 3rem;
    }
    .saintslink-footer .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    .saintslink-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .saintslink-footer .footer-legal-links {
        justify-content: center;
    }
}
@media (max-width: 640px) {
    .industry-grid,
    .design-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .timeline-item {
        grid-template-columns: 1fr;
    }
    .timeline {
        border-left: none;
        padding-left: 0;
    }
    .research-track {
        grid-template-columns: 1fr;
    }
    .research-card {
        min-width: 100%;
    }
    .product-panel {
        padding: 1.25rem;
    }
}
@media (max-width: 480px) {
    .saintslink-footer .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Homepage Motion System (body.home only)
   ========================================== */

body.home {
    --amb-x: 50%;
    --amb-y: 30%;
}

body.home::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 45% 35% at var(--amb-x) var(--amb-y), rgba(96, 165, 250, 0.07), transparent 65%),
        radial-gradient(ellipse 40% 30% at 80% 10%, rgba(56, 189, 248, 0.04), transparent 60%);
    transition: background 0.6s ease;
}

body.home > *:not(nav):not(.mobile-menu) {
    position: relative;
    z-index: 1;
}

body.home nav,
body.home .mobile-menu {
    z-index: 1000;
}

/* Replayable section entrance */
body.home > section.hp-section:not(#home) {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

body.home > section.hp-section.hp-inview:not(#home) {
    opacity: 1;
    transform: translateY(0);
}

#home.hp-section {
    opacity: 1;
    transform: none;
}

/* Stagger children — reset & replay with parent */
body.home .hp-stagger {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--si, 0) * 0.07s);
    will-change: opacity, transform;
}

body.home .hp-inview .hp-stagger,
body.home #home.hp-inview .hp-stagger {
    opacity: 1;
    transform: translateY(0);
}

/* Hero: no permanent keyframe lock — use stagger replay */
body.home .hero-enterprise .hero-content > *,
body.home .hero-enterprise .hero-visual {
    animation: none;
}

body.home .hero-visual.hp-hero-visual {
    --px: 0px;
    --py: 0px;
    opacity: 0;
    transform: translate3d(var(--px), calc(var(--py) + 16px), 0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

body.home #home.hp-inview .hero-visual.hp-hero-visual {
    opacity: 1;
    transform: translate3d(var(--px), var(--py), 0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.12s linear;
}

body.home .hero-visual .hv-panel--main {
    transform: translate3d(calc(var(--px) * 0.35), calc(var(--py) * 0.25), 0);
    transition: transform 0.2s ease-out;
}

body.home .hero-visual .hv-panel--side {
    transform: translate3d(calc(var(--px) * -0.5), calc(var(--py) * -0.35), 0);
    transition: transform 0.2s ease-out;
}

/* Premium buttons (homepage) */
body.home .btn-primary {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

body.home .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(96, 165, 250, 0.18), transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

body.home .btn-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 12px 28px -12px rgba(37, 99, 235, 0.55),
        0 0 0 1px rgba(96, 165, 250, 0.25);
}

body.home .btn-primary:hover::after {
    transform: translateX(120%);
}

body.home .btn-secondary {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

body.home .btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 10px 28px -14px rgba(96, 165, 250, 0.35);
}

/* Inside SaintsLink — featured CTA */
body.home .btn-inside,
body.home #inside-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
    padding: 1.125rem 2.25rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(96, 165, 250, 0.35);
    box-shadow:
        0 0 0 1px rgba(96, 165, 250, 0.08),
        0 8px 24px -12px rgba(37, 99, 235, 0.45);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

body.home .btn-inside::before,
body.home #inside-btn::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.28), transparent 55%);
    opacity: 0.45;
    animation: insideAmbient 4.5s ease-in-out infinite;
    pointer-events: none;
}

body.home .btn-inside i,
body.home #inside-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.35s ease;
}

body.home .btn-inside:hover,
body.home #inside-btn:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(147, 197, 253, 0.55);
    box-shadow:
        0 0 0 1px rgba(96, 165, 250, 0.2),
        0 0 32px rgba(59, 130, 246, 0.22),
        0 16px 36px -14px rgba(0, 0, 0, 0.55);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.95));
}

body.home .btn-inside:hover i,
body.home #inside-btn:hover i {
    transform: translateX(4px);
}

@keyframes insideAmbient {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.08); }
}

/* Infra journey — stagger + connectors, no infinite glow */
body.home .infra-step {
    opacity: 0;
    transform: translateX(-18px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    transition-delay: calc(var(--step, 0) * 0.14s);
    animation: none;
}

@keyframes infraPulse {
    0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(96, 165, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

body.home .infra-journey.is-active .infra-step,
body.home #about.hp-inview .infra-step.hp-stagger {
    opacity: 1;
    transform: translateX(0);
    animation: infraPulse 2s infinite;
    border-color: rgba(96, 165, 250, 0.3);
}

body.home .infra-step:hover {
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

body.home .infra-connector span::after {
    animation: none;
    opacity: 0;
}

body.home .infra-journey.is-active .infra-connector span::after {
    opacity: 1;
    animation: infraFlow 1.8s ease-in-out infinite;
}

/* Cards — premium hover */
body.home .cap-card,
body.home .industry-card,
body.home .why-tile,
body.home .eco-node {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

body.home .cap-card:hover,
body.home .industry-card:hover,
body.home .why-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(96, 165, 250, 0.08);
}

body.home .eco-node:hover,
body.home .eco-node:focus-visible {
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.45),
        0 0 24px rgba(96, 165, 250, 0.12);
}

/* Soft ambient on contact / vision */
body.home .hp-contact-glow,
body.home .hero-ambient {
    animation: hpAmbientDrift 18s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    body.home > section.hp-section,
    body.home .hp-stagger,
    body.home .infra-step,
    body.home .btn-inside::before,
    body.home #inside-btn::before,
    body.home .hero-ambient,
    body.home .hp-contact-glow {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ======================================================
   SAINTSLINK THEME SYSTEM — Light Mode
   Applied via <html data-theme="light">
   ====================================================== */

/* Smooth theme transitions (only active after first toggle) */
.theme-ready,
.theme-ready *,
.theme-ready *::before,
.theme-ready *::after {
    transition: background-color 400ms ease, color 400ms ease, border-color 400ms ease,
                box-shadow 400ms ease !important;
}

/* === LIGHT MODE TOKEN OVERRIDES === */
[data-theme="light"] {
    --bg-black: #F6F5F2;
    --bg-dark: #EEEDE9;
    --blue-400: #2563eb;
    --blue-500: #1d4ed8;
    --blue-600: #1e40af;
    --text-white: #1A1A2E;
    --text-light: #2D2D3F;
    --text-gray: #5a6072;
    --border: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(37, 99, 235, 0.4);
    --primary-gradient: linear-gradient(135deg, #2563eb, #1e40af);
    --surface-gradient: linear-gradient(180deg, rgba(30,58,138,0.05), rgba(246,245,242,0));
}

/* Body */
[data-theme="light"] body { background-color: var(--bg-black); color: var(--text-white); }

/* Navigation */
[data-theme="light"] nav { background: rgba(246,245,242,0.92); border-bottom-color: rgba(0,0,0,0.1); }
[data-theme="light"] .nav-logo { color: var(--text-white); }
[data-theme="light"] .nav-links > a { color: var(--text-white); }
[data-theme="light"] .dropdown-trigger { color: var(--text-white); }
[data-theme="light"] .dropdown-content { background: #FFFFFF; border-color: rgba(0,0,0,0.1); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
[data-theme="light"] .dropdown-item:hover { background: rgba(37,99,235,0.04); }
[data-theme="light"] .item-title { color: #1A1A2E; }
[data-theme="light"] .item-desc { color: var(--text-gray); }
[data-theme="light"] .solutions-mega-card { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .solutions-mega-card:hover { background: rgba(37,99,235,0.04); }
[data-theme="light"] .solutions-mega-card__title { color: #1A1A2E; }
[data-theme="light"] .solutions-mega-card__desc { color: var(--text-gray); }
[data-theme="light"] .solutions-mega-footer { border-color: rgba(0,0,0,0.08); background: rgba(0,0,0,0.02); }
[data-theme="light"] .solutions-mega-cta { color: #1A1A2E; }
[data-theme="light"] .mobile-menu { background: rgba(246,245,242,0.98); }
[data-theme="light"] .mobile-menu-btn { color: #1A1A2E; }
[data-theme="light"] .mobile-link { color: #1A1A2E; }
[data-theme="light"] .mobile-dropdown-trigger { color: #1A1A2E; }
[data-theme="light"] .mobile-dropdown-content { background: rgba(0,0,0,0.03); }
[data-theme="light"] .mobile-dropdown-content a { color: var(--text-gray); }
[data-theme="light"] .mobile-dropdown-content a:hover { color: #1A1A2E; }
[data-theme="light"] .nav-cta { background: #1A1A2E; color: #FFFFFF !important; }
[data-theme="light"] .nav-cta:hover { background: var(--blue-500); }

/* Buttons */
[data-theme="light"] .btn-primary { background: #1A1A2E; color: #FFFFFF; }
[data-theme="light"] .btn-primary:hover { background: var(--blue-500); color: #FFFFFF; box-shadow: 0 10px 30px -10px rgba(29,78,216,0.5); }
[data-theme="light"] .btn-secondary { background: rgba(0,0,0,0.04); color: #1A1A2E; border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .btn-secondary:hover { background: rgba(0,0,0,0.08); border-color: var(--blue-400); color: #1A1A2E; }
[data-theme="light"] .btn-outline { color: #1A1A2E; border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .btn-outline:hover { background: #1A1A2E; color: #FFFFFF; }

/* Hero */
[data-theme="light"] .hero h1 { color: #1A1A2E; }
[data-theme="light"] .hero p { color: var(--text-gray); }
/* removed for consistent theme: [data-theme="light"] .hero-enterprise { background: var(--bg-black); } */
/* removed for consistent theme: [data-theme="light"] .hero-ambient { opacity: 0.25; } */
[data-theme="light"] .hv-panel--main, [data-theme="light"] .hv-panel--side { background: #FFFFFF; border-color: rgba(0,0,0,0.1); box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
[data-theme="light"] .hv-sidebar { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .hv-header-bar { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .hv-stat-block { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .hv-table-row { background: #FFFFFF; border-color: rgba(0,0,0,0.05); }
[data-theme="light"] .hv-row-header { background: rgba(0,0,0,0.03); }
[data-theme="light"] .hv-net-line { stroke: rgba(37,99,235,0.3); }
[data-theme="light"] .hv-net-node { fill: #2563eb; }
[data-theme="light"] .hv-bar { background: rgba(37,99,235,0.15); }
[data-theme="light"] .hv-bar--active { background: #2563eb; }
[data-theme="light"] .hv-ai-badge { background: rgba(255,255,255,0.95); border-color: rgba(37,99,235,0.2); color: #1A1A2E; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
[data-theme="light"] .hv-live-metric { background: rgba(255,255,255,0.95); border-color: rgba(0,0,0,0.1); color: #1A1A2E; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
[data-theme="light"] .hv-live-label { color: var(--text-gray); }
[data-theme="light"] .hv-live-value { color: #1A1A2E; }

/* Section common */
[data-theme="light"] .section-header h2 { color: #1A1A2E; }
[data-theme="light"] .about { background: var(--bg-black); }
[data-theme="light"] .about-content p { color: var(--text-gray); }
[data-theme="light"] .packages, [data-theme="light"] .approach, [data-theme="light"] .process-section, [data-theme="light"] .partners-slim, [data-theme="light"] .products-section { background: var(--bg-dark); }
/* removed for consistent theme: [data-theme="light"] .hp-ecosystem { background: var(--bg-black); } */
/* removed for consistent theme: [data-theme="light"] .hp-industries { background: var(--bg-dark); } */
/* removed for consistent theme: [data-theme="light"] .hp-process { background: var(--bg-dark); } */
/* removed for consistent theme: [data-theme="light"] .hp-why { background: var(--bg-black); } */

/* Cards */
[data-theme="light"] .package-card, [data-theme="light"] .step-card, [data-theme="light"] .partner-card, [data-theme="light"] .portfolio-card, [data-theme="light"] .product-card, [data-theme="light"] .case-entry, [data-theme="light"] .why-tile, [data-theme="light"] .cap-card, [data-theme="light"] .capability-card, [data-theme="light"] .info-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.06); color: #1A1A2E; }
[data-theme="light"] .package-card:hover, [data-theme="light"] .step-card:hover, [data-theme="light"] .partner-card:hover, [data-theme="light"] .product-card:hover, [data-theme="light"] .why-tile:hover, [data-theme="light"] .cap-card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
[data-theme="light"] .package-features li, [data-theme="light"] .step-card p, [data-theme="light"] .partner-content p, [data-theme="light"] .portfolio-content p, [data-theme="light"] .product-card p, [data-theme="light"] .case-challenge, [data-theme="light"] .why-tile p, [data-theme="light"] .cap-card p { color: var(--text-gray); }
[data-theme="light"] .package-outcome { background: rgba(0,0,0,0.03); color: var(--text-gray); }
[data-theme="light"] .partner-content h3 { color: #1A1A2E; }

/* Industries */
[data-theme="light"] .industry-card { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .industry-card:hover { background: rgba(255,255,255,0.9); border-color: rgba(37,99,235,0.2); }
[data-theme="light"] .industry-card p { color: var(--text-gray); }

/* Ecosystem */
[data-theme="light"] .eco-hub { background: #FFFFFF; border-color: rgba(37,99,235,0.3); color: #1A1A2E; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
[data-theme="light"] .eco-node { background: #FFFFFF; border-color: rgba(0,0,0,0.1); color: #1A1A2E; }
[data-theme="light"] .eco-node:hover { border-color: var(--blue-400); box-shadow: 0 4px 16px rgba(37,99,235,0.15); }
[data-theme="light"] .eco-tip { background: #FFFFFF; border-color: rgba(0,0,0,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.1); color: #1A1A2E; }
[data-theme="light"] .eco-tip p { color: var(--text-gray); }
[data-theme="light"] .eco-lines line { stroke: rgba(37,99,235,0.15); }

/* Timeline */
[data-theme="light"] .hp-tl-dot { border-color: var(--blue-400); background: #F6F5F2; }
[data-theme="light"] .hp-timeline-track { background: rgba(0,0,0,0.1); }
[data-theme="light"] .hp-timeline-step p { color: var(--text-gray); }

/* Vision */
[data-theme="light"] .hp-vision { background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(30,58,138,0.03)); border-color: rgba(37,99,235,0.1); }
[data-theme="light"] .hp-vision-inner p { color: var(--text-gray); }

/* Infra */
[data-theme="light"] .infra-step { background: #FFFFFF; border-color: rgba(0,0,0,0.1); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .infra-label, [data-theme="light"] .intro-stat-label { color: var(--text-gray); }

/* Partner types */
[data-theme="light"] .hp-partner-types span { background: #FFFFFF; border: 1px solid rgba(0,0,0,0.1); color: var(--text-gray); }

/* Forms */
[data-theme="light"] input, [data-theme="light"] textarea, [data-theme="light"] select { background: #FFFFFF; border: 1px solid rgba(0,0,0,0.12); color: #1A1A2E; }
[data-theme="light"] input:focus, [data-theme="light"] textarea:focus { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
[data-theme="light"] input::placeholder, [data-theme="light"] textarea::placeholder { color: #8a8fa8; }

/* Footer */
[data-theme="light"] footer, [data-theme="light"] .saintslink-footer { background: #EEEDE9; border-color: rgba(0,0,0,0.08); color: var(--text-gray); }
[data-theme="light"] .saintslink-footer .footer-logo { color: #1A1A2E; }
[data-theme="light"] .saintslink-footer .footer-column h4 { color: #1A1A2E; }
[data-theme="light"] .saintslink-footer .footer-column a { color: var(--text-gray); }
[data-theme="light"] .saintslink-footer .footer-column a:hover { color: var(--blue-400); }
[data-theme="light"] .saintslink-footer .footer-bottom { border-color: rgba(0,0,0,0.08); color: var(--text-gray); }
[data-theme="light"] .saintslink-watermark { color: rgba(0,0,0,0.35); background: rgba(246,245,242,0.9); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .saintslink-watermark:hover { color: rgba(0,0,0,0.7); }

/* Product pages */
[data-theme="light"] .product-hero { background: linear-gradient(180deg, rgba(37,99,235,0.06) 0%, var(--bg-black) 100%); }
[data-theme="light"] .product-hero-content h1 { color: #1A1A2E; }
[data-theme="light"] .product-hero-content p { color: var(--text-gray); }
[data-theme="light"] .crm-mockup-shell, [data-theme="light"] .booking-mockup-shell { background: #FFFFFF; border-color: rgba(0,0,0,0.1); box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
[data-theme="light"] .crm-mockup-titlebar, [data-theme="light"] .crm-mock-sidebar, [data-theme="light"] .crm-mock-table-head { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .crm-mock-main { background: var(--bg-black); }
[data-theme="light"] .crm-mock-stat, [data-theme="light"] .crm-mock-table-row, [data-theme="light"] .booking-mock-slot, [data-theme="light"] .booking-mock-appt { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }

/* Solution pages */
[data-theme="light"] .solution-hero { background: var(--bg-black); }
[data-theme="light"] .solution-hero-content h1 { color: #1A1A2E; }
[data-theme="light"] .solution-hero-subtitle, [data-theme="light"] .solution-hero-intro { color: var(--text-gray); }
[data-theme="light"] .solution-service-card, [data-theme="light"] .solutions-index-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .solution-service-card h3, [data-theme="light"] .solutions-index-card h2 { color: #1A1A2E; }
[data-theme="light"] .solution-service-card p, [data-theme="light"] .solutions-index-card p { color: var(--text-gray); }
[data-theme="light"] .solution-capability-highlight { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.1); }
[data-theme="light"] .solution-capability-highlight h2 { color: #1A1A2E; }
[data-theme="light"] .solution-capability-highlight p { color: var(--text-gray); }

/* Resource pages */
[data-theme="light"] .resource-card, [data-theme="light"] .resource-status-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .resource-card h3 { color: #1A1A2E; }
[data-theme="light"] .resource-card p, [data-theme="light"] .resource-status-card__label { color: var(--text-gray); }
[data-theme="light"] .resource-status-card__value { color: #1A1A2E; }

/* Editorial */
[data-theme="light"] .editorial-body, [data-theme="light"] .editorial-paragraph { color: var(--text-gray); }
[data-theme="light"] .editorial-body strong, [data-theme="light"] .editorial-title { color: #1A1A2E; }
[data-theme="light"] .editorial-section--alt { background: var(--bg-dark); }
[data-theme="light"] .editorial-callout { background: #FFFFFF; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .editorial-quote { background: linear-gradient(90deg, rgba(37,99,235,0.05), transparent); }

/* Research & publication */
[data-theme="light"] .research-card, [data-theme="light"] .publication-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .research-card h4, [data-theme="light"] .publication-card h4 { color: #1A1A2E; }
[data-theme="light"] .research-card p, [data-theme="light"] .publication-card p { color: var(--text-gray); }

/* Partner page cards */
[data-theme="light"] .why-matter-card, [data-theme="light"] .category-card, [data-theme="light"] .feature-4-card, [data-theme="light"] .featured-partner-card, [data-theme="light"] .story-card, [data-theme="light"] .benefit-item { background: #FFFFFF; border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .why-matter-card h3, [data-theme="light"] .category-card h3, [data-theme="light"] .feature-4-card h3, [data-theme="light"] .featured-partner-card h3, [data-theme="light"] .story-card h3, [data-theme="light"] .story-card dd { color: #1A1A2E; }
[data-theme="light"] .why-matter-card p, [data-theme="light"] .category-card p, [data-theme="light"] .feature-4-card p, [data-theme="light"] .featured-partner-card p { color: var(--text-gray); }
[data-theme="light"] .verified-band, [data-theme="light"] .affiliate-band { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.12); }
[data-theme="light"] .partner-faq-item button { color: #1A1A2E; }
[data-theme="light"] .partner-faq-answer p { color: var(--text-gray); }

/* Scalability */
[data-theme="light"] .scalability-hero { background: var(--bg-black); }
[data-theme="light"] .principle-card, [data-theme="light"] .timeline-content, [data-theme="light"] .synergy-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .principle-card span, [data-theme="light"] .phase-list li, [data-theme="light"] .hp-timeline-step p { color: var(--text-gray); }
[data-theme="light"] .timeline-item:hover .timeline-content { border-color: rgba(37,99,235,0.2); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* Notebook */
[data-theme="light"] .notebook-case { background: #FFFFFF; border-color: rgba(0,0,0,0.1); box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
[data-theme="light"] .notebook-header { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .nt-tab { color: var(--text-gray); }
[data-theme="light"] .note-item p { color: var(--text-gray); }

/* GM / FAQ / CTA */
[data-theme="light"] .gm-faq__item { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .gm-faq__trigger span { color: #1A1A2E; }
[data-theme="light"] .gm-faq__answer-inner { color: var(--text-gray); }
[data-theme="light"] .gm-cta, [data-theme="light"] .resource-cta-band { background: #EEEDE9; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .gm-cta__title { color: #1A1A2E; }
[data-theme="light"] .gm-cta__body { color: var(--text-gray); }

/* SL-ID / Verified page */
[data-theme="light"] .slid-card { background: #FFFFFF; border-color: rgba(0,0,0,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
[data-theme="light"] .slid-card__id { color: #1A1A2E; }
[data-theme="light"] .slid-card__role { color: var(--text-gray); }
[data-theme="light"] .slid-role { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .slid-role:hover { background: rgba(0,0,0,0.04); }
[data-theme="light"] .slid-role h4, [data-theme="light"] .slid-pillar h4, [data-theme="light"] .slid-timeline__content h4, [data-theme="light"] .slid-section__title { color: #1A1A2E; }
[data-theme="light"] .slid-role p, [data-theme="light"] .slid-pillar p, [data-theme="light"] .slid-timeline__content p, [data-theme="light"] .slid-section__subtitle { color: var(--text-gray); }
[data-theme="light"] .slid-pillar { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .slid-format { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .slid-timeline__content { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .slid-ecosystem__center { background: #FFFFFF; border-color: rgba(37,99,235,0.3); box-shadow: 0 0 40px rgba(37,99,235,0.08); }
[data-theme="light"] .slid-ecosystem__center h3 { color: #1A1A2E; }
[data-theme="light"] .slid-ecosystem__node { background: #FFFFFF; border-color: rgba(0,0,0,0.1); color: #4a5072; }
[data-theme="light"] .slid-ecosystem__node:hover { border-color: var(--blue-400); color: #1A1A2E; }

/* Work page */
[data-theme="light"] .work-filter-btn { background: rgba(0,0,0,0.04); color: #1A1A2E; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .work-filter-btn.active, [data-theme="light"] .work-filter-btn:hover { background: #1A1A2E; color: #FFFFFF; border-color: #1A1A2E; }

/* Contact */
[data-theme="light"] .contact { background: linear-gradient(0deg, var(--bg-dark) 0%, var(--bg-black) 100%); border-color: rgba(0,0,0,0.08); }

/* ======================================================
   THEME TOGGLE BUTTON
   ====================================================== */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-toggle-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--blue-400);
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(96,165,250,0.2);
}
[data-theme="light"] .theme-toggle-btn { color: #1A1A2E; border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .theme-toggle-btn:hover { background: rgba(0,0,0,0.06); border-color: var(--blue-400); box-shadow: 0 0 12px rgba(37,99,235,0.15); }
.theme-toggle-btn i { width: 16px; height: 16px; }
.mobile-theme-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
[data-theme="light"] .mobile-theme-row { color: #1A1A2E; }

/* Platform authentication controls — scoped to new navigation additions only. */
.sl-auth-nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0.7rem;
}

.sl-auth-nav > a,
.sl-auth-actions > a,
.sl-profile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(148, 180, 222, 0.25);
    border-radius: 0.42rem;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-primary, #f5f8fc);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.sl-auth-nav > a:last-child,
.sl-auth-link--primary,
.sl-profile-button {
    border-color: rgba(104, 160, 255, 0.72);
    background: rgba(66, 133, 235, 0.16);
    color: var(--blue-300, #b7d2ff);
}

.sl-auth-nav > a:hover,
.sl-auth-actions > a:hover,
.sl-profile-button:hover {
    border-color: rgba(133, 183, 255, 0.95);
    background: rgba(76, 145, 247, 0.25);
    color: #fff;
}

.sl-mobile-auth {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 180, 222, 0.14);
}

.sl-mobile-auth .mobile-link,
.sl-mobile-auth .sl-auth-link,
.sl-mobile-auth .sl-profile-button {
    width: 100%;
    box-sizing: border-box;
}

.sl-profile-menu { position: relative; }
.sl-profile-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.45rem);
    z-index: 1000;
    min-width: 9.5rem;
    padding: 0.35rem;
    border: 1px solid rgba(148, 180, 222, 0.2);
    border-radius: 0.5rem;
    background: var(--navy-900, #101c2e);
    box-shadow: 0 0.85rem 2rem rgba(0, 0, 0, 0.28);
}
.sl-profile-menu.is-open .sl-profile-dropdown { display: grid; }
.sl-profile-dropdown a,
.sl-profile-dropdown button {
    padding: 0.55rem 0.6rem;
    border: 0;
    border-radius: 0.3rem;
    background: transparent;
    color: var(--text-primary, #f5f8fc);
    font: inherit;
    font-size: 0.8rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.sl-profile-dropdown a:hover,
.sl-profile-dropdown button:hover { background: rgba(76, 145, 247, 0.14); color: #fff; }

/* ── Project / Demo Modal System ───────────────────────────────────── */
.ep-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}
.ep-modal-overlay.active {
    display: flex;
}
.ep-modal {
    position: relative;
    background: var(--card-bg, #12192b);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    animation: modalIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.ep-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary, #f5f8fc);
    transition: background 0.18s;
    z-index: 2;
}
.ep-modal-close:hover { background: rgba(255, 255, 255, 0.16); }

/* Modal form fields */
.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
.modal-form-group label {
    font-size: 0.8rem;
    color: var(--text-gray, #8a99b3);
    font-weight: 500;
}
.modal-form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
    color: var(--text-primary, #f5f8fc);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.18s;
    width: 100%;
    box-sizing: border-box;
}
.modal-form-control:focus {
    border-color: var(--blue-400, #4c91f7);
    background: rgba(76, 145, 247, 0.06);
}
.modal-form-control::placeholder { color: rgba(255, 255, 255, 0.3); }
.modal-form-control option { background: #12192b; color: #f5f8fc; }

/* Modal submit button */
.modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4c91f7 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.18s, transform 0.18s;
    letter-spacing: 0.01em;
}
.modal-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.modal-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Light-mode overrides */
[data-theme="light"] .ep-modal {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .modal-form-control {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.14);
    color: #111;
}
[data-theme="light"] .modal-form-control:focus {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}
[data-theme="light"] .modal-form-control::placeholder { color: rgba(0, 0, 0, 0.35); }
[data-theme="light"] .ep-modal-close { color: #111; }
[data-theme="light"] .modal-form-group label { color: #555; }

/* ── Work With SaintsLink — Nav CTA Button ──────────────────────────── */
.nav-wws-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #4c91f7 0%, #1d4ed8 100%);
    color: #fff !important;
    border: none;
    border-radius: 0.55rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 650;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 12px rgba(76, 145, 247, 0.35);
    flex-shrink: 0;
}
.nav-wws-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(76, 145, 247, 0.5);
}
.nav-wws-btn:active { transform: translateY(0); opacity: 1; }

/* Responsive: tighten button on mid screens */
@media (max-width: 1100px) {
    .nav-wws-btn { padding: 0.45rem 0.85rem; font-size: 0.78rem; }
}
@media (max-width: 900px) {
    /* Hide text label, show icon only */
    .nav-wws-btn .wws-btn-label { display: none; }
    .nav-wws-btn { padding: 0.45rem 0.55rem; }
}

/* Mobile WWS button inside mobile menu */
.mobile-wws-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #4c91f7 0%, #1d4ed8 100%);
    color: #fff !important;
    border: none;
    border-radius: 0.55rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 650;
    font-family: inherit;
    cursor: pointer;
    margin-bottom: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.18s;
}
.mobile-wws-btn:hover { opacity: 0.88; }

/* ── Work With SaintsLink — Modal form specifics ────────────────────── */
.wws-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .wws-form-grid { grid-template-columns: 1fr; }
}

.wws-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4c91f7 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 650;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.01em;
    transition: opacity 0.18s, transform 0.18s;
    box-shadow: 0 2px 16px rgba(76, 145, 247, 0.3);
    margin-top: 0.5rem;
}
.wws-submit-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.wws-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Success state */
#wws-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}
.wws-success-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #4c91f7, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
}
.wws-success-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary, #f5f8fc);
}
.wws-success-body {
    color: var(--text-gray, #8a99b3);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 380px;
}

/* -- AI & INTELLIGENT SYSTEMS PAGE (products/ai.html) ---------------------------------- */

/* AI Hero */
.ai-hero {
    position: relative;
    padding: 12rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.ai-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    background: rgba(43, 110, 255, 0.1);
    color: #4c91f7;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(43, 110, 255, 0.2);
}
.ai-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
}
.ai-hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}
.ai-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 3rem auto 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}
.ai-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.ai-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(43, 110, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

/* AI Capabilities Grid */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.ai-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: left;
}
.ai-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(76, 145, 247, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 20px rgba(76, 145, 247, 0.1);
}
.ai-card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(43, 110, 255, 0.1);
    color: #4c91f7;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(43, 110, 255, 0.2);
}
.ai-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.ai-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How We Work Timeline */
.ai-timeline {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}
.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}
.timeline-wrapper::-webkit-scrollbar {
    display: none;
}
.timeline-track {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(76,145,247,0.1) 0%, rgba(76,145,247,0.5) 50%, rgba(76,145,247,0.1) 100%);
    z-index: 1;
}
.timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    text-align: center;
}
.timeline-dot {
    width: 3rem;
    height: 3rem;
    background: var(--bg-color);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px var(--bg-color);
}
.timeline-step:hover .timeline-dot {
    border-color: #4c91f7;
    color: #4c91f7;
    background: rgba(43, 110, 255, 0.1);
    box-shadow: 0 0 15px rgba(76, 145, 247, 0.3), 0 0 0 4px var(--bg-color);
}
.timeline-step span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Meet Genesis */
.ai-genesis-section {
    padding: 8rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(43, 110, 255, 0.05) 0%, var(--bg-color) 70%);
}
.genesis-mockup {
    max-width: 1000px;
    margin: 4rem auto 0;
    border-radius: 1.5rem;
    background: rgba(20, 25, 35, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
.genesis-floating-element {
    position: absolute;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Saint Intelligence & Ecosystem */
.ai-ecosystem {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}
.ecosystem-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}
.eco-node {
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    backdrop-filter: blur(5px);
}
.eco-node.primary {
    background: linear-gradient(135deg, rgba(43, 110, 255, 0.1), rgba(43, 110, 255, 0.02));
    border-color: rgba(76, 145, 247, 0.4);
    color: #4c91f7;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}
.eco-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(76,145,247,0.5) 0%, rgba(255,255,255,0.1) 100%);
}
.eco-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Designed Capabilities Tiles */
.ai-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 3rem auto;
}
.ai-tile {
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}
.ai-tile i {
    color: #4c91f7;
}
.ai-tile:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

/* Roadmap */
.ai-roadmap {
    max-width: 1000px;
    margin: 5rem auto;
}
.roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}
.roadmap-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: rgba(255,255,255,0.1);
}
.roadmap-item {
    position: relative;
    padding-left: 2rem;
}
.roadmap-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 2;
}
.roadmap-item.active::before {
    border-color: #4c91f7;
    background: #4c91f7;
    box-shadow: 0 0 10px rgba(76, 145, 247, 0.5);
}
.roadmap-item.future {
    opacity: 0.5;
}
.roadmap-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

/* Split Section (Why SaintsLink) */
.ai-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    align-items: center;
}
.ai-split-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.ai-split-left p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.ai-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ai-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid #4c91f7;
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: 500;
}

/* Vision Statement */
.ai-vision {
    text-align: center;
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.ai-vision blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2rem 0;
}
.ai-vision cite {
    font-style: normal;
    color: var(--text-gray);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .ai-split { grid-template-columns: 1fr; gap: 2rem; }
    .timeline-wrapper { overflow-x: auto; padding-bottom: 1rem; }
    .timeline-track { min-width: 800px; }
}
/* Updated AI Hero Layout */
.ai-hero {
    position: relative;
    padding: 12rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
}
.ai-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ai-hero-content h1 {
    text-align: left;
    margin-bottom: 1.5rem;
}
.ai-hero-content p {
    text-align: left;
    margin-bottom: 2.5rem;
}
.ai-hero .ai-hero-image-wrapper {
    flex: 1;
    margin: 0;
    max-width: 600px;
}
@media (max-width: 992px) {
    .ai-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    .ai-hero-content {
        align-items: center;
    }
    .ai-hero-content h1, .ai-hero-content p {
        text-align: center;
    }
}
