/* ==============================================
   DubiCore — Dark Theme Product Site Styles
   A product by DUBIDOX
   ============================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #0160C2;
    --blue-bright: #0160C2;
    --blue-pale: #EFF6FF;
    --dark: #FFFFFF;
    --dark-2: #F8FAFC;
    --dark-3: #FFFFFF;
    --dark-4: #F1F5F9;
    --muted: #475569;
    --muted-2: #64748B;
    --white: #0F172A;
    --border-dark: #E2E8F0;
    --border-light: #E2E8F0;
    --accent-green: #059669;
    --accent-orange: #EA580C;
    --text-light: #1E293B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 1px 0 var(--border-dark), 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, #7C3AED 100%);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'AppleGothic', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
}

.logo-text {
    font-family: 'AppleGothic', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-btn {
    background: var(--blue);
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    transition: background 0.2s !important;
}

.nav-btn:hover {
    background: #0160C2 !important;
}

.mob-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mob-toggle span {
    width: 22px;
    height: 2px;
    background: #94A3B8;
    border-radius: 2px;
    transition: 0.3s;
}

.mob-menu {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-dark);
    padding: 20px 5%;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dark);
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
}

.mob-menu a:last-child {
    color: var(--blue-bright);
    font-weight: 600;
    border: none;
}

@media(max-width:860px) {
    .nav-links {
        display: none;
    }

    .mob-toggle {
        display: flex;
    }
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    background: #060D1F;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 85% 70%, rgba(99, 102, 241, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 60%, rgba(30, 58, 138, 0.22) 0%, transparent 50%);
    pointer-events: none;
    animation: slowPan 25s linear infinite;
}

@keyframes slowPan {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-45%, -55%) rotate(180deg) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-bright);
    border: 1px solid rgba(41, 121, 255, 0.3);
    background: rgba(41, 121, 255, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.hero h1 .word-blue {
    color: var(--blue-bright);
}

.hero h1 .word-outline {
    display: block;
    filter: url(#clean-outline);
    color: #FFFFFF;
    white-space: nowrap;
    letter-spacing: 0.02em;
    font-size: 0.85em;
    margin-top: 10px;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn-blue {
    background: var(--blue);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--blue);
    box-shadow: 0 4px 14px rgba(21, 101, 192, 0.25);
}

.btn-blue:hover {
    background: #0160C2;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.18);
}

.hero-modules {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-module-tag {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
    border-radius: 100px;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-module-tag:hover {
    color: #60A5FA;
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(37, 99, 235, 0.15);
}

.hero-module-tag:nth-child(even) {
    animation: floatTag 4s ease-in-out infinite;
}

.hero-module-tag:nth-child(odd) {
    animation: floatTag 5s ease-in-out infinite 1s;
}

@keyframes floatTag {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

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

/* ── MARQUEE ── */
.marquee-wrap {
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 18px 0;
    overflow: hidden;
    background: var(--dark-2);
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted-2);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item::after {
    content: '✦';
    color: var(--blue);
    font-size: 10px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS ── */
section {
    padding: 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 16px;
}

.sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
}

.sec-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.75;
}

.sec-header {
    margin-bottom: 60px;
}

.sec-header.center {
    text-align: center;
}

.sec-header.center .sec-sub {
    margin: 0 auto;
}

/* ── BENTO GRID ── */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.bento-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover {
    border-color: var(--blue-bright);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-span-4 {
    grid-column: span 4;
}

.bento-span-6 {
    grid-column: span 6;
}

.bento-span-8 {
    grid-column: span 8;
}

.bento-span-12 {
    grid-column: span 12;
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

.bento-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--blue-bright);
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 8px;
}

.bento-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    margin: 3px 2px;
    background: var(--dark-4);
    color: var(--muted);
    border: 1px solid var(--border-dark);
}

.bento-chip.blue {
    background: rgba(41, 121, 255, 0.08);
    color: var(--blue-bright);
    border-color: rgba(41, 121, 255, 0.2);
}

.bento-chip.green {
    background: rgba(5, 150, 105, 0.08);
    color: var(--accent-green);
    border-color: rgba(5, 150, 105, 0.2);
}

.bento-chip.orange {
    background: rgba(234, 88, 12, 0.08);
    color: var(--accent-orange);
    border-color: rgba(234, 88, 12, 0.2);
}

@media(max-width:900px) {

    .bento-span-4,
    .bento-span-6,
    .bento-span-8 {
        grid-column: span 12;
    }
}

/* ── FEATURE ROWS ── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.flip {
    direction: rtl;
}

.feature-row.flip>* {
    direction: ltr;
}

.feature-visual {
    position: relative;
    background: #0F172A !important;
    backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 0 24px 24px !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-visual:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6) !important;
}


.fv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 24px;
    margin: 0 -24px 24px -24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fv-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    flex: 1;
}

.fv-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

.feature-visual .bento-chip {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.fv-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-dot {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}

.fv-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    flex: 1;
}

.fv-pill {
    height: 20px;
    width: 56px;
    border-radius: 100px;
    flex-shrink: 0;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.feature-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.feature-list .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(41, 121, 255, 0.15);
    color: var(--blue-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media(max-width:860px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row.flip {
        direction: ltr;
    }
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(41, 121, 255, 0.3);
}

.price-card.featured {
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25) !important;
    background: linear-gradient(135deg, #0160C2 0%, #0160C2 100%) !important;
    border: none !important;
    color: #FFFFFF;
}

.price-card.featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.price-plan {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 12px;
}

.price-card.featured .price-plan {
    color: rgba(255, 255, 255, 0.8);
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 4px;
}

.price-card.featured .price-amount {
    color: #FFFFFF;
}

.price-amount sup {
    font-size: 1.4rem;
    letter-spacing: 0;
    vertical-align: super;
}

.price-period {
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 8px;
}

.price-card.featured .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.price-employees {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-green);
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.price-card.featured .price-employees {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.price-divider {
    height: 1px;
    background: var(--border-dark);
    margin-bottom: 24px;
}

.price-card.featured .price-divider {
    background: rgba(255, 255, 255, 0.15);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
}

.price-card.featured .price-features li {
    color: rgba(255, 255, 255, 0.9);
}

.price-check {
    color: var(--accent-green);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.price-card.featured .price-check {
    color: #FFFFFF;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    background: var(--dark-4);
    color: var(--white);
    border: 1px solid var(--border-dark);
}

.price-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.price-card.featured .price-btn {
    background: #FFFFFF;
    color: #0160C2;
    border-color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.price-card.featured .price-btn:hover {
    background: #F8FAFC;
    color: #0160C2;
}

.pricing-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 13.5px;
    color: #94A3B8;
}

.pricing-footer a {
    color: var(--blue-bright);
    text-decoration: none;
}

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

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: #FFFFFF !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid var(--border-dark) !important;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
    box-shadow: 0 12px 64px rgba(0, 0, 0, 0.06) !important;
}

.testi-card:hover {
    border-color: rgba(41, 121, 255, 0.3) !important;
    transform: translateY(-3px);
}

.testi-stars {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-quote {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.testi-role {
    font-size: 12px;
    color: #94A3B8;
}

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

/* ── FAQ ── */
.faq-wrap {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-q {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, color 0.2s;
}

.faq-q:hover {
    background: var(--dark-4);
    color: var(--blue-bright);
}

.faq-icon {
    font-size: 20px;
    color: var(--blue-bright);
    display: inline-block;
    transition: transform 0.3s ease;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    transition: all 0.3s;
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ── HOW IT WORKS ── */
.steps-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.steps-wrap::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 1px;
    background: linear-gradient(90deg, var(--blue) 0%, rgba(41, 121, 255, 0.2) 100%);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(21, 101, 192, 0.15);
}

.step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.65;
}

@media(max-width:860px) {
    .steps-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .steps-wrap::before {
        display: none;
    }
}

/* ── CONTACT ── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(41, 121, 255, 0.12);
    border: 1px solid rgba(41, 121, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    color: var(--blue-bright);
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.contact-detail span {
    font-size: 13px;
    color: #94A3B8;
}

.form-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.form-card p {
    font-size: 13.5px;
    color: #94A3B8;
    margin-bottom: 28px;
}

.fg {
    margin-bottom: 18px;
}

.fg label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: var(--dark-4);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: #94A3B8;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--blue-bright);
    background: #FFFFFF;
}

.fg select option {
    background: #FFFFFF;
    color: var(--white);
}

.fg textarea {
    resize: vertical;
    min-height: 90px;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: #0160C2;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.4);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

@media(max-width:860px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fg-row {
        grid-template-columns: 1fr;
    }
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 60%, #0160C2 100%);
    border-top: none;
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dot grid texture — matching Dubidox */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Radial glow orb top-right — matching Dubidox */
.cta-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-glow {
    display: none;
}

.cta-section h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ── FOOTER ── */
footer {
    background: #0F172A;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 5% 40px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 36px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.footer-brand p {
    font-size: 14.5px;
    color: var(--gray-400, #94A3B8);
    line-height: 1.6;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-socials a:hover {
    background: var(--blue-bright);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col a {
    font-size: 14.5px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    font-size: 14px;
    color: #94A3B8;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--blue-bright);
}

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

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

    section {
        padding: 64px 5%;
    }
}

/* ── MODULE SHOWCASE ── */
.mod-stats-bar {
    display: flex;
    align-items: center;
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 28px 48px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mod-stat-item {
    flex: 1;
    text-align: center;
}

.mod-stat-val {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0160C2, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
}

.mod-stat-lbl {
    display: block;
    font-size: 11px;
    color: #94A3B8;
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mod-stat-sep {
    width: 1px;
    height: 44px;
    background: var(--border-dark);
    flex-shrink: 0;
}

.mod-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.mod-filter-btn {
    border: 1.5px solid var(--border-dark);
    background: var(--dark-4);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.mod-filter-btn:hover {
    border-color: #0160C2;
    color: #0160C2;
    background: rgba(41, 121, 255, 0.15);
}

.mod-filter-btn.active {
    background: #0160C2;
    color: #fff;
    border-color: #0160C2;
    box-shadow: 0 4px 14px rgba(41, 121, 255, 0.3);
}

.mod-list-view {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-dark);
}

.mod-line-row {
    display: flex;
    align-items: flex-start;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-dark);
    gap: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mod-line-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--blue-bright);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.mod-line-row:hover {
    background: var(--dark-4);
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 12px;
    border-bottom-color: transparent;
}

.mod-line-row:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.ml-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ml-content {
    flex: 1;
}

.ml-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.ml-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

.ml-desc {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0 0 16px 0;
    max-width: 700px;
}

.ml-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 240px;
    flex-shrink: 0;
    gap: 12px;
}

.ml-num {
    display: none !important;
}

.mod-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mod-badge-blue {
    background: rgba(41, 121, 255, 0.1);
    color: #0160C2;
    border: 1px solid rgba(41, 121, 255, 0.2);
}

.mod-badge-green {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.mod-badge-purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.mod-badge-orange {
    background: rgba(234, 88, 12, 0.1);
    color: #EA580C;
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.mod-body-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mod-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mod-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--dark-4);
    color: var(--muted);
    border: 1px solid var(--border-dark);
}

.mod-chip-blue {
    background: rgba(41, 121, 255, 0.08);
    color: #0160C2;
    border-color: rgba(41, 121, 255, 0.2);
}

.mod-chip-green {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    border-color: rgba(5, 150, 105, 0.2);
}

.mod-chip-purple {
    background: rgba(124, 58, 237, 0.08);
    color: #7C3AED;
    border-color: rgba(124, 58, 237, 0.2);
}

.mod-chip-orange {
    background: rgba(234, 88, 12, 0.08);
    color: #EA580C;
    border-color: rgba(234, 88, 12, 0.2);
}

.mod-big-num {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0160C2, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mod-vis-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: var(--dark-4);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.mod-vis-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mod-vis-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mod-vis-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    flex-shrink: 0;
}

@media(max-width:960px) {
    .mod-stats-bar {
        padding: 20px 24px;
    }

    .mod-stat-val {
        font-size: 1.9rem;
    }

    .mod-line-row {
        gap: 24px;
    }
}

@media(max-width:860px) {
    .mod-line-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ml-meta {
        width: 100%;
        align-items: flex-start;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .mod-line-row:hover {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

@media(max-width:640px) {
    .mod-stats-bar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
    }

    .mod-stat-sep {
        display: none;
    }

    .mod-stat-item {
        min-width: 40%;
    }
}

/* ── ANIMATE ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}