:root {
    --background: #07090f;
    --background-secondary: #0b0e17;
    --surface: #10141f;
    --surface-light: #151a28;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --text: #ffffff;
    --text-secondary: #a2a8b8;
    --text-muted: #72798b;
    --primary: #7857ff;
    --primary-light: #987cff;
    --primary-dark: #5d3ce5;
    --success: #43d99d;
    --container: 1200px;
    --radius: 18px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    height: 82px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 9, 15, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

    .site-header.scrolled {
        border-bottom-color: var(--border);
        background: rgba(7, 9, 15, 0.92);
    }

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 750;
    letter-spacing: -0.5px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient( 135deg, var(--primary), #a675ff );
    box-shadow: 0 8px 25px rgba(120, 87, 255, 0.25);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #b9bfcc;
    font-size: 14px;
    font-weight: 500;
}

    .main-nav > a {
        transition: 0.2s;
    }

        .main-nav > a:hover {
            color: white;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 12px;
}

.nav-login {
    color: white !important;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .mobile-menu-button span {
        width: 18px;
        height: 2px;
        background: white;
    }

/* BUTTONS */

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border-radius: 11px;
    font-weight: 650;
    font-size: 14px;
    transition: 0.25s ease;
}

.button-primary {
    background: linear-gradient( 135deg, var(--primary), #6843ef );
    box-shadow: 0 12px 40px rgba(120, 87, 255, 0.22);
}

    .button-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 45px rgba(120, 87, 255, 0.32);
    }

.button-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

    .button-secondary:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: var(--border-hover);
    }

.button-small {
    min-height: 42px;
    padding: 0 18px;
}

.button-light {
    background: white;
    color: #111;
    white-space: nowrap;
}

/* HERO */

.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding-top: 125px;
    overflow: hidden;
    background: radial-gradient( circle at 55% 20%, rgba(120, 87, 255, 0.08), transparent 35% );
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.18;
        background-image: linear-gradient( rgba(255, 255, 255, 0.025) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px );
        background-size: 60px 60px;
        mask-image: linear-gradient( to bottom, black, transparent 80% );
    }

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(120px);
    opacity: 0.14;
    border-radius: 50%;
}

.hero-glow-one {
    background: #6c49ff;
    top: -200px;
    left: -180px;
}

.hero-glow-two {
    background: #864cff;
    right: -220px;
    top: 170px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hero-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 12px;
    margin-bottom: 25px;
    border-radius: 100px;
    border: 1px solid rgba(120, 87, 255, 0.25);
    background: rgba(120, 87, 255, 0.08);
    color: #c7baff;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background: #9c82ff;
    box-shadow: 0 0 12px #987cff;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.04;
    letter-spacing: -3.2px;
    font-weight: 760;
}

    .hero h1 span {
        display: block;
        background: linear-gradient( 90deg, #ffffff 0%, #a998ff 55%, #7958ff 100% );
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

.hero-description {
    max-width: 620px;
    margin-top: 27px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 13px;
    margin-top: 34px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 13px;
}

    .hero-features div {
        display: flex;
        align-items: center;
        gap: 7px;
    }

.check {
    color: var(--success);
}

/* DASHBOARD */

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard {
    position: relative;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.09);
    background: linear-gradient( 145deg, rgba(19, 23, 35, 0.96), rgba(10, 13, 21, 0.98) );
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(120, 87, 255, 0.04);
    transform: rotateY(-3deg) rotateX(2deg);
}

    .dashboard::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        pointer-events: none;
        background: linear-gradient( 135deg, rgba(120, 87, 255, 0.25), transparent 20%, transparent 80%, rgba(120, 87, 255, 0.10) );
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        mask-composite: exclude;
        padding: 1px;
    }

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-label {
    color: var(--text-muted);
    font-size: 11px;
}

.dashboard-header h3 {
    margin-top: 2px;
    font-size: 19px;
}

.dashboard-live {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    background: rgba(67, 217, 157, 0.08);
    color: #65e5b1;
    border-radius: 100px;
    font-size: 10px;
}

    .dashboard-live span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #43d99d;
    }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.dashboard-stat {
    padding: 14px;
    border-radius: 13px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.018);
}

    .dashboard-stat > span {
        display: block;
        color: var(--text-muted);
        font-size: 10px;
    }

    .dashboard-stat strong {
        display: block;
        margin-top: 5px;
        font-size: 20px;
    }

    .dashboard-stat small {
        font-size: 9px;
    }

.positive {
    color: var(--success);
}

.chart-card {
    margin-top: 11px;
    padding: 16px;
    background: rgba(255,255,255,0.018);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 10px;
}

.chart {
    height: 180px;
    margin-top: 18px;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: repeating-linear-gradient( to bottom, transparent, transparent 44px, rgba(255,255,255,0.035) 45px );
}

.chart-line {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

    .chart-line span {
        flex: 1;
        min-height: 10%;
        border-radius: 5px 5px 0 0;
        background: linear-gradient( to top, rgba(120, 87, 255, 0.12), #8e73ff );
        opacity: 0.8;
    }

.dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 11px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255,255,255,0.015);
}

.mini-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(120, 87, 255, 0.12);
    color: #a38cff;
}

.mini-card span {
    display: block;
    color: var(--text-muted);
    font-size: 9px;
}

.mini-card strong {
    font-size: 14px;
}

/* TECHNOLOGIES */

.technology-strip {
    position: relative;
    padding: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #090c13;
}

    .technology-strip .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .technology-strip p {
        max-width: 290px;
        color: var(--text-muted);
        font-size: 12px;
    }

.technology-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 35px;
}

    .technology-list span {
        color: #8990a0;
        font-size: 14px;
        font-weight: 650;
    }

/* GENERAL SECTION */

.section {
    padding: 120px 0;
}

.section-label {
    display: block;
    margin-bottom: 14px;
    color: #8f76ff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1.8px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 55px;
}

    .section-heading h2 {
        max-width: 650px;
        font-size: clamp(36px, 4vw, 52px);
        line-height: 1.1;
        letter-spacing: -2px;
    }

        .section-heading h2 span {
            color: #858b9b;
        }

    .section-heading > p {
        max-width: 450px;
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.8;
    }

    .section-heading.centered {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .section-heading.centered p {
            max-width: 650px;
        }

/* PRODUCTS */

.products-section {
    background: var(--background);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient( 150deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012) );
    transition: 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        border-color: rgba(120, 87, 255, 0.32);
        box-shadow: 0 22px 50px rgba(0,0,0,0.25);
    }

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .product-card-top > span {
        padding: 5px 8px;
        border-radius: 7px;
        background: rgba(120, 87, 255, 0.08);
        color: #9e8aff;
        font-size: 9px;
        font-weight: 700;
    }

.product-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient( 135deg, #7655ff, #9a78ff );
    font-weight: 800;
}

.product-card h3 {
    margin-top: 29px;
    font-size: 23px;
}

.product-card > p {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

.product-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 23px;
    list-style: none;
}

.product-card li {
    color: #adb3c1;
    font-size: 12px;
}

    .product-card li span {
        color: var(--success);
        margin-right: 7px;
    }

.product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    font-weight: 650;
}

    .product-link span {
        color: #987cff;
    }

/* SERVICES */

.services-section {
    background: var(--background-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    padding: 29px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.018);
}

.service-number {
    margin-bottom: 40px;
    color: #765cff;
    font-size: 11px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 19px;
}

.service-card p {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
}

/* PROCESS */

.process {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 20px;
}

.process-item {
    text-align: center;
}

    .process-item > span {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(120, 87, 255, 0.10);
        border: 1px solid rgba(120, 87, 255, 0.20);
        color: #9f8aff;
        font-size: 11px;
        font-weight: 700;
    }

    .process-item h3 {
        margin-top: 17px;
        font-size: 17px;
    }

    .process-item p {
        margin-top: 8px;
        color: var(--text-muted);
        font-size: 12px;
        line-height: 1.7;
    }

.process-line {
    width: 50px;
    height: 1px;
    margin-top: 22px;
    background: linear-gradient( 90deg, rgba(120,87,255,0.2), rgba(120,87,255,0.7), rgba(120,87,255,0.2) );
}

/* CTA */

.cta-section {
    padding-top: 50px;
}

.cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px;
    border-radius: 26px;
    background: linear-gradient( 135deg, #5f40e5, #8061ff );
}

.cta-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    top: -250px;
    right: 10%;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    filter: blur(80px);
}

.cta > * {
    position: relative;
    z-index: 2;
}

.cta .section-label {
    color: rgba(255,255,255,0.72);
}

.cta h2 {
    max-width: 650px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -2px;
}

    .cta h2 span {
        color: #d8d0ff;
    }

.cta p {
    max-width: 600px;
    margin-top: 16px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

/* FOOTER */

.site-footer {
    margin-top: 100px;
    padding: 75px 0 30px;
    border-top: 1px solid var(--border);
    background: #080a10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    max-width: 340px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-column h4 {
        margin-bottom: 7px;
        font-size: 12px;
    }

    .footer-column a,
    .footer-column span {
        color: var(--text-muted);
        font-size: 12px;
    }

        .footer-column a:hover {
            color: white;
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
}

    .footer-bottom div {
        display: flex;
        gap: 22px;
    }

/* RESPONSIVE */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .product-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        gap: 35px;
    }

    .hero h1 {
        font-size: 55px;
    }
}

@media (max-width: 850px) {

    .mobile-menu-button {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 15px;
        background: #0d1019;
        box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

        .main-nav.open {
            display: flex;
        }

    .nav-actions {
        margin-left: 0;
        margin-top: 10px;
        flex-direction: column;
        align-items: stretch;
    }

        .nav-actions .button {
            width: 100%;
        }

    .hero {
        padding-top: 145px;
        padding-bottom: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        max-width: 620px;
        width: 100%;
        margin: 20px auto 0;
    }

    .dashboard {
        transform: none;
    }

    .technology-strip .container {
        flex-direction: column;
        text-align: center;
    }

    .technology-list {
        justify-content: center;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .process {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-line {
        display: none;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .button {
            width: 100%;
        }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .chart {
        height: 130px;
    }

    .section {
        padding: 85px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .product-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .technology-list {
        gap: 18px;
    }

    .cta {
        padding: 38px 26px;
    }

    .button-light {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
}
/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 100px;
    border-bottom: 1px solid var(--border);
    background: radial-gradient( circle at 50% 0%, rgba(120, 87, 255, 0.14), transparent 38% ), var(--background);
}

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.16;
        background-image: linear-gradient( rgba(255, 255, 255, 0.025) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px );
        background-size: 60px 60px;
        pointer-events: none;
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        max-width: 850px;
        font-size: clamp(45px, 6vw, 72px);
        line-height: 1.05;
        letter-spacing: -3px;
    }

        .page-hero h1 span {
            color: #9180e9;
        }

    .page-hero > .container > p {
        max-width: 650px;
        margin-top: 25px;
        color: var(--text-secondary);
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    background: radial-gradient( circle at 75% 25%, rgba(120, 87, 255, 0.13), transparent 32% );
}

    .product-detail-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.15;
        background-image: linear-gradient( rgba(255,255,255,0.025) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,0.025) 1px, transparent 1px );
        background-size: 60px 60px;
    }

.product-detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
    align-items: center;
}

.product-detail-hero h1 {
    margin-top: 15px;
    font-size: clamp(55px, 7vw, 88px);
    line-height: 1;
    letter-spacing: -4px;
}

.product-detail-hero p {
    max-width: 620px;
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
}

.product-detail-panel {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient( 150deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015) );
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

    .product-detail-panel > span {
        color: #9c88ff;
        font-size: 11px;
        font-weight: 750;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .product-detail-panel h2 {
        margin-top: 12px;
        margin-bottom: 30px;
        font-size: 30px;
        line-height: 1.25;
        letter-spacing: -1px;
    }

.product-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    border-top: 1px solid var(--border);
}

    .product-metric span {
        color: var(--text-secondary);
        font-size: 13px;
    }

    .product-metric strong {
        color: var(--success);
        font-size: 18px;
    }


/* =========================================================
   FEATURE GRID
========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient( 150deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012) );
    transition: 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        border-color: rgba(120, 87, 255, 0.3);
    }

.feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(120, 87, 255, 0.12);
    color: #9d88ff;
    font-size: 16px;
}

.feature-card h3 {
    margin-top: 25px;
    font-size: 18px;
}

.feature-card p {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 100px 0 130px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 65px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 130px;
}

    .contact-info h2 {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -1.5px;
    }

    .contact-info > p {
        margin-top: 18px;
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.8;
    }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.018);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(120, 87, 255, 0.10);
    color: #9b86ff;
}

.contact-info-item small {
    display: block;
    color: var(--text-muted);
    font-size: 10px;
}

.contact-info-item strong {
    display: block;
    margin-top: 2px;
    color: #dfe2eb;
    font-size: 13px;
    font-weight: 550;
}

.contact-form-card {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient( 150deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012) );
}

    .contact-form-card h3 {
        font-size: 24px;
        letter-spacing: -0.8px;
    }

    .contact-form-card > p {
        margin-top: 8px;
        margin-bottom: 30px;
        color: var(--text-secondary);
        font-size: 13px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        color: #c4c9d5;
        font-size: 12px;
        font-weight: 600;
    }

.form-control {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 11px;
    background: rgba(255,255,255,0.025);
    color: white;
    font-size: 14px;
    transition: 0.2s;
}

textarea.form-control {
    min-height: 160px;
    padding-top: 14px;
    resize: vertical;
}

.form-control::placeholder {
    color: #5f6676;
}

.form-control:focus {
    border-color: rgba(120, 87, 255, 0.75);
    background: rgba(120, 87, 255, 0.035);
    box-shadow: 0 0 0 4px rgba(120, 87, 255, 0.07);
}

.field-validation-error {
    color: #ff8080;
    font-size: 11px;
}

.validation-summary-errors {
    margin-bottom: 20px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 91, 91, 0.2);
    border-radius: 10px;
    background: rgba(255, 91, 91, 0.05);
    color: #ff9494;
    font-size: 12px;
}

    .validation-summary-errors ul {
        padding-left: 18px;
    }

.contact-submit {
    margin-top: 25px;
}

    .contact-submit .button {
        border: 0;
        cursor: pointer;
    }


/* =========================================================
   SUCCESS PAGE
========================================================= */

.success-page {
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    text-align: center;
}

.success-card {
    max-width: 620px;
    width: 100%;
    padding: 55px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient( 150deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012) );
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(67, 217, 157, 0.10);
    border: 1px solid rgba(67, 217, 157, 0.2);
    color: var(--success);
    font-size: 28px;
}

.success-card h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
}

.success-card p {
    margin: 15px auto 28px;
    max-width: 470px;
    color: var(--text-secondary);
    font-size: 14px;
}


/* =========================================================
   INNER PAGE RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 600px) {

    .page-hero {
        padding-top: 145px;
        padding-bottom: 70px;
    }

        .page-hero h1 {
            letter-spacing: -2px;
        }

    .product-detail-hero {
        padding-top: 145px;
    }

        .product-detail-hero h1 {
            font-size: 52px;
            letter-spacing: -2.5px;
        }

    .product-detail-panel {
        padding: 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding-top: 70px;
    }

    .contact-form-card {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .success-card {
        padding: 35px 22px;
    }
}
/* SERVICES LIST */

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-large-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient( 145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01) );
    transition: 0.3s ease;
}

    .service-large-card:hover {
        transform: translateY(-4px);
        border-color: rgba(120, 87, 255, 0.3);
    }

.service-large-number {
    color: #8d74ff;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 1px;
}

.service-large-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .service-large-content h2 {
        margin-top: 45px;
        font-size: 27px;
        letter-spacing: -1px;
    }

    .service-large-content > p {
        max-width: 500px;
        margin-top: 13px;
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.8;
    }

    .service-large-content .product-link {
        margin-top: auto;
    }


/* SERVICE DETAILS */

.service-detail-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 160px 0 90px;
    background: radial-gradient( circle at 75% 25%, rgba(120,87,255,0.13), transparent 35% );
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.service-detail-hero h1 {
    max-width: 750px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.service-detail-hero > .container > div:first-child > p {
    max-width: 650px;
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}

.service-detail-box {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient( 145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012) );
}

.service-deliver-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

    .service-deliver-item > span {
        color: #917aff;
        font-size: 11px;
        font-weight: 700;
    }

    .service-deliver-item strong {
        font-size: 14px;
    }

    .service-deliver-item p {
        margin-top: 5px;
        color: var(--text-muted);
        font-size: 12px;
        line-height: 1.6;
    }


/* TECH GRID */

.tech-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.tech-card {
    padding: 28px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.018);
}

    .tech-card strong {
        display: block;
        font-size: 17px;
    }

    .tech-card span {
        display: block;
        margin-top: 5px;
        color: var(--text-muted);
        font-size: 11px;
    }


/* CASE STUDIES */

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.case-study-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,0.018);
    transition: 0.3s ease;
}

    .case-study-card:hover {
        transform: translateY(-5px);
        border-color: rgba(120,87,255,0.3);
    }

.case-study-image {
    height: 280px;
    overflow: hidden;
    background: #10141e;
}

    .case-study-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.case-study-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient( circle at center, rgba(120,87,255,0.26), rgba(11,14,23,1) 65% );
    color: rgba(255,255,255,0.8);
    font-size: 70px;
    font-weight: 800;
}

.case-study-content {
    padding: 30px;
}

.case-company {
    color: #8f78ff;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.case-study-content h2 {
    margin-top: 10px;
    font-size: 25px;
    letter-spacing: -1px;
}

.case-study-content > p {
    margin-top: 12px;
    min-height: 66px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}


/* EMPTY STATE */

.empty-state {
    max-width: 700px;
    margin: auto;
    padding: 80px 30px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,0.018);
}

    .empty-state h2 {
        font-size: 32px;
    }

    .empty-state p {
        margin-top: 12px;
        color: var(--text-secondary);
    }


/* CASE DETAIL */

.case-detail-hero {
    padding: 190px 0 100px;
    border-bottom: 1px solid var(--border);
    background: radial-gradient( circle at 50% 0, rgba(120,87,255,0.14), transparent 40% );
}

    .case-detail-hero h1 {
        max-width: 900px;
        font-size: clamp(48px, 7vw, 80px);
        line-height: 1.04;
        letter-spacing: -3px;
    }

    .case-detail-hero p {
        max-width: 700px;
        margin-top: 20px;
        color: var(--text-secondary);
        font-size: 17px;
        line-height: 1.8;
    }

.case-detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
}

.case-main h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
}

.rich-text {
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 2;
}

.case-result {
    height: fit-content;
    padding: 28px;
    position: sticky;
    top: 120px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
}

    .case-result h3 {
        font-size: 21px;
    }

    .case-result p {
        margin-top: 12px;
        color: var(--text-secondary);
        font-size: 13px;
        line-height: 1.8;
    }


@media (max-width: 900px) {

    .service-list-grid,
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .tech-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-result {
        position: static;
    }
}

@media (max-width: 600px) {

    .service-detail-hero {
        padding-top: 145px;
    }

    .service-large-card {
        padding: 25px;
    }

    .service-large-content h2 {
        margin-top: 30px;
        font-size: 23px;
    }

    .tech-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-study-image {
        height: 210px;
    }

    .case-detail-hero {
        padding-top: 150px;
    }
}
/* =========================================================
   CHECKOUT
========================================================= */

.checkout-page {
    min-height: 100vh;
    padding: 155px 0 110px;
    background: radial-gradient( circle at 50% 0%, rgba(120,87,255,0.12), transparent 32% ), var(--background);
}

.checkout-header {
    max-width: 720px;
    margin-bottom: 45px;
}

    .checkout-header h1 {
        font-size: clamp(40px, 5vw, 60px);
        line-height: 1.08;
        letter-spacing: -2.5px;
    }

    .checkout-header p {
        max-width: 600px;
        margin-top: 15px;
        color: var(--text-secondary);
        font-size: 15px;
    }

.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 25px;
    align-items: start;
}

.checkout-form-card,
.checkout-summary,
.payment-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient( 145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012) );
}

.checkout-form-card {
    padding: 35px;
}

    .checkout-form-card h2 {
        margin-bottom: 28px;
        font-size: 22px;
    }

.checkout-summary {
    position: sticky;
    top: 110px;
    padding: 30px;
}

    .checkout-summary h2 {
        margin-bottom: 25px;
        font-size: 25px;
    }

.checkout-summary-row,
.payment-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 13px;
}

    .checkout-summary-row strong,
    .payment-summary-row strong {
        color: white;
    }

.checkout-total,
.payment-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

    .checkout-total span,
    .payment-total span {
        font-size: 14px;
        font-weight: 650;
    }

    .checkout-total strong,
    .payment-total strong {
        color: #a48fff;
        font-size: 25px;
    }

.checkout-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
}

    .checkout-terms input {
        margin-top: 2px;
        width: 16px;
        height: 16px;
    }

.checkout-submit {
    width: 100%;
    margin-top: 25px;
    border: 0;
    cursor: pointer;
}

.checkout-security {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding: 14px;
    border-radius: 11px;
    background: rgba(255,255,255,0.025);
}

    .checkout-security p {
        color: var(--text-muted);
        font-size: 10px;
        line-height: 1.6;
    }


/* PAYMENT */

.payment-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.payment-card {
    padding: 42px;
}

    .payment-card h1 {
        margin: 0;
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .payment-card > p {
        margin-top: 12px;
        margin-bottom: 30px;
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.8;
    }

.payment-order-number {
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(120,87,255,0.18);
    border-radius: 12px;
    background: rgba(120,87,255,0.06);
}

    .payment-order-number span,
    .payment-order-number strong {
        display: block;
    }

    .payment-order-number span {
        color: var(--text-muted);
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .payment-order-number strong {
        margin-top: 5px;
        font-size: 14px;
    }

.payment-provider-placeholder {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 32px;
    padding: 22px;
    border: 1px dashed rgba(255,255,255,0.14);
    border-radius: 14px;
}

.payment-lock {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(120,87,255,0.1);
}

.payment-provider-placeholder strong {
    font-size: 13px;
}

.payment-provider-placeholder p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 11px;
}


@media (max-width: 850px) {

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 600px) {

    .checkout-page {
        padding-top: 125px;
    }

    .checkout-form-card,
    .checkout-summary,
    .payment-card {
        padding: 24px;
    }
}