/* =========================================
   1. Design Tokens
   ========================================= */
:root {
    /* Colors */
    --color-primary: #e612be;
    --color-primary-dark: #b60d96;
    --color-secondary: #b183a2;
    --color-background: #FFFFFF;
    --color-text: #251721;
    --color-text-light: #555555;
    --color-surface: #F8F9FA;
    --color-border: #E1E1E1;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-xxl: 128px;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Typography */
    --font-family: 'Noto Sans', sans-serif;
    --font-size-base: 16px;
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 1.75rem;

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
}

/* =========================================
   2. Reset & Base
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================
   3. Typography
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

p {
    margin-bottom: var(--spacing-md);
}

/* =========================================
   4. Components
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--secondary:hover {
    background-color: rgba(230, 18, 190, 0.05);
}

/* =========================================
   5. Utilities
   ========================================= */
.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-primary);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

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

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

/* =========================================
   6. Header
   ========================================= */
/* Shared nav wrapper */
#nav-root {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-surface);
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__nav ul {
    display: flex;
    gap: var(--spacing-lg);
}

.header__nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

.header__nav a:hover {
    color: var(--color-primary);
}

/* =========================================
   7. Hero Section
   ========================================= */
.hero {
    padding: var(--spacing-xxl) 0;
    background: radial-gradient(circle at 100% 0%, rgba(230, 18, 190, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: hidden;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
}



.hero__animated-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hero__cycle-container {
    position: relative;
    display: inline-flex;
    gap: 10px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
}

.word-item {
    position: relative;
    z-index: 2;
    padding: 8px 0;
    width: 200px;
    text-align: center;
    cursor: default;
    transition: color 0.3s;
    color: var(--color-text);
    animation: textColorCycle 7s infinite;
}

.hero__sliding-pill {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background-color: var(--color-primary);
    border-radius: 40px;
    z-index: 1;
    width: 200px;
    animation: slidePill 7s infinite ease-in-out;
}

@keyframes slidePill {

    0%,
    25% {
        transform: translateX(0);
    }

    30%,
    55% {
        transform: translateX(210px);
    }

    60%,
    88% {
        transform: translateX(420px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes textColorCycle {

    0%,
    25% {
        color: white;
    }

    30% {
        color: var(--color-text);
    }

    100% {
        color: var(--color-text);
    }
}

.word-item:nth-child(2) {
    animation-delay: 0s;
}

.word-item:nth-child(3) {
    animation-name: textColorCycle2;
}

.word-item:nth-child(4) {
    animation-name: textColorCycle3;
}

@keyframes textColorCycle2 {

    0%,
    25% {
        color: var(--color-text);
    }

    30%,
    55% {
        color: white;
    }

    60% {
        color: var(--color-text);
    }
}

@keyframes textColorCycle3 {

    0%,
    55% {
        color: var(--color-text);
    }

    60%,
    88% {
        color: white;
    }

    93% {
        color: var(--color-text);
    }
}


/* =========================================
   8. Trust Bar
   ========================================= */
.trust-bar {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-bar__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.trust-bar__logos {
    display: flex;
    gap: var(--spacing-xl);
    opacity: 0.6;
}

.logo-placeholder {
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 1.1rem;
}

.trust-bar__metrics {
    display: flex;
    gap: var(--spacing-lg);
}

.metric {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.metric__value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.metric__label {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    /* Simplified mobile */
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__subtitle {
        margin: 0 auto 32px;
    }

    .trust-bar .container {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .trust-bar__logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================================
   9. General Section Styles
   ========================================= */
.section {
    padding: var(--spacing-xxl) 0;
}

.section--light {
    background-color: var(--color-surface);
}

.section--white {
    background-color: var(--color-background);
}

.section--dark {
    background-color: var(--color-text);
    color: #ffffff;
}

.section--dark h2,
.section--dark h3,
.section--dark p {
    color: #ffffff;
}

/* ── Industries Section ── */
.section--industries {
    padding: var(--spacing-xxl) 0;
}

.industries-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 64px;
}

/* Industry Block — 60/40 text+visual */
.industry-block {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
    text-align: left;
}

.industry-block:last-child {
    margin-bottom: 0;
}

/* Reverse layout: visual left, text right */
.industry-block--reverse {
    direction: rtl;
}

.industry-block--reverse>* {
    direction: ltr;
}

/* Text column — 60% weight */
.industry-block__text {
    padding-right: 40px;
}

.industry-block--reverse .industry-block__text {
    padding-right: 0;
    padding-left: 40px;
}

.industry-block__text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.industry-block__text p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Connector element */
.industry-block__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(230, 18, 190, 0.05), rgba(230, 18, 190, 0.25), rgba(230, 18, 190, 0.05));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 12px rgba(230, 18, 190, 0.5);
    position: absolute;
}

/* Visual column — 40% weight */
.industry-block__visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ── Telecom Visual: Network Mesh ── */
.visual-telecom {
    width: 100%;
    max-width: 400px;
    height: 300px;
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.mesh-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: mesh-pulse 4s ease-in-out infinite;
}

.mesh-node--primary {
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(230, 18, 190, 0.4);
    animation: mesh-pulse-primary 3s ease-in-out infinite;
}

.mesh-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mesh-glow {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 18, 190, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: industry-float 6s ease-in-out infinite;
}

@keyframes mesh-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes mesh-pulse-primary {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(230, 18, 190, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(230, 18, 190, 0.6);
    }
}

/* ── Gaming Visual: Analytics Dashboard ── */
.visual-gaming {
    width: 100%;
    max-width: 400px;
    height: 300px;
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.dash-bar {
    position: absolute;
    bottom: 15%;
    width: 8%;
    height: var(--bar-h, 50%);
    background: linear-gradient(0deg, rgba(230, 18, 190, 0.08), rgba(230, 18, 190, 0.2));
    border-radius: 4px 4px 0 0;
    animation: bar-grow 3s ease-in-out infinite alternate;
}

.dash-bar:nth-child(even) {
    animation-delay: 0.5s;
}

.dash-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dash-glow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 200px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(230, 18, 190, 0.08) 0%, transparent 70%);
    transform: translateX(-50%);
}

@keyframes bar-grow {
    0% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0.85);
    }
}

@keyframes industry-float {

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

    50% {
        transform: translate(-50%, -50%) translateY(-3px);
    }
}

/* ── Industries Responsive ── */
@media (max-width: 768px) {
    .industry-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .industry-block--reverse {
        direction: ltr;
    }

    .industry-block--reverse .industry-block__text {
        padding-left: 0;
    }

    .industry-block__text {
        padding-right: 0;
    }

    .industry-block__connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, rgba(230, 18, 190, 0.05), rgba(230, 18, 190, 0.25), rgba(230, 18, 190, 0.05));
        margin: 0 auto;
    }

    .visual-telecom,
    .visual-gaming {
        max-width: 100%;
        height: 220px;
    }
}

/* ── How LOYALTU Drives Engagement ── */
.section--engagement {
    background: #f8f8fa;
    padding: 120px 0;
}

.engagement-header {
    max-width: 650px;
    margin: 0 auto 80px;
}

.engagement-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.engagement-header p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
}

/* Engine Flow Diagram */
.engine-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
    padding: 48px 0;
}

.engine-flow__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.engine-flow__node {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.engine-flow__node:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.engine-flow__node--engine {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1a0a24 0%, #0d0415 100%);
    border: 1px solid rgba(230, 18, 190, 0.2);
    color: var(--color-primary);
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 40px rgba(230, 18, 190, 0.15);
}

.engine-flow__node--engine:hover {
    box-shadow: 0 12px 50px rgba(230, 18, 190, 0.25);
}

.engine-flow__engine-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.engine-flow__stage--core {
    position: relative;
}

.engine-flow__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 18, 190, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.engine-flow__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Animated Arrow */
.engine-flow__arrow {
    width: 80px;
    height: 2px;
    position: relative;
    margin: 0 8px;
    margin-bottom: 32px;
}

.engine-flow__line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(230, 18, 190, 0.1), rgba(230, 18, 190, 0.3), rgba(230, 18, 190, 0.1));
}

.engine-flow__pulse {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(230, 18, 190, 0.5);
    animation: pulse-travel 3s ease-in-out infinite;
}

.engine-flow__pulse--delayed {
    animation-delay: 1.5s;
}

@keyframes pulse-travel {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 8px);
        opacity: 0;
    }
}

/* Engagement Steps */
.engagement-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.engagement-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(230, 18, 190, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.engagement-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.engagement-step__text {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.5;
}

/* Engagement Responsive */
@media (max-width: 768px) {
    .section--engagement {
        padding: 80px 0;
    }

    .engine-flow {
        flex-direction: column;
        gap: 0;
    }

    .engine-flow__arrow {
        width: 2px;
        height: 40px;
        margin: 8px 0;
        margin-bottom: 0;
    }

    .engine-flow__line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(230, 18, 190, 0.1), rgba(230, 18, 190, 0.3), rgba(230, 18, 190, 0.1));
    }

    .engine-flow__pulse {
        top: 0;
        left: -3px;
        animation: pulse-travel-v 3s ease-in-out infinite;
    }

    @keyframes pulse-travel-v {
        0% {
            top: 0;
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            top: calc(100% - 8px);
            opacity: 0;
        }
    }

    .engagement-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ── Platform Capabilities ── */
.section--capabilities {
    background: #fff;
    padding: 120px 0;
}

.capabilities-header {
    max-width: 720px;
    margin: 0 auto 64px;
}

.capabilities-header__eyebrow {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 600;
    margin-bottom: 20px;
}

.capabilities-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.capabilities-header p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
}

/* Capabilities section footer bar */
.capabilities-footer {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: 0.3px;
    margin-top: 64px;
    padding: 20px 40px;
    border-radius: 14px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 4-column 2×2 mechanics grid (shared: homepage + gamification) */
.gam-mechanics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 80px;
    text-align: center;
}

.gam-mechanics-col {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    padding: 28px 16px 24px;
    border: 1px solid rgba(230, 18, 190, 0.06);
}

.gam-mechanics-col__heading {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.gam-mechanics-col__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gam-mechanic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s ease;
}

.gam-mechanic-card:hover {
    transform: translateY(-2px);
}

.gam-mechanic-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(230, 18, 190, 0.06), rgba(177, 131, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.gam-mechanic-card:hover .gam-mechanic-card__icon {
    background: linear-gradient(135deg, rgba(230, 18, 190, 0.12), rgba(177, 131, 162, 0.18));
}

.gam-mechanic-card__icon svg {
    color: var(--color-primary);
    stroke: var(--color-primary);
}

.gam-mechanic-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

/* Mechanics grid responsive */
@media (max-width: 1024px) {
    .gam-mechanics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section--capabilities {
        padding: 80px 0;
    }

    .gam-mechanics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ── Built for Enterprise Scale ── */
.section--enterprise {
    position: relative;
    background: linear-gradient(160deg, #1a0a1e 0%, #2a1230 40%, #1e0e22 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Infrastructure network background */
.enterprise-bg {
    position: absolute;
    inset: 0;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.enterprise-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Subtle magenta center glow */
.enterprise-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(230, 18, 190, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Header */
.enterprise-header {
    max-width: 700px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.enterprise-header__eyebrow {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    margin-bottom: 20px;
}

.enterprise-header__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.25;
}

.enterprise-header__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
}

/* 3-column pillar grid */
.enterprise-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 1;
}

.enterprise-pillar {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.enterprise-pillar:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(230, 18, 190, 0.15);
}

.enterprise-pillar__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(230, 18, 190, 0.1), rgba(177, 131, 162, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-primary);
    transition: background 0.3s ease;
}

.enterprise-pillar:hover .enterprise-pillar__icon {
    background: linear-gradient(135deg, rgba(230, 18, 190, 0.18), rgba(177, 131, 162, 0.2));
}

.enterprise-pillar__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.enterprise-pillar__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* Trust reinforcement line */
.enterprise-trust {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* Enterprise responsive */
@media (max-width: 768px) {
    .section--enterprise {
        padding: 80px 0;
    }

    .enterprise-header__title {
        font-size: 1.8rem;
    }

    .enterprise-pillars {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
    }
}


.section__header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.section__header h2 {
    font-size: var(--font-size-h2);
    color: var(--color-text);
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    max-width: 700px;
    margin: 12px auto 0;
}

/* =========================================
   10. Features Grid
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: rgba(230, 18, 190, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
}

/* =========================================
   11. Split Layout (Industry Targets)
   ========================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.split-layout--reverse {
    direction: rtl;
    /* Quick hack for swapping order visually, elements need ltr reset */
}

.split-layout--reverse>* {
    direction: ltr;
}

.check-list {
    margin: var(--spacing-lg) 0;
}

.check-list li {
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-lg);
}

.check-list li::before {
    content: "✓";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.visual-placeholder {
    background: var(--color-surface);
    height: 300px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    border: 2px dashed var(--color-border);
}

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

    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .split-layout--reverse {
        direction: ltr;
    }
}

/* =========================================
   12. Footer
   ========================================= */
.footer {
    background-color: var(--color-surface);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer__col h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.footer__col h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer__col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer__col ul li a {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer__col ul li a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* =========================================
   13. Expanded Features & Tech
   ========================================= */
.features-grid--expanded {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.tech-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: bold;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
    .features-grid--expanded {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =========================================
   14. Demo Form & CTA
   ========================================= */
.form-container {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--color-text);
}

.form-group {
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* =========================================
   15. Team & Case Studies (Content Mirror)
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.case-study-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    text-align: left;
    border: 1px solid var(--color-border);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.case-study-content {
    padding: var(--spacing-lg);
}

.case-study-stat {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.testimonial-quote {
    font-style: italic;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px dashed var(--color-border);
    font-size: 0.9rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-links-grid h4 {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    font-weight: 700;
}

.footer-links-grid ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links-grid a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links-grid a:hover {
    color: var(--color-primary);
}

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

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

@media (max-width: 500px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   16. Demo Form
   ========================================= */
.demo-section {
    background: linear-gradient(135deg, #251721 0%, #4a2c42 50%, #3d2536 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 18, 190, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.demo-card {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    position: relative;
}

.demo-card__header {
    text-align: center;
    margin-bottom: 36px;
}

.demo-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.demo-card__subtitle {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Layout */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-form__captcha {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}



.demo-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.demo-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.demo-form__label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.demo-form__label--required::after {
    content: ' *';
    color: var(--color-primary);
}

.demo-form__input,
.demo-form__select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-family);
    color: var(--color-text);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.demo-form__input::placeholder {
    color: #b0a8ac;
}

.demo-form__input:focus,
.demo-form__select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(230, 18, 190, 0.1);
}

.demo-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Section Divider */
.demo-form__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.demo-form__divider::before,
.demo-form__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.demo-form__divider-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    white-space: nowrap;
}

/* Optional toggle */
.demo-form__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1.5px dashed var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    width: 100%;
}

.demo-form__toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(230, 18, 190, 0.02);
}

.demo-form__toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.demo-form__toggle.active .demo-form__toggle-icon {
    transform: rotate(180deg);
}

.demo-form__optional {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: slideDown 0.3s ease;
}

.demo-form__optional.visible {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit */
.demo-form__submit {
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-family);
    color: white;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.demo-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(230, 18, 190, 0.3);
}

.demo-form__submit:active {
    transform: translateY(0);
}

.demo-form__submit:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

/* Success state */
.demo-form__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeScale 0.4s ease;
}

.demo-form__success.visible {
    display: block;
}

.demo-form__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.demo-form__success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.demo-form__success p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .demo-card {
        padding: 28px 20px;
        margin: 0 16px;
    }

    .demo-form__row {
        grid-template-columns: 1fr;
    }

    .demo-card__title {
        font-size: 1.4rem;
    }
}

/* =========================================
   17. Navigation Dropdowns (Mega Menu)
   ========================================= */
.header {
    overflow: visible;
    /* Ensure dropdowns aren't clipped */
}

.header__nav ul {
    display: flex;
    gap: var(--spacing-md);
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 10px 0;
    /* Increase hit area for hover */
}

/* Link Styling */
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--color-primary);
}

/* Chevron Icon */
.nav-link::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 2px;
    opacity: 0.5;
    transition: transform 0.2s;
}

.nav-item:hover .nav-link::after {
    transform: rotate(180deg);
}

/* Plain nav items (no chevron, no dropdown) */
.nav-item--plain .nav-link::after {
    display: none;
}

/* Dropdown Container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-out;
    z-index: 1100;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    gap: var(--spacing-md);
}

/* Show on Hover */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Force close dropdown on click */
.nav-item.dropdown-closing .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
}

/* Responsive Hide */
@media (max-width: 992px) {
    .header__nav {
        display: none;
        /* Hide complex nav on mobile for now */
    }

    .header__actions {
        margin-left: auto;
        /* Push button to right */
    }
}

/* =========================================
   18. Shared Dropdown Components
   =========================================
   Reusable classes for Product, Gamification,
   and Use Cases mega menus.
   ========================================= */

/* --- Shared CTA Strip --- */
.dropdown-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(230, 18, 190, 0.06) 0%, rgba(177, 131, 162, 0.08) 100%);
    border-top: 1px solid rgba(230, 18, 190, 0.08);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-decoration: none;
}

.dropdown-cta:hover {
    background: linear-gradient(135deg, rgba(230, 18, 190, 0.1) 0%, rgba(177, 131, 162, 0.14) 100%);
}

.dropdown-cta svg {
    transition: transform 0.2s ease;
    color: var(--color-primary);
}

.dropdown-cta:hover svg {
    transform: translateX(4px);
}

/* --- Shared Section Heading --- */
.dropdown-section-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    margin: 0 0 12px 0;
    padding: 0 12px 8px;
    font-weight: 700;
    border-bottom: 2px solid rgba(230, 18, 190, 0.12);
}

/* --- Shared Vertical Divider (gradient pink line) --- */
.dropdown-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(230, 18, 190, 0.15) 20%, rgba(230, 18, 190, 0.15) 80%, transparent 100%);
    margin: 0 24px;
    flex-shrink: 0;
}


/* =========================================
   19. Product Dropdown
   ========================================= */
.dropdown-menu--product {
    min-width: 480px;
    width: 480px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px rgba(37, 23, 33, 0.15), 0 0 0 1px rgba(230, 18, 190, 0.04);
}

.nav-item:hover .dropdown-menu--product {
    transform: translateX(-50%) translateY(0);
}

.product-dropdown__body {
    padding: 28px 32px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* --- Product Nav Card (reused in Gamification & Use Cases) --- */
.product-nav-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.product-nav-card:hover {
    background: linear-gradient(135deg, rgba(230, 18, 190, 0.04) 0%, rgba(177, 131, 162, 0.06) 100%);
    transform: translateX(4px);
}

.product-nav-card:hover .product-nav-card__title {
    color: var(--color-primary);
}

.product-nav-card:hover .product-nav-card__icon {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(230, 18, 190, 0.25);
}

.product-nav-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: all 0.25s ease;
}

.product-nav-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-nav-card__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color 0.2s ease;
    line-height: 1.3;
}

.product-nav-card__desc {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.4;
}


/* =========================================
   20. Gamification Dropdown
   ========================================= */
.dropdown-menu--gamification {
    min-width: 960px;
    width: 960px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px rgba(37, 23, 33, 0.15), 0 0 0 1px rgba(230, 18, 190, 0.04);
}

.nav-item:hover .dropdown-menu--gamification {
    transform: translateX(-50%) translateY(0);
}

.gamification-dropdown__columns {
    display: flex;
    padding: 28px 32px 12px;
}

.gamification-dropdown__platform {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gamification-dropdown__mechanics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Chip Grid */
.mechanics-chip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mechanic-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.18s ease;
    cursor: pointer;
}

.mechanic-chip:hover {
    background-color: rgba(230, 18, 190, 0.04);
    transform: translateX(3px);
}

.mechanic-chip:hover .mechanic-chip__label {
    color: var(--color-primary);
}

.mechanic-chip:hover .mechanic-chip__icon {
    transform: scale(1.1);
    background-color: rgba(230, 18, 190, 0.12);
}

.mechanic-chip__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: var(--color-primary);
}

.mechanic-chip__icon svg {
    width: 14px;
    height: 14px;
}

.mechanic-chip__label {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--color-text);
    transition: color 0.18s ease;
    white-space: nowrap;
}


/* =========================================
   21. Use Cases Dropdown
   ========================================= */
.dropdown-menu--usecases {
    min-width: 960px;
    width: 960px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu--usecases {
    transform: translateX(-50%) translateY(0);
}

.usecases-dropdown__columns {
    display: flex;
    padding: 28px 32px 12px;
}

.usecases-dropdown__section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Two-CTA strip at bottom of Use Cases dropdown */
.usecases-dropdown__ctas {
    display: flex;
}

.usecases-dropdown__ctas .dropdown-cta {
    flex: 1;
    text-decoration: none;
}

.usecases-dropdown__ctas .dropdown-cta:first-child {
    border-right: 1px solid rgba(230, 18, 190, 0.08);
}


/* =========================================
   22. Icon Gradient Variants (all dropdowns)
   =========================================
   Each column flows as a continuous color
   sequence: #e612be → #c920a8 → #b183a2 → #8e1a72 → #3d2536 → #251721
   ========================================= */

/* Product (5 icons: top → bottom) */
.product-nav-card__icon--builder {
    background: linear-gradient(135deg, #e612be 0%, #c920a8 100%);
}

.product-nav-card__icon--analytics {
    background: linear-gradient(135deg, #c920a8 0%, #b183a2 100%);
}

.product-nav-card__icon--api {
    background: linear-gradient(135deg, #b183a2 0%, #8e1a72 100%);
}

.product-nav-card__icon--enterprise {
    background: linear-gradient(135deg, #8e1a72 0%, #3d2536 100%);
}

.product-nav-card__icon--native {
    background: linear-gradient(135deg, #3d2536 0%, #251721 100%);
}

/* Gamification — Platform reuses --builder and --analytics */

/* Use Cases — By Role (5 icons: top → bottom) */
.product-nav-card__icon--developer {
    background: linear-gradient(135deg, #e612be 0%, #c920a8 100%);
}

.product-nav-card__icon--marketer {
    background: linear-gradient(135deg, #c920a8 0%, #b183a2 100%);
}

.product-nav-card__icon--product {
    background: linear-gradient(135deg, #b183a2 0%, #8e1a72 100%);
}

.product-nav-card__icon--crm {
    background: linear-gradient(135deg, #8e1a72 0%, #3d2536 100%);
}

.product-nav-card__icon--growth {
    background: linear-gradient(135deg, #3d2536 0%, #251721 100%);
}

/* Use Cases — By Industry (5 icons: top → bottom) */
.product-nav-card__icon--betting {
    background: linear-gradient(135deg, #e612be 0%, #c920a8 100%);
}

.product-nav-card__icon--telco {
    background: linear-gradient(135deg, #c920a8 0%, #b183a2 100%);
}

.product-nav-card__icon--retail {
    background: linear-gradient(135deg, #b183a2 0%, #8e1a72 100%);
}

.product-nav-card__icon--ecommerce {
    background: linear-gradient(135deg, #8e1a72 0%, #3d2536 100%);
}

.product-nav-card__icon--fintech {
    background: linear-gradient(135deg, #3d2536 0%, #251721 100%);
}

/* =========================================
   ISO Certification Section
   ========================================= */
.section--iso {
    background-color: #f5f4f7;
    color: var(--color-text);
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

/* Certification Cards Grid */
.iso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.iso-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.iso-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.iso-card__img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.iso-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5a6e;
}

.iso-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.iso-card__desc {
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
    line-height: 1.4;
}

/* Security Pillars */
.security-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.security-pillar {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.security-pillar__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5a6e;
    margin-bottom: 4px;
}

.security-pillar__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.security-pillar__text {
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    margin: 0;
    max-width: 260px;
}

/* Responsive */
@media (max-width: 768px) {
    .iso-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .security-pillars {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .iso-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}