/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #050a14;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}
@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}
@keyframes scrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes nodeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes centerPulse {
    0%,
    100% {
        box-shadow: 0 0 80px rgba(76, 92, 240, 0.06), inset 0 0 60px rgba(76, 92, 240, 0.02);
    }
    50% {
        box-shadow: 0 0 120px rgba(76, 92, 240, 0.15), inset 0 0 80px rgba(76, 92, 240, 0.05);
    }
}
@keyframes linePulse {
    0%,
    100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.4;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes zoomOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.7);
    }
}
@keyframes boxFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── ANIMATION UTILITY CLASSES ── */
.animate-fadeUp {
    animation: fadeUp 0.8s ease forwards;
}
.animate-fadeUp-delay-1 {
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}
.animate-fadeUp-delay-2 {
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}
.animate-fadeUp-delay-3 {
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* ── KEY BENEFITS ANIMATIONS ── */
.mindmap-section .mindmap-svg-wrap svg {
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}
.mindmap-section .mindmap-svg-wrap svg .node-group {
    opacity: 0;
    animation: nodeFadeIn 0.8s ease forwards;
}
.mindmap-section .mindmap-svg-wrap svg .node-group:nth-child(1) {
    animation-delay: 0.4s;
}
.mindmap-section .mindmap-svg-wrap svg .node-group:nth-child(2) {
    animation-delay: 0.5s;
}
.mindmap-section .mindmap-svg-wrap svg .node-group:nth-child(3) {
    animation-delay: 0.6s;
}
.mindmap-section .mindmap-svg-wrap svg .node-group:nth-child(4) {
    animation-delay: 0.7s;
}
.mindmap-section .mindmap-svg-wrap svg .node-group:nth-child(5) {
    animation-delay: 0.8s;
}
.mindmap-section .mindmap-svg-wrap svg .node-group:nth-child(6) {
    animation-delay: 0.9s;
}

.mindmap-section .mindmap-svg-wrap svg .center-node {
    animation: centerPulse 4s ease-in-out infinite;
}
.mindmap-section .mindmap-svg-wrap svg .connector-line {
    animation: linePulse 3s ease-in-out infinite;
}
.mindmap-section .mindmap-svg-wrap svg .connector-line:nth-child(1) {
    animation-delay: 0.2s;
}
.mindmap-section .mindmap-svg-wrap svg .connector-line:nth-child(2) {
    animation-delay: 0.5s;
}
.mindmap-section .mindmap-svg-wrap svg .connector-line:nth-child(3) {
    animation-delay: 0.8s;
}
.mindmap-section .mindmap-svg-wrap svg .connector-line:nth-child(4) {
    animation-delay: 0.3s;
}
.mindmap-section .mindmap-svg-wrap svg .connector-line:nth-child(5) {
    animation-delay: 0.6s;
}
.mindmap-section .mindmap-svg-wrap svg .connector-line:nth-child(6) {
    animation-delay: 0.9s;
}

.mindmap-section .mindmap-svg-wrap svg .node-dot {
    animation: pulse-glow 3s ease-in-out infinite;
}
.mindmap-section .mindmap-svg-wrap svg .node-dot:nth-child(1) {
    animation-delay: 0.2s;
}
.mindmap-section .mindmap-svg-wrap svg .node-dot:nth-child(2) {
    animation-delay: 0.5s;
}
.mindmap-section .mindmap-svg-wrap svg .node-dot:nth-child(3) {
    animation-delay: 0.8s;
}
.mindmap-section .mindmap-svg-wrap svg .node-dot:nth-child(4) {
    animation-delay: 0.3s;
}
.mindmap-section .mindmap-svg-wrap svg .node-dot:nth-child(5) {
    animation-delay: 0.6s;
}
.mindmap-section .mindmap-svg-wrap svg .node-dot:nth-child(6) {
    animation-delay: 0.9s;
}

/* ── GLASS HEADER ── */
.glass-header {
    background: rgba(5, 10, 20, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-link {
    padding: 4px 2px;
    transition: color .3s ease;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}
.nav-link:hover {
    color: #4c5cf0;
}

/* ── DROPDOWN ── */
.dropdown-container {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(10, 18, 34, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(76, 92, 240, 0.1);
    z-index: 100;
}
.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu .dropdown-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    margin: 0 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
}
.dropdown-menu .dropdown-heading:hover {
    background: rgba(76, 92, 240, 0.10);
}
.dropdown-menu .dropdown-heading i {
    font-size: 18px;
    color: #4c5cf0;
}
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 2px;
    transition: color .3s ease;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}
.dropdown-trigger:hover {
    color: #4c5cf0;
}
.dropdown-trigger i.ti-chevron-down {
    font-size: 12px;
    transition: transform 0.25s ease;
    color: rgba(255, 255, 255, 0.4);
}
.dropdown-trigger.open i.ti-chevron-down {
    transform: rotate(180deg);
    color: #4c5cf0;
}

/* ── FOOTER ── */
.footer-full {
    background: rgba(5, 10, 20, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 24px;
}
.footer-full a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-full a:hover {
    color: #fff;
}

/* ── HERO ── */
.solution-hero {
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.solution-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.solution-hero .orb-1 {
    width: 400px;
    height: 400px;
    background: #4c5cf0;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}
.solution-hero .orb-2 {
    width: 300px;
    height: 300px;
    background: #7c6cf6;
    bottom: -100px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}
.solution-hero .badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(76, 92, 240, 0.15);
    border: 1px solid rgba(76, 92, 240, 0.25);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 20px;
}
.solution-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto 16px;
}
.solution-hero h1 span {
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.solution-hero .sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #4c5cf0, #7c6cf6);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 30px rgba(76, 92, 240, 0.3);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(76, 92, 240, 0.5);
}
.cta-btn-ghost {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(76, 92, 240, 0.4);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
    background: transparent;
    font-family: 'Inter', sans-serif;
}
.cta-btn-ghost:hover {
    border-color: #4c5cf0;
    color: #fff;
}

/* ── SECTION UTILITIES ── */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-eyebrow {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4c5cf0;
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    margin-bottom: 0.6rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
}
.section-title span {
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.section-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.7;
    text-align: center;
}
.section-divider {
    width: 60px;
    height: 1px;
    margin: 1.5rem auto;
    background: linear-gradient(90deg, transparent, rgba(76, 92, 240, 0.2), transparent);
}

/* ── STATS ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}
.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}
.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}
.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}
.stat-item:hover {
    border-color: rgba(76, 92, 240, 0.3);
    transform: translateY(-4px);
    background: rgba(76, 92, 240, 0.05);
}
.stat-item .num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-item .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ── SOLVE GRID ── */
.solve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.solve-step {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(76, 92, 240, 0.08);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}
.solve-step:nth-child(1) {
    animation-delay: 0.05s;
}
.solve-step:nth-child(2) {
    animation-delay: 0.12s;
}
.solve-step:nth-child(3) {
    animation-delay: 0.19s;
}
.solve-step:nth-child(4) {
    animation-delay: 0.26s;
}
.solve-step:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 92, 240, 0.2);
    background: rgba(76, 92, 240, 0.03);
    box-shadow: 0 16px 48px rgba(76, 92, 240, 0.06);
}
.solve-step .step-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 92, 240, 0.06);
    border: 1px solid rgba(76, 92, 240, 0.12);
    transition: all 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}
.solve-step:hover .step-icon-wrap {
    background: rgba(76, 92, 240, 0.12);
    border-color: rgba(76, 92, 240, 0.25);
    transform: scale(1.08) rotate(-4deg);
}
.solve-step .step-icon-wrap svg {
    width: 32px;
    height: 32px;
}
.solve-step .step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #4c5cf0;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.solve-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.solve-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* ── KEY BENEFITS — MIND MAP ── */
.mindmap-section {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0;
}
.mindmap-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}
.mindmap-header {
    text-align: center;
    margin-bottom: 48px;
}
.mindmap-svg-wrap {
    width: 100%;
    overflow: visible;
}
.mindmap-svg-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ── PROBLEM HEXAGON ── */
.problem-hex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.problem-hex {
    padding: 32px 24px 28px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(76, 92, 240, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    aspect-ratio: 1 / 1.05;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.problem-hex:hover {
    border-color: rgba(76, 92, 240, 0.6);
    background: rgba(76, 92, 240, 0.05);
    box-shadow: 0 12px 40px rgba(76, 92, 240, 0.12);
    transform: translateY(-4px);
}
.problem-hex .hex-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(76, 92, 240, 0.08);
    border: 1px solid rgba(76, 92, 240, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.problem-hex .hex-icon svg {
    width: 24px;
    height: 24px;
}
.problem-hex .hex-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 6px;
}
.problem-hex h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}
.problem-hex p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}
.problem-hex .hex-number {
    position: absolute;
    bottom: 12px;
    right: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    opacity: 0.05;
    color: #4c5cf0;
    pointer-events: none;
}
.problem-hex:nth-child(2) {
    transform: translateY(-20px);
}
.problem-hex:nth-child(2):hover {
    transform: translateY(-24px);
}

/* ── MODALITIES ── */
.mod-marquee-horizontal {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 8px 0;
}
.mod-marquee-horizontal .mod-marquee-track-h {
    display: flex;
    gap: 32px;
    animation: scrollHorizontal 20s linear infinite;
    width: max-content;
}
.mod-marquee-horizontal:hover .mod-marquee-track-h {
    animation-play-state: paused;
}
.mod-marquee-horizontal {
    mask-image: none !important;
    -webkit-mask-image: none !important;
}
.mod-circle-card-h {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(76, 92, 240, 0.2);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.4s ease;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}
.mod-circle-card-h::after {
    content: '↕ Click to zoom';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(76, 92, 240, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.mod-circle-card-h:hover::after {
    opacity: 1;
}
.mod-circle-card-h:hover {
    border-color: #4c5cf0;
    background: rgba(76, 92, 240, 0.06);
    box-shadow: 0 0 40px rgba(76, 92, 240, 0.12);
    transform: scale(1.05);
}
.mod-circle-card-h .svg-wrap {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.mod-circle-card-h .svg-wrap svg {
    width: 40px;
    height: 40px;
}
.mod-circle-card-h .mod-abbr-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4c5cf0;
    background: rgba(76, 92, 240, 0.08);
    border: 1px solid rgba(76, 92, 240, 0.15);
    padding: 2px 12px;
    border-radius: 100px;
    margin-bottom: 4px;
    pointer-events: none;
}
.mod-circle-card-h .mod-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
    pointer-events: none;
}
.mod-circle-card-h .mod-card-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    max-width: 140px;
    pointer-events: none;
}

/* Fade edges with gradient */
.mod-marquee-horizontal::before,
.mod-marquee-horizontal::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.mod-marquee-horizontal::before {
    left: 0;
    background: linear-gradient(to right, #050a14, transparent);
}
.mod-marquee-horizontal::after {
    right: 0;
    background: linear-gradient(to left, #050a14, transparent);
}

.mod-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.mod-copy {
    text-align: center;
}
.mod-copy h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
}
.mod-copy h2 span {
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.mod-copy p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.mod-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(76, 92, 240, 0.06);
    border: 1px solid rgba(76, 92, 240, 0.12);
    border-radius: 100px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px;
}
.mod-chip i {
    color: #4c5cf0;
    font-size: 14px;
}

/* ── COMPARISON ── */
.comparison-wrap {
    background: rgba(255, 255, 255, 0.015);
    border-radius: 24px;
    padding: 40px 32px;
    margin-top: 40px;
    border: 1px solid rgba(76, 92, 240, 0.08);
    position: relative;
    overflow: hidden;
}
.comparison-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(76, 92, 240, 0.03), transparent 60%);
    pointer-events: none;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}
.comparison-col {
    padding: 24px 20px;
    border-radius: 16px;
    transition: all 0.4s ease;
}
.comparison-col.traditional {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.comparison-col.onix {
    background: rgba(76, 92, 240, 0.04);
    border: 1px solid rgba(76, 92, 240, 0.12);
}
.comparison-col:hover {
    transform: translateY(-4px);
}
.comparison-col .col-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comparison-col.traditional .col-label {
    color: rgba(255, 255, 255, 0.35);
}
.comparison-col.onix .col-label {
    color: #4c5cf0;
}
.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}
.comparison-item:nth-child(2) {
    animation-delay: 0.1s;
}
.comparison-item:nth-child(3) {
    animation-delay: 0.2s;
}
.comparison-item:nth-child(4) {
    animation-delay: 0.3s;
}
.comparison-item:nth-child(5) {
    animation-delay: 0.4s;
}
.comparison-item:nth-child(6) {
    animation-delay: 0.5s;
}
.comparison-item:last-child {
    border-bottom: 0;
}
.comparison-item .item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}
.comparison-col.traditional .item-icon {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.25);
}
.comparison-col.onix .item-icon {
    background: rgba(76, 92, 240, 0.12);
    color: #4c5cf0;
}
.comparison-item .item-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
.comparison-col.onix .item-text {
    color: rgba(255, 255, 255, 0.85);
}
.comparison-item .item-text .highlight {
    color: #4c5cf0;
    font-weight: 600;
}
.comparison-divider {
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(76, 92, 240, 0.01), rgba(76, 92, 240, 0.15), rgba(76, 92, 240, 0.01));
    transform: translateX(-50%);
}
.comparison-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 18, 34, 0.95);
    border: 1px solid rgba(76, 92, 240, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #4c5cf0;
    z-index: 2;
}

/* ── PRICING ── */
.pricing-section {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(76, 92, 240, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-card:hover {
    border-color: rgba(76, 92, 240, 0.4);
}
.pricing-card .glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 92, 240, 0.08), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}
.pricing-card .price {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #9adfff, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.pricing-card .price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}
.pricing-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.perk-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(76, 92, 240, 0.15);
    border-radius: 50px 16px 50px 16px;
    padding: 18px 24px;
    backdrop-filter: blur(4px);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: boxFadeUp 0.6s ease forwards;
    cursor: default;
}
.perk-item:nth-child(1) {
    animation-delay: 0.05s;
}
.perk-item:nth-child(2) {
    animation-delay: 0.10s;
}
.perk-item:nth-child(3) {
    animation-delay: 0.15s;
}
.perk-item:nth-child(4) {
    animation-delay: 0.20s;
}
.perk-item:nth-child(5) {
    animation-delay: 0.25s;
}
.perk-item:nth-child(6) {
    animation-delay: 0.30s;
}
.perk-item:hover {
    border-color: rgba(76, 92, 240, 0.4);
    background: rgba(76, 92, 240, 0.08);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(76, 92, 240, 0.12);
}
.perk-item i {
    color: #4c5cf0;
    font-size: 16px;
    flex-shrink: 0;
}

/* ── MODALITY ZOOM MODAL ── */
.modality-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.modality-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modality-modal-overlay.active .modality-modal-box {
    animation: zoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.modality-modal-overlay.closing .modality-modal-box {
    animation: zoomOut 0.3s ease forwards;
}
.modality-modal-box {
    background: rgba(10, 18, 34, 0.98);
    border: 1px solid rgba(76, 92, 240, 0.2);
    border-radius: 32px;
    padding: 48px 44px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(76, 92, 240, 0.06);
    text-align: center;
    transform: scale(0.7);
    opacity: 0;
}
.modality-modal-box .modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modality-modal-box .modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.modality-modal-box .modal-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
    color: #4c5cf0;
}
.modality-modal-box .modal-icon svg {
    width: 72px;
    height: 72px;
    display: block;
    margin: 0 auto;
}
.modality-modal-box .modal-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 100px;
    background: rgba(76, 92, 240, 0.12);
    border: 1px solid rgba(76, 92, 240, 0.15);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 12px;
}
.modality-modal-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}
.modality-modal-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}
.modality-modal-box .modality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.modality-modal-box .modality-tags span {
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ── DEMO MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-box {
    background: rgba(10, 18, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    animation: fadeUp 0.4s ease forwards;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.modal-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4c5cf0;
    margin-bottom: 8px;
}
.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}
.modal-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}
.modal-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}
.modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.modal-field.full {
    grid-column: 1 / -1;
}
.modal-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.modal-label span {
    color: #4c5cf0;
}
.modal-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}
.modal-input:focus {
    border-color: #4c5cf0;
}
.modal-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.modal-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.8);
    cursor: pointer;
    transform: scale(1.5);
}
.modal-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%238a93a6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 4.5l3.5 3.5 3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: right 14px center;
    cursor: pointer;
}
.modal-select:focus {
    border-color: #4c5cf0;
}
.modal-select option {
    background: #fff;
    color: #000;
}
.modal-textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    min-height: 80px;
    resize: vertical;
}
.modal-textarea:focus {
    border-color: #4c5cf0;
}
.modal-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.modal-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4c5cf0, #7c6cf6);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
}
.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 92, 240, 0.4);
}
.modal-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}
.modal-success {
    text-align: center;
    padding: 16px 0;
}
.modal-success .ms-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 20px;
}
.modal-success h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}
.modal-success p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-perks {
        grid-template-columns: 1fr 1fr;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .comparison-divider {
        display: none;
    }
    .comparison-vs {
        display: none;
    }
    .solve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-hex-grid {
        grid-template-columns: 1fr 1fr;
    }
    .problem-hex:nth-child(2) {
        transform: none;
    }
    .problem-hex:nth-child(2):hover {
        transform: translateY(-4px);
    }
    .modality-modal-box {
        padding: 32px 24px;
        max-width: 400px;
    }
    .modality-modal-box .modal-icon svg {
        width: 56px;
        height: 56px;
    }
    .mod-marquee-horizontal::before,
    .mod-marquee-horizontal::after {
        width: 40px;
    }
    .pricing-card {
        padding: 32px 20px;
    }
    .pricing-card .price {
        font-size: 40px;
    }
    .perk-item {
        border-radius: 30px 12px 30px 12px;
        padding: 14px 18px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .solution-hero h1 {
        font-size: 28px;
    }
    .solution-hero .sub {
        font-size: 15px;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-perks {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 24px 16px;
    }
    .pricing-card .price {
        font-size: 32px;
    }
    .section-title {
        font-size: 24px;
    }
    .modal-box {
        padding: 28px 20px;
    }
    .modal-row {
        grid-template-columns: 1fr;
    }
    .comparison-wrap {
        padding: 20px 16px;
    }
    .solve-grid {
        grid-template-columns: 1fr;
    }
    .problem-hex-grid {
        grid-template-columns: 1fr;
    }
    .problem-hex {
        aspect-ratio: auto;
        padding: 28px 20px;
        clip-path: polygon(50% 0%, 100% 10%, 100% 90%, 50% 100%, 0% 90%, 0% 10%);
    }
    .problem-hex:nth-child(2) {
        transform: none;
    }
    .mod-circle-card-h {
        width: 150px;
        height: 150px;
    }
    .mod-circle-card-h .mod-label {
        font-size: 12px;
    }
    .modality-modal-box {
        padding: 28px 20px;
        max-width: 340px;
    }
    .modality-modal-box h3 {
        font-size: 22px;
    }
    .modality-modal-box .modal-icon svg {
        width: 48px;
        height: 48px;
    }
    .modality-modal-box .modality-tags span {
        font-size: 10px;
        padding: 4px 12px;
    }
    .mod-circle-card-h::after {
        display: none;
    }
    .mod-marquee-horizontal::before,
    .mod-marquee-horizontal::after {
        width: 20px;
    }
    .perk-item {
        border-radius: 24px 10px 24px 10px;
        padding: 12px 16px;
        font-size: 13px;
    }
}