/* ══════════════════════════════════════════
   GAMING CSS – SISGAIN Gaming Page
   Color Theme: Blue · White · Black
   ══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000000;
    color: #e8f0ff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* ── GAMING CURSOR ── */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.3s;
    mix-blend-mode: screen;
    display: none;
}
.cursor-glow.active {
    display: block;
}
.cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60a5fa;
    transform: translate(-50%, -50%);
    transition: width 0.15s, height 0.15s, background 0.2s;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.7);
}
.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: #ffffff;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════
   BUTTONS – FIXED HOVER VISIBILITY
   ═══════════════════════════════════════════ */
.btnn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #3b82f6);
    color: #ffffff !important;          /* always white */
    isolation: isolate;
    z-index: 1;
}
.btnn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd, #ffffff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(4px);
}
.btnn:hover::before {
    opacity: 0.5;
}
.btnn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #3b82f6);
    z-index: -1;
}
.btnn:hover {
    color: #ffffff !important;         /* ensure white on hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), 0 0 80px rgba(96, 165, 250, 0.15);
}
.btnn .arrow-wrapper {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
}
.btnn:hover .arrow-wrapper {
    transform: translateX(6px) scale(1.1);
}
.btnn .arrow {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    position: relative;
    margin-left: 4px;
}
.btnn .arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    transform: rotate(45deg);
}

/* Outline button */
.btnn-outline {
    background: transparent;
    color: #e8f0ff !important;
    border: 1.5px solid rgba(96, 165, 250, 0.35);
}
.btnn-outline::after {
    background: transparent;
}
.btnn-outline:hover {
    background: rgba(59, 130, 246, 0.18) !important;
    border-color: #60a5fa !important;
    color: #ffffff !important;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.25), 0 0 80px rgba(96, 165, 250, 0.1);
}
.btnn-outline .arrow {
    background: #ffffff;
}
.btnn-outline .arrow::after {
    border-color: #ffffff;
}

/* Gold / Primary */
.btnn-gold {
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #3b82f6);
    color: #ffffff !important;
}
.btnn-gold::after {
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #3b82f6);
}
.btnn-gold:hover {
    color: #ffffff !important;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4), 0 0 80px rgba(96, 165, 250, 0.15);
}

/* Purple variant */
.btnn-purple {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: #fff !important;
}
.btnn-purple::after {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}
.btnn-purple .arrow {
    background: #fff;
}
.btnn-purple .arrow::after {
    border-color: #fff;
}
.btnn-purple:hover {
    color: #ffffff !important;
    box-shadow: 0 0 40px rgba(30, 64, 175, 0.4), 0 0 80px rgba(59, 130, 246, 0.1);
}

/* Small compliance buttons */
.compliance-card .btnn-sm {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #94a3b8 !important;
    transition: all 0.3s;
    cursor: pointer;
}
.compliance-card .btnn-sm:hover {
    background: rgba(59, 130, 246, 0.18) !important;
    border-color: #60a5fa !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* ── GLITCH TEXT ── */
.glitch-text {
    position: relative;
    display: inline-block;
}
.glitch-text::before,
.glitch-text::after {
    display: none;
}

/* ── SECTION HEADERS ── */
.section-head {
    text-align: center;
    margin-bottom: 3rem;
}
.section-subtitle {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
    color: #ffffff;
}
.section-title .highlight {
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #93c5fd);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}
.section-title:hover .highlight::after {
    transform: scaleX(1);
}
.section-desc {
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-gaming {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #020817 40%, #0a0f1e 100%);
    overflow: hidden;
    padding: 30px 5% 60px;
}
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 80%);
    z-index: 1;
}

/* ── HERO RIGHT VERTICAL VIDEO ── */
.hero-right-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    border-left: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: -10px 0 30px rgba(59, 130, 246, 0.2);
    transition: box-shadow 0.4s;
}
.hero-right-video:hover {
    box-shadow: -10px 0 50px rgba(96, 165, 250, 0.3);
}
.hero-right-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2) hue-rotate(200deg);
}
.gaming-interaction {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(96, 165, 250, 0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    pointer-events: none;
}
.floating-icon.icon-controller {
    top: 15%;
    left: 20%;
    animation: floatGame 4s ease-in-out infinite;
}
.floating-icon.icon-joystick {
    bottom: 25%;
    right: 25%;
    animation: floatGame 5s ease-in-out 1s infinite;
}
.floating-icon.icon-crown {
    top: 40%;
    left: 50%;
    animation: floatGame 6s ease-in-out 2s infinite;
}
@keyframes floatGame {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -10px) rotate(5deg); }
    66% { transform: translate(-10px, 8px) rotate(-3deg); }
}
.scan-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.07) 2px,
        rgba(0, 0, 0, 0.07) 4px
    );
    pointer-events: none;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 52%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    padding: 0.3rem 1.2rem;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 0.5rem;
    transition: all 0.3s;
}
.hero-badge:hover {
    border-color: #93c5fd;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    transform: scale(1.02);
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

/* ── HERO TITLE ── */
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    color: #ffffff;
    transition: none;
}
.hero-title:hover {
    color: #ffffff;
}
.hero-title .highlight {
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #ffffff, #93c5fd, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-title .highlight::after,
.hero-title .highlight::before {
    display: none;
}

.hero-desc {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #94a3b8;
    transition: all 0.3s;
    padding: 4px 12px 4px 6px;
    border-radius: 100px;
    border: 1px solid transparent;
}
.stat-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    color: #e8f0ff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.08);
}
.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
    transition: all 0.3s;
}
.stat-item:hover .stat-dot {
    background: #93c5fd;
    box-shadow: 0 0 20px rgba(147, 197, 253, 0.5);
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}



/* ── HERO DASHBOARD ── */
.hero-visual {
    position: absolute;
    right: 46%;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    max-width: 700px;
    z-index: 2;
    pointer-events: none;
}
.dashboard-mock {
    background: rgba(10, 15, 30, 0.97);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(59, 130, 246, 0.12);
    animation: float-dash 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.dashboard-mock:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.25);
}
@keyframes float-dash {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.dash-header {
    background: rgba(59, 130, 246, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    transition: all 0.3s;
}
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }
.dash-dots:hover span {
    filter: brightness(1.3);
    transform: scale(1.1);
}
.dash-title {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-left: 6px;
}
.dash-body {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s;
    cursor: default;
}
.dash-card:hover {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px) scale(1.02);
}
.dash-card-label {
    font-size: 0.55rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.dash-card-value {
    font-size: 1.1rem;
    font-weight: 800;
    transition: all 0.3s;
}
.dash-card:hover .dash-card-value {
    transform: scale(1.05);
}
.dash-card-value.gold { color: #60a5fa; }
.dash-card-value.green { color: #22c55e; }
.dash-card-value.cyan { color: #93c5fd; }
.dash-card-value.purple { color: #a5b4fc; }
.dash-card-sub {
    font-size: 0.5rem;
    color: #22c55e;
    margin-top: 2px;
}
.dash-game-row {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s;
}
.dash-game-row:hover {
    border-color: rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.03);
}
.game-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.game-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #64748b;
    gap: 8px;
    flex-wrap: wrap;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.3s;
}
.game-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}
.game-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #e8f0ff;
}
.game-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    overflow: hidden;
    min-width: 60px;
}
.game-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6, #93c5fd);
    transition: width 0.3s;
}
.game-item:hover .game-bar-fill {
    filter: brightness(1.3);
}
.status-badge-game {
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.status-badge-game:hover {
    transform: scale(1.05);
}
.status-badge-game.live {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
}
.status-badge-game.dev {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.25);
}
.status-badge-game.beta {
    background: rgba(147, 197, 253, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, 0.25);
}

/* ── TRUST BAR ── */
.trust-bar {
    background: rgba(5, 10, 20, 0.98);
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
    padding: 1.2rem 5%;
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    padding: 4px 12px 4px 8px;
    border-radius: 10px;
    cursor: default;
}
.trust-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.06);
}
.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #60a5fa;
    transition: all 0.3s;
}
.trust-item:hover .trust-icon {
    border-color: #93c5fd;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    transform: rotate(-5deg) scale(1.05);
}
.trust-label {
    font-size: 0.75rem;
    color: #64748b;
}
.trust-value {
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── PROBLEM CARDS ── */
.problems-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.problem-card {
    background: #0d1526;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #93c5fd);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}
.problem-card:hover::before {
    transform: scaleX(1);
}
.problem-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.06);
}
.problem-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    transition: all 0.3s;
}
.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(-5deg);
}
.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.problem-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
}
.problem-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.65;
}

/* ── SERVICES ── */
.services-bg {
    background: #000000;
    padding: 80px 5% 90px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #93c5fd);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.06);
}
.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.service-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.service-tag {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: #64748b;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}
.service-card:hover .service-tag {
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

/* ── WHAT IS ── */
.whatis-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.whatis-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}
.whatis-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.whatis-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.whatis-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.whatis-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    transition: all 0.3s;
    padding: 4px 8px;
    border-radius: 6px;
}
.whatis-list li:hover {
    background: rgba(59, 130, 246, 0.05);
    color: #e8f0ff;
    transform: translateX(4px);
}
.whatis-list li::before {
    content: '▸';
    color: #3b82f6;
    font-weight: 700;
}

/* ── SOLUTIONS ── */
.solutions-bg {
    background: #000000;
    padding: 80px 5% 90px;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.solution-card {
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}
.solution-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.06);
}
.solution-card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s;
}
.solution-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}
.solution-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solution-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.solution-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── FEATURES ── */
.features-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-col h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.feature-col ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #64748b;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s;
}
.feature-col ul li:hover {
    background: rgba(59, 130, 246, 0.05);
    color: #e8f0ff;
    transform: translateX(4px);
}
.feature-col ul li::before {
    content: '◆';
    color: #3b82f6;
    font-size: 0.5rem;
}

/* ── MONETIZATION ── */
.monetization-bg {
    background: #000000;
    padding: 80px 5% 90px;
}
.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.monetization-card {
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    text-align: center;
}
.monetization-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.06);
}
.monetization-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s;
}
.monetization-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}
.monetization-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.monetization-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.monetization-card p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── SECURITY ── */
.security-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.security-card {
    background: #0d1526;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}
.security-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.06);
}
.security-card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s;
}
.security-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}
.security-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.security-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.security-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── COMPLIANCE ── */
.compliance-bg {
    background: #000000;
    padding: 80px 5% 90px;
}
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.compliance-card {
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #93c5fd);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}
.compliance-card:hover::before {
    transform: scaleX(1);
}
.compliance-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.06);
}
.compliance-card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    display: block;
    transition: all 0.3s;
}
.compliance-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}
.compliance-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.compliance-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.compliance-card ul {
    list-style: none;
    margin: 0.5rem 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.compliance-card ul li {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s;
}
.compliance-card ul li:hover {
    color: #e8f0ff;
    transform: translateX(4px);
}
.compliance-card ul li::before {
    content: '•';
    color: #3b82f6;
}
.compliance-card .btnn-sm {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
    color: #94a3b8 !important;
    transition: all 0.3s;
    cursor: pointer;
}
.compliance-card .btnn-sm:hover {
    background: rgba(59, 130, 246, 0.18) !important;
    border-color: #60a5fa !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* ── PROCESS ── */
.process-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.process-step {
    background: #0d1526;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
}
.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}
.process-step:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.06);
}
.step-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.08);
    line-height: 1;
    margin-bottom: 0.3rem;
    transition: all 0.3s;
}
.process-step:hover .step-num {
    color: rgba(96, 165, 250, 0.15);
    transform: scale(1.05);
}
.step-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s;
}
.process-step:hover .step-icon {
    transform: scale(1.15) rotate(-5deg);
}
.process-step h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.process-step:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.process-step p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── WHY CHOOSE ── */
.whyus-bg {
    background: #000000;
    padding: 80px 5% 90px;
}
.whyus-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}
.whyus-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.whyus-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s;
    cursor: default;
}
.whyus-benefits .benefit-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(6px);
    background: #0d1526;
}
.whyus-benefits .benefit-item .check {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}
.whyus-benefits .benefit-item span {
    font-size: 0.85rem;
    color: #64748b;
}
.whyus-benefits .benefit-item:hover span {
    color: #e8f0ff;
}

.whyus-problems {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.whyus-problems .problem-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.1);
    transition: all 0.3s;
    cursor: default;
}
.whyus-problems .problem-item:hover {
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateX(6px);
    background: rgba(239, 68, 68, 0.06);
}
.whyus-problems .problem-item .cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}
.whyus-problems .problem-item span {
    font-size: 0.85rem;
    color: #64748b;
}
.whyus-problems .problem-item:hover span {
    color: #e8f0ff;
}

/* ── USE CASES ── */
.usecases-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}
.usecase-card {
    background: #0d1526;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}
.usecase-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.06);
}
.usecase-card .icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    display: block;
    transition: all 0.3s;
}
.usecase-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}
.usecase-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.usecase-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.usecase-card p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

/* ── TECH STACK ── */
.tech-bg {
    background: #000000;
    padding: 80px 5% 90px;
}
.tech-groups {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.tech-group {
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
}
.tech-group:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.06);
    transform: translateY(-2px);
}
.tech-group h4 {
    font-size: 0.45rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}
.tech-group .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.tech-group .tags span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #64748b;
    transition: all 0.3s;
}
.tech-group .tags span:hover {
    border-color: #3b82f6;
    color: #93c5fd;
    transform: scale(1.05);
}

/* ── BUSINESS OUTCOMES ── */
.outcomes-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.outcome-card {
    background: #0d1526;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    text-align: center;
}
.outcome-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.06);
}
.outcome-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s;
}
.outcome-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}
.outcome-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.outcome-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.outcome-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── PROJECTS ── */
.projects-bg {
    background: #000000;
    padding: 80px 5% 90px;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.project-card {
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}
.project-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.06);
}
.project-card .badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 0.6rem;
    transition: all 0.3s;
}
.project-card:hover .badge {
    border-color: #93c5fd;
    color: #93c5fd;
}
.project-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
    background: linear-gradient(90deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.project-card:hover h3 {
    background: linear-gradient(90deg, #93c5fd, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}
.project-card .challenge {
    font-size: 0.75rem;
    color: #475569;
    font-weight: 600;
    margin-top: 0.5rem;
}
.project-card .challenge span {
    color: #64748b;
    font-weight: 400;
}
.project-card .solution-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0.5rem 0;
}
.project-card .modules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0.5rem 0;
}
.project-card .modules span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.1);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.6rem;
    color: #64748b;
}
.project-card .value {
    font-size: 0.75rem;
    color: #3b82f6;
    font-weight: 600;
}

/* ── COST ── */
.cost-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.cost-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.cost-content .intro {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.cost-factor {
    background: #0d1526;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s;
    cursor: default;
}
.cost-factor:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.06);
}
.cost-factor .icon {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
}
.cost-factor span {
    font-size: 0.78rem;
    color: #64748b;
}
.cost-cta-box {
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s;
}
.cost-cta-box:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.06);
}
.cost-cta-box p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.cost-cta-box p:first-of-type {
    font-weight: 600;
    color: #e8f0ff;
}

/* ── SCOPE REVIEW ── */

.scope-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: #0a0f1e;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}
.scope-wrap:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.06);
}
.scope-wrap h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffffff, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.scope-wrap .sub {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.scope-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.scope-form .full {
    grid-column: 1 / -1;
}
.scope-form label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    display: block;
}
.scope-form input,
.scope-form select,
.scope-form textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: #e8f0ff;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.scope-form input:focus,
.scope-form select:focus,
.scope-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}
.scope-form input::placeholder,
.scope-form textarea::placeholder {
    color: #334155;
}
.scope-form select option {
    background: #0a0f1e;
    color: #e8f0ff;
}
.scope-form .btnn {
    justify-content: center;
    width: 100%;
}

/* ── FAQ ── */
.faq-bg {
    background: #060a14;
    padding: 80px 5% 90px;
}
.faq-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: #0d1526;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
}
.faq-item.open {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.06);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #e8f0ff;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}
.faq-question:hover {
    color: #60a5fa;
}
.faq-chevron {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #3b82f6;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
    background: linear-gradient(135deg, #000000 0%, #020817 50%, #0a0f1e 100%);
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
    transition: all 0.4s;
}
.final-cta:hover::before {
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
}
.final-cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: floatIcon 4s ease-in-out infinite;
    transition: all 0.3s;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}
.final-cta-icon:hover {
    filter: drop-shadow(0 0 60px rgba(96, 165, 250, 0.4));
    transform: scale(1.05) rotate(-3deg);
}
@keyframes floatIcon {
    0%, 100% { transform: translateX(-10px) rotate(-3deg); }
    50% { transform: translateX(10px) rotate(3deg); }
}
.final-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    color: #ffffff;
}
.final-cta p {
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}
.final-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── SOCIAL MEDIA ROW ── */
.social-media-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.social-media-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem 0.4rem 0.8rem;
    border-radius: 100px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    background: #0a0f1e;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-media-col:hover {
    border-color: rgba(59, 130, 246, 0.35);
    color: #e8f0ff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.06);
}
.social-media-col .social-arrow {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-right: 2px solid #64748b;
    border-top: 2px solid #64748b;
    transform: rotate(45deg);
    transition: 0.3s;
}
.social-media-col:hover .social-arrow {
    border-color: #60a5fa;
    transform: rotate(45deg) translateX(2px);
}
.social-media-name {
    font-size: 0.75rem;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── PARTICLE CONTAINER ── */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.4);
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-visual,
    .hero-right-video {
        display: none;
    }
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .whatis-content {
        grid-template-columns: 1fr;
    }
    .whyus-compare {
        grid-template-columns: 1fr;
    }
    .faq-grid-2col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hero-section {
        padding: 90px 4% 50px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .cursor-glow,
    .cursor-dot {
        display: none !important;
    }
    .features-grid-3col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .scope-form {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 1rem;
    }
    .trust-inner {
        gap: 0.8rem;
    }
    .trust-item {
        gap: 0.4rem;
    }
    .trust-icon {
        width: 32px; height: 32px;
        font-size: 0.9rem;
    }
    .trust-value { font-size: 0.85rem; }
    .trust-label { font-size: 0.65rem; }
    .hero-title { font-size: 1.8rem; }
    .final-cta { padding: 60px 4%; }
    .social-media-row { gap: 0.8rem; }
    .social-media-col {
        padding: 0.3rem 0.8rem 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    .social-media-name { font-size: 0.65rem; }
    .btnn { padding: 12px 24px; font-size: 0.8rem; }
    .cursor-glow,
    .cursor-dot { display: none !important; }
    .hero-form-wrap .form-row { flex-direction: column; }
    .hero-form-wrap input { min-width: auto; }
    .compliance-grid { grid-template-columns: 1fr; }
    .cost-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .monetization-grid { grid-template-columns: 1fr 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .usecases-grid { grid-template-columns: 1fr 1fr; }
    .tech-groups { grid-template-columns: 1fr 1fr; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .scope-wrap { padding: 1.5rem; }
    .cost-cta-box { padding: 1.5rem; }
}

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: #1d4ed8; border-radius: 10px; transition: all 0.3s; }
::-webkit-scrollbar-thumb:hover { background: #3b82f6; box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }

::selection { background: #1d4ed8; color: #ffffff; }