/* === CSS Reset & Variables === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --gray: #1a1a1a;
    --white: #ffffff;
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --text-muted: #999;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Header === */
header {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--gold);
}

/* === 1. Hero Section === */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Hero Form */
.hero-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-form input[type="email"] {
    flex: 1;
    min-width: 300px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s ease;
}

.hero-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.hero-form input[type="email"]::placeholder {
    color: #666;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4rem;
}

/* Hero Image Component */
.hero-image-container {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.hero-image-container:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--gold);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.live-pulse {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 20px #4CAF50;
    animation: beacon 2s infinite;
    z-index: 2;
}

@keyframes beacon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* CSS-based Dashboard Visuals */
.sentiment-visual {
    padding: 1rem;
}

.sentiment-gauge {
    text-align: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
}

.gauge-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
}

.gauge-label {
    font-size: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.bi-visual {
    padding: 1rem;
    flex-direction: column;
}

.bi-visualization {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    width: 100%;
    margin-bottom: 0.5rem;
}

.bi-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 4px 4px 0 0;
}

.bi-overlay-stats {
    display: flex;
    justify-content: center;
    width: 100%;
}

.bi-stat-val {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold);
}

.routing-visual {
    padding: 1rem;
}

/* Dynamic Counter */
.live-counter {
    margin: 3rem 0;
    text-align: center;
}

.counter-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.counter-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Courier New', monospace;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    display: block;
}

.metric-value.gold {
    color: var(--gold);
}

.metric-sub {
    font-size: 0.75rem;
    color: #4CAF50;
    margin-top: 0.5rem;
    display: block;
}

.live-feed {
    background: #000;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    height: 120px;
    overflow: hidden;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-title {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.feed-items {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #888;
}

.feed-item {
    margin-bottom: 0.5rem;
    animation: slideUp 4s infinite linear;
}

.feed-item span {
    color: var(--gold-light);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

/* === Dynamic Diagram Visual === */
.diagram-grid {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 300px;
    width: 100%;
}

.diagram-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.diagram-column.center-hub {
    align-items: center;
}

/* Node Cards */
.node-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.node-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.outbound .node-card:hover {
    transform: translateX(-5px);
}

.outbound .node-card {
    justify-content: flex-end;
    text-align: right;
    margin-left: auto;
}

.node-icon {
    font-size: 1.5rem;
}

.node-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.node-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 2px;
}

.node-label.accent-cyan {
    color: #00bcd4;
}

.node-label.accent-blue {
    color: #448aff;
}

.node-label.accent-red {
    color: #ff5252;
}

/* Central AI Hub */
.brain-hub {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-icon {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    z-index: 5;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hub-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.hub-rings .ring {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s infinite linear;
}

.hub-rings .ring:nth-child(1) {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.hub-rings .ring:nth-child(2) {
    width: 120px;
    height: 120px;
    animation-delay: 1.5s;
}

@keyframes ripple {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        border-width: 2px;
    }

    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
        border-width: 0px;
    }
}

/* SVG Connections */
.diagram-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.flow-path {
    fill: none;
    stroke: rgba(212, 175, 55, 0.15);
    stroke-width: 2;
    stroke-dasharray: 10;
    animation: flowDash 30s linear infinite;
}

.p-in {
    stroke: rgba(255, 255, 255, 0.1);
}

.p-out {
    stroke: rgba(212, 175, 55, 0.2);
}

@keyframes flowDash {
    to {
        stroke-dashoffset: -1000;
    }
}

@media (max-width: 992px) {
    .diagram-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 2rem;
    }

    .diagram-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .diagram-connections {
        display: none;
    }

    .brain-hub {
        margin: 2rem 0;
    }
}

.counter-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.8;
}

/* === The Problem Section === */
.problem-section {
    padding: 15rem 0;
    background: var(--black);
    text-align: center;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.pain-point {
    background: var(--gray);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.pain-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.pain-point p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.9;
}

.problem-conclusion {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.problem-conclusion .highlight {
    color: var(--gold);
}

@media (max-width: 992px) {
    .pain-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


.north-star-bi {
    flex-direction: column;
}

.ns-metric {
    text-align: center;
}

.ns-trend {
    margin-top: 0.8rem;
    font-size: 0.7rem;
    color: #4CAF50;
    font-weight: 800;
}

/* === 2. Bento Grid Section === */
.bento-section {
    padding: 15rem 0;
    background: var(--black);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 3rem;
}

.bento-card {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.bento-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.bento-visual {
    width: 100%;
    height: 160px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* === Consolidated Helpdesk-Omni Visual === */
.helpdesk-omni-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-container {
    position: absolute;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* === Radar Visual (Omnichannel) === */
.radar-visual {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.radar-circle {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    position: relative;
}

.radar-sweep {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold), transparent);
    border-radius: 50px 0 0 0;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: sweep 4s linear infinite;
    opacity: 0.3;
}

@keyframes sweep {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.platform-icons {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--gray);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    padding: 6px;
}

.p-icon svg {
    width: 100%;
    height: 100%;
}

.pi-wa {
    transform: translate(50px, 0);
}

.pi-fb {
    transform: translate(-50px, 0);
}

.pi-ig {
    transform: translate(0, 50px);
}

.pi-ml {
    transform: translate(0, -50px);
}

/* === Sentiment Speedometer === */
.sentiment-speed-visual {
    flex-direction: column;
}

.speedometer {
    width: 120px;
    height: 60px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.speed-arc {
    width: 120px;
    height: 120px;
    border: 10px solid var(--gray);
    border-top-color: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
}

.speed-needle {
    position: absolute;
    width: 2px;
    height: 50px;
    background: var(--white);
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
    transform: rotate(60deg);
    animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(60deg);
    }

    50% {
        transform: rotate(70deg);
    }
}

.speed-val {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
}

.speed-label {
    margin-top: 1rem;
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 800;
}

/* === CSAT Visual Star === */
.csat-visual-star {
    flex-direction: column;
}

.north-star-metric {
    text-align: center;
}

.ns-val {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.ns-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-top: 5px;
}

.ns-label {
    margin-top: 1rem;
    font-size: 0.6rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
}

/* === 24/7 Helpdesk Visual === */
.helpdesk-247-visual {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    flex-direction: column;
}

.clock-icon {
    width: 80px;
    height: 80px;
    border: 5px solid var(--gold);
    border-radius: 50%;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    background: var(--gold);
    transform-origin: bottom center;
    border-radius: 2px;
}

.hour {
    width: 5px;
    height: 24px;
    animation: rotate 12s linear infinite;
}

.minute {
    width: 4px;
    height: 34px;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.status-badge {
    font-size: 0.6rem;
    font-weight: 800;
    color: #4CAF50;
    letter-spacing: 1px;
}

/* === Consolidated Helpdesk-Omni Visual (Legacy) === */
.helpdesk-omni-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-container {
    position: absolute;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}



.radar-sweep {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform-origin: left center;
    animation: sweep 4s linear infinite;
    left: 110px;
}

.radar-nodes {
    position: absolute;
    width: 240px;
    height: 240px;
}

.radar-node {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.r1 {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.r2 {
    top: 50%;
    right: 0%;
    transform: translate(50%, -50%);
}

.r3 {
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.r4 {
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
}

.helpdesk-omni-visual .clock-icon {
    width: 80px;
    height: 80px;
    z-index: 2;
    background: var(--black);
    margin-bottom: 0;
}

/* === Emotional IQ Visual (Sentiment + CSAT) === */
.emotional-iq-visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.speedometer {
    width: 160px;
    height: 80px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.speed-arc {
    width: 160px;
    height: 160px;
    border: 12px solid var(--gray);
    border-top-color: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
}

.speed-needle {
    position: absolute;
    width: 2px;
    height: 70px;
    background: var(--white);
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
    transform: rotate(60deg);
    animation: wobble 3s ease-in-out infinite;
}

.speed-val {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
}

.csat-overlap {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.ns-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}

.ns-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.routing-visual {
    padding: 1rem;
}

.routing-flow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.f-query {
    border-color: var(--white) !important;
    opacity: 0.7;
}

.flow-node {
    background: var(--gray);
    border: 1px solid var(--gold);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--white);
    white-space: nowrap;
}

.flow-arrow {
    color: var(--gold);
    font-size: 1rem;
}

.integration-visual {
    padding: 1rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    width: 100%;
}

.integration-badge {
    background: var(--gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
}

.bento-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* === 3. How It Works === */
.how-it-works {
    padding: 15rem 0;
    background: var(--gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--black);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
}

/* === 4. ROI Section === */
.roi-section {
    padding: 15rem 0;
    background: var(--black);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.roi-card {
    background: var(--gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.roi-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.roi-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.roi-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.roi-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === Inquiries Section === */
/* === Inquiries Section (Accordion) === */
.inquiries-section {
    padding: 8rem 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-center {
    text-align: center;
}

.accordion-container {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.accordion-item.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: color 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-content p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .inquiries-section {
        padding: 5rem 0;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }

    .accordion-content p {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

/* === Comparison Matrix Section === */
/* === Comparison Matrix Section (Split Kinetic) === */
.comparison-split-section {
    padding: 10rem 0;
    background: #050505;
    overflow: hidden;
}

.split-header-mobile {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.split-header-mobile span:nth-child(2) {
    color: var(--gold);
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4rem;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Vertical Line down the middle */
.comparison-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 10%, rgba(212, 175, 55, 0.3) 50%, rgba(255, 255, 255, 0.1) 90%, transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.kinetic-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 3rem 0;
    opacity: 0.2;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    filter: blur(2px);
}

.kinetic-row.in-view {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.k-side {
    flex: 1;
    padding: 1rem 3rem;
    position: relative;
    transition: transform 0.5s ease;
}

.k-left {
    text-align: right;
    color: var(--text-muted);
}

.k-right {
    text-align: left;
    color: var(--white);
}

.k-divider {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.k-vs-orb {
    width: 12px;
    height: 12px;
    background: var(--black);
    border: 2px solid #333;
    border-radius: 50%;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.kinetic-row.in-view .k-vs-orb {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.5);
}

/* Hover Effect: The Tension */
.kinetic-row:hover .k-left {
    transform: translateX(-10px);
    opacity: 0.7;
}

.kinetic-row:hover .k-right {
    transform: translateX(10px);
}

.kinetic-row:hover .k-vs-orb {
    transform: scale(2);
}

/* Content Styling */
.k-feature-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 800;
    opacity: 0.6;
}

.k-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.k-right .k-desc {
    font-weight: 600;
}

.k-status-icon {
    display: none;
    /* Hidden by default, useful for mobile */
}

@media (max-width: 768px) {
    .comparison-container::before {
        display: none;
    }

    .split-header-mobile {
        display: block;
    }

    .kinetic-row {
        flex-direction: column;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        align-items: stretch;
    }

    .k-divider {
        display: none;
    }

    .k-side {
        text-align: left;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 0.8rem;
    }

    .k-side:last-child {
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 0.8rem;
    }

    .k-left .k-feature-label::before {
        content: "STATUS QUO";
        color: #ff5252;
        margin-right: 0.5rem;
    }

    .k-right .k-feature-label::before {
        content: "TROLI";
        color: var(--gold);
        margin-right: 0.5rem;
    }

    .k-feature-label {
        font-size: 0.6rem;
    }

    .k-desc {
        font-size: 0.95rem;
    }
}

/* === Final CTA Redesign === */
.final-cta {
    padding: 15rem 0;
    background: linear-gradient(180deg, var(--gray) 0%, var(--black) 100%);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.cta-header .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--side, left), var(--white), transparent);
    max-width: 150px;
}

.cta-header .line:first-child {
    --side: right;
}

.final-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.cta-actions {
    position: relative;
    display: inline-block;
}

.btn-green {
    background: linear-gradient(180deg, #6ab04c 0%, #4834d4 100%);
    /* Adjusted specifically for the image feel */
    background: #5dbb4d;
    /* Actual green like the image */
    color: var(--white);
    padding: 1.2rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-green:hover {
    transform: scale(1.05);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-gold:hover {
    transform: scale(1.05);
    background: #e6c200;
}

.cta-cursor {
    position: absolute;
    bottom: -15px;
    right: -10px;
    width: 30px;
    pointer-events: none;
}

.cta-cursor img {
    width: 100%;
}

/* === Footer === */
footer {
    padding: 3rem 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* === Modal === */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.modal-content {
    background: var(--gray);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--gold);
    border-radius: 20px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--gold);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-step h2 {
    margin-bottom: 2rem;
    color: var(--white);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.input-group textarea {
    resize: vertical;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .value-prop-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 2;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-connector {
        display: none;
    }

    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-form {
        flex-direction: column;
    }

    .hero-form input[type="email"] {
        min-width: 100%;
    }

    .dashboard-hero {
        padding: 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-title,
    section h2 {
        font-size: 2.8rem;
        font-weight: 900;
        color: var(--white);
        text-align: center;
        margin-bottom: 5rem;
        padding-top: 2rem;
        letter-spacing: -1px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .bento-section,
    .how-it-works,
    .roi-section,
    .final-cta {
        padding: 4rem 0;
    }
}