﻿

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg: #07090f;
    --bg2: #0b0e17;
    --surface: #0f1220;
    --border: rgba(255,255,255,0.07);
    --text: #e8eaf0;
    --muted: #3a4060;
    --muted2: #7a82a0;
    --accent: #4d8eff; 
    --accent-glow: rgba(77,142,255,0.18);
    --gold: #c9a84c; 
    --gold2: #e8c97a; 
    --accent2: #7b5ea7; 
    --yellow: #4d8eff; 
    --head: 'Syne', sans-serif;
    --mono: 'Space Mono', monospace;
}

/* ─── Reset ──────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--head);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

/* ─── Noise / Grid overlay ───────────────── */
.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(77,142,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(77,142,255,.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* ─── Custom cursor ──────────────────────── */
#cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s;
    mix-blend-mode: normal;
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(77,142,255,.45);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
}

/* ─── Mobile menu overlay ────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(7,9,15,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu a {
        font-family: var(--head);
        font-weight: 800;
        font-size: clamp(28px, 8vw, 44px);
        color: var(--text);
        text-decoration: none;
        letter-spacing: -.02em;
        transition: color .2s;
    }

        .mobile-menu a:hover {
            color: var(--accent);
        }

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--muted2);
    font-size: 28px;
    cursor: none;
    line-height: 1;
    transition: color .2s;
}

    .mobile-close:hover {
        color: var(--text);
    }

/* ─── Navigation ─────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    border-bottom: 1px solid var(--border);
    background: rgba(7,9,15,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 14px;
    cursor: none;
    transition: border-color .25s, background .25s;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted2);
    user-select: none;
}

    .lang-toggle:hover {
        border-color: rgba(77,142,255,.35);
        background: rgba(77,142,255,.07);
    }

.lang-sr,
.lang-en {
    transition: color .25s;
}

.lang-divider {
    opacity: .3;
}

.lang-toggle .active-lang {
    color: var(--accent);
    font-weight: 700;
}

/* Transition flash on language switch */
.lang-switching * {
    transition: opacity .15s ease !important;
    opacity: 0.4 !important;
}

@media (max-width: 960px) {
    .nav-right {
    }
    /* Show lang toggle inside mobile menu bottom */
    .mobile-lang {
        display: flex !important;
        margin-top: 16px;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    padding:0px !important;
    margin-top:10px;
    margin-left:-30px;
    width: auto;
    display: block;
    filter: brightness(1.05) contrast(1.05);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin-right:30px;
}

    .nav-links a {
        font-family: var(--mono);
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: var(--muted2);
        text-decoration: none;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--accent);
        }

.nav-cta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--gold);
        color: #000;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    background: none;
    border: none;
    padding: 6px;
    z-index: 201;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        transition: .3s;
        border-radius: 2px;
    }

/* ─── Hero ───────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 48px 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-inner {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-orb {
    position: absolute;
    top: 40%;
    left: 60%;
    width: 600px;
    height: 600px;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(77,142,255,.12) 0%, transparent 70%);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb2 {
    position: absolute;
    top: 15%;
    left: 85%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(123,94,167,.1) 0%, transparent 70%);
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%,100% {
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        transform: translate(-50%,-53%) scale(1.06);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content:center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--muted2);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .8s .2s ease forwards;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.7);
    }
}

.hero-tag {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .8s .3s ease forwards;
}

.hero-title {
    font-family: var(--head);
    font-weight: 800;
    font-size: clamp(48px, 8.5vw, 120px);
    line-height: .92;
    letter-spacing: -.03em;
    margin-bottom: 32px;
}

    .hero-title .line {
        display: block;
        overflow: hidden;
    }
.line1 {
    font-size: clamp(48px, 8.5vw, 120px);
}

        .hero-title .line span {
            display: block;
            opacity: 0;
            transform: translateY(100%);
            animation: slideUp .9s cubic-bezier(.16,1,.3,1) forwards;
        }

        .hero-title .line:nth-child(1) span {
            animation-delay: .35s;
        }

        .hero-title .line:nth-child(2) span {
            animation-delay: .5s;
        }

        .hero-title .line:nth-child(3) span {
            animation-delay: .65s;
        }

    .hero-title .accent {
        color: var(--accent);
    }

    .hero-title .muted {
        color: var(--muted);
    }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    max-width: 520px;
    font-size: 17px;
    color: var(--muted2);
    line-height: 1.75;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp .8s .85s ease forwards;
}

    .hero-sub strong {
        color: var(--text);
    }

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp .8s 1s ease forwards;
}

/* ─── Hero stats bar ──────────────────────── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp .8s 1.15s ease forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--surface);
    gap: 4px;
}

.hero-stat-num {
    font-family: var(--head);
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
    letter-spacing: -.02em;
}

.hero-stat-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted2);
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    animation: fadeUp .8s 1.5s ease forwards;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ─── Buttons ────────────────────────────── */
.btn-primary {
    font-family: var(--mono);
    font-size: 20px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 32px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    display: inline-block;
    white-space: nowrap;
}

    .btn-primary:hover {
        background: #6ba8ff;
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(77,142,255,.35);
    }

.btn-outline {
    font-family: var(--mono);
    font-size: 20px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border: 1px solid var(--border);
    color: var(--muted2);
    text-decoration: none;
    cursor: none;
    transition: border-color .2s, color .2s, transform .2s;
    display: inline-block;
    white-space: nowrap;
}

    .btn-outline:hover {
        border-color: var(--muted2);
        color: var(--text);
        transform: translateY(-2px);
    }

.itemSpec {
    position: relative;
    border: 2px solid transparent;
    background: var(--surface);
    background-clip: padding-box;
}
    .itemSpec:before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 4px;
        background: linear-gradient(270deg, #001f4d, #001f4d, #001f4d, #001f4d);
        background-size: 400% 400%;
        animation: shineBorder 6s linear infinite;
        z-index: -1;
    }



/* ─── Section base ───────────────────────── */
section {
    position: relative;
    z-index: 1;
    padding: 120px 48px;
    border-top: 1px solid var(--border);
}

.section-label1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted2);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 0px;
}

.section-label1::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted2);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 48px;
}

    .section-label::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
    }

.section-title {
    font-family: var(--head);
    font-weight: 800;
    font-size: clamp(34px, 5vw, 72px);
    line-height: .95;
    letter-spacing: -.025em;
}

    .section-title .dim {
        color: var(--muted);
    }

/* ─── Ticker ─────────────────────────────── */
.ticker-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 16px 0;
    background: var(--surface);
    position: relative;
    z-index: 1;
}

.ticker {
    display: flex;
    animation: ticker 22s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .ticker-item::after {
        content: '◆';
        color: var(--gold);
        font-size: 8px;
    }

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── About ──────────────────────────────── */
#about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.about-text p {
    font-size: 16px;
    color: var(--muted2);
    line-height: 1.8;
    margin-bottom: 22px;
}

    .about-text p strong {
        color: var(--text);
    }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.stat-box {
    background: var(--surface);
    padding: 36px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
}

    .stat-box:hover {
        border-color: var(--accent);
    }

    .stat-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        background: var(--accent);
        transition: height .4s;
    }

    .stat-box:hover::before {
        height: 100%;
    }

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.stat-num {
    font-family: var(--head);
    font-weight: 800;
    font-size: 46px;
    line-height: 1;
    margin-bottom: 8px;
}
.numnum1 {
    font-size: 42px;
}

.stat-label {
    font-size: 12px;
    color: var(--muted2);
    font-family: var(--mono);
    letter-spacing: .05em;
}

/* ─── Why Us ─────────────────────────────── */
#why {
    background: var(--bg2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    margin-top: 64px;
}

.why-card {
    background: var(--surface);
    padding: 44px 36px;
    border: 1px solid var(--border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .why-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(77,142,255,.04) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .why-card:hover::after {
        opacity: 1;
    }

    .why-card:hover {
        border-color: rgba(77,142,255,.25);
        transform: translateY(-4px);
    }

.why-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .1em;
    margin-bottom: 28px;
}

.why-icon {
    display: block;
    width: 28px;
    height: 28px;
    color: var(--muted2);
    margin-bottom: 20px;
}

    .why-icon svg {
        width: 100%;
        height: 100%;
    }

.why-title {
    font-family: var(--head);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.why-desc {
    font-size: 13px;
    color: var(--muted2);
    line-height: 1.75;
}

/* ─── Services ───────────────────────────── */
#services {
    background: var(--bg);
}

.services-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
}

.services-desc {
    max-width: 300px;
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-item {
    display: grid;
    grid-template-columns: 72px 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 28px 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all .3s;
    cursor: none;
}

    .service-item:hover {
        border-color: rgba(77,142,255,.3);
        background: rgba(77,142,255,.04);
    }

        .service-item:hover .service-arrow {
            transform: rotate(45deg) translateX(4px);
            color: var(--accent);
        }

.service-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
}

.service-info h3 {
    font-family: var(--head);
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 4px;
}

.service-info p {
    font-size: 17px;
    color: var(--muted2);
}

.service-tag {
    font-family: var(--mono);
    font-size: 10px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    color: var(--muted2);
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.service-arrow {
    font-size: 20px;
    color: var(--muted);
    transition: all .3s;
}

/* ─── Pricing ────────────────────────────── */
#pricing {
    background: var(--bg2);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
}

.pricing-sub {
    max-width: 340px;
    font-size: 16px;
    color: var(--muted2);
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}

.plan-card {
    background: var(--surface);
    padding: 44px 36px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

    .plan-card.featured {
        border-color: var(--accent);
        background: #0a0e1e;
    }

    .plan-card.featured2 {
        border-color: var(--accent2);
        background: #0d0a1a;
    }

    .plan-card.featured::before {
        content: 'MOST POPULAR';
        position: absolute;
        top: 0;
        right: 0;
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: .14em;
        padding: 8px 16px;
        background: var(--accent);
        color: #fff;
        font-weight: 700;
    }

    .plan-card:not(.featured):not(.featured2):hover {
        border-color: rgba(255,255,255,.14);
        transform: translateY(-4px);
    }

.plan-name {
    font-family: var(--mono);
    font-size: 15px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 22px;
}

.plan-price {
    font-family: var(--head);
    font-weight: 800;
    font-size: 52px;
    line-height: 1;
    margin-bottom: 4px;
}

.plan-currency {
    font-size: 22px;
    font-weight: 400;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.plan-period {
    font-size: 15px;
    color: var(--muted2);
    margin-bottom: 36px;
    font-family: var(--mono);
}

.plan-desc {
    font-size: 20px;
    color: var(--muted2);
    line-height: 1.65;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.plan-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

    .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: var(--muted2);
        line-height: 1.4;
    }

        .plan-features li::before {
            content: '✓';
            color: var(--accent);
            font-family: var(--mono);
            font-size: 14px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        .plan-features li.no::before {
            content: '×';
            color: var(--muted);
        }

        .plan-features li.no {
            color: var(--muted);
        }

.plan-cta {
    display: block;
    text-align: center;
    font-family: var(--mono);
    font-size: 17px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px;
    text-decoration: none;
    cursor: none;
    transition: all .2s;
    font-weight: 700;
}

.plan-card:not(.featured):not(.featured2) .plan-cta {
    border: 1px solid var(--border);
    color: var(--muted2);
}

    .plan-card:not(.featured):not(.featured2) .plan-cta:hover {
        border-color: var(--text);
        color: var(--text);
    }

.featured .plan-cta {
    background: var(--accent);
    color: #fff;
}

    .featured .plan-cta:hover {
        background: #6ba8ff;
        box-shadow: 0 6px 24px rgba(77,142,255,.3);
    }

.featured2 .plan-cta {
    background: var(--accent2);
    color: #fff;
}

    .featured2 .plan-cta:hover {
        background: #9470c0;
    }

.pricing-note {
    margin-top: 28px;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .05em;
}

.pricing-divider {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 72px 0 22px;
}

.promo-banner {
    margin-top: 2px;
    padding: 44px;
    background: linear-gradient(135deg, #0a0e1e 0%, #0d0a1a 100%);
    border: 1px solid rgba(77,142,255,.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.promo-text h3 {
    font-family: var(--head);
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 8px;
}

.promo-text p {
    font-size: 14px;
    color: var(--muted2);
}

/* ─── Skills ─────────────────────────────── */
#skills {
    background: var(--bg);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 56px;
    margin-top: 64px;
}

.skill-category h3 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.skill-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-bar-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text);
}

.skill-bar-pct {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted2);
}

.skill-track {
    height: 2px;
    background: var(--border);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.skill-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--accent);
    width: 0;
    transition: width 1.6s cubic-bezier(.16,1,.3,1);
    border-radius: 2px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.skill-tag {
    font-family: var(--mono);
    font-size: 10px;
    padding: 7px 14px;
    border: 1px solid var(--border);
    color: var(--muted2);
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .2s;
}

    .skill-tag:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* ─── Education ──────────────────────────── */
#education {
    background: var(--bg2);
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 64px;
}

.edu-card {
    background: var(--surface);
    padding: 44px 36px;
    border: 1px solid var(--border);
    transition: border-color .3s;
}

    .edu-card:hover {
        border-color: rgba(77,142,255,.2);
    }

.edu-year {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .1em;
    margin-bottom: 16px;
}

.edu-degree {
    font-family: var(--head);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.25;
}

.edu-school {
    font-size: 14px;
    color: var(--muted2);
    margin-bottom: 18px;
}

.edu-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
}

/* ─── Process ────────────────────────────── */
#process {
    background: var(--bg);
}

.process-steps {
    display: flex;
    flex-direction: column;
    margin-top: 64px;
    gap: 2px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 40px;
    align-items: center;
    padding: 40px 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all .3s;
}

    .process-step:hover {
        border-color: rgba(77,142,255,.2);
    }

.step-num {
    font-family: var(--head);
    font-weight: 800;
    font-size: 44px;
    color: var(--muted);
    line-height: 1;
    transition: color .3s;
    /* Mobile: center the number */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right:10px;
}

.process-step:hover .step-num {
    color: var(--accent);
}

.step-content h3 {
    margin-left:10px;
    font-family: var(--head);
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 6px;
}

.step-content p {
    margin-left: 10px;
    font-size: 13px;
    color: var(--muted2);
    line-height: 1.7;
}

.step-time {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .1em;
    text-align: right;
    line-height: 1.6;
}

/* ─── Contact ────────────────────────────── */
#contact {
    background: var(--bg2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(77,142,255,.07) 0%, transparent 70%);
    pointer-events: none;
}

#contact .section-label {
    margin: 0 auto 48px;
}

.contact-title {
    font-family: var(--head);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 96px);
    line-height: .92;
    letter-spacing: -.03em;
    margin-bottom: 28px;
}

    .contact-title .accent {
        color: var(--accent);
    }

.contact-sub {
    font-size: 17px;
    color: var(--muted2);
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    font-size:20px;
}

.contact-email {
    font-family: var(--mono);
    font-size: 16px;
    color: var(--accent);
    letter-spacing: .03em;
    margin-top: 28px;
    display: block;
    text-decoration: none;
}

    .contact-email:hover {
        text-decoration: underline;
    }

/* ─── Footer ─────────────────────────────── */
footer {
    padding: 36px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-copy {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .1em;
}

.footer-links {
    display: flex;
    gap: 28px;
}

    .footer-links a {
        font-family: var(--mono);
        font-size: 10px;
        color: var(--muted);
        text-decoration: none;
        letter-spacing: .1em;
        text-transform: uppercase;
        transition: color .2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

/* ─── Scroll reveal ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile-first overrides
   ═══════════════════════════════════════════ */

/* Tablet / large mobile */
@media (max-width: 960px) {
    /* Nav */
    nav {
        padding: 14px 20px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        margin-right:10px;
        display: flex;
    }

    .logo-img {
        height: 40px !important;
        margin-left:0px;
    }

    /* Hero */
    #hero {
        padding: 100px 24px 80px;
        min-height: 700px;
        max-height:800px !important;
        margin-top: 20px !important;
        margin-bottom: -90px !important;
    }

    .hero-orb, .hero-orb2 {
        display: none;
    }

    .hero-inner {
        align-items: flex-start;
    }

    .hero-badge {
        font-size: 14px;
        padding: 6px 12px;
        margin-bottom: 30px;
    }

    .hero-tag {
        font-size: 10px;
        letter-spacing: .1em;
        margin-bottom: 18px;
        display: none;
    }

    .hero-title {
        font-size: clamp(44px, 11vw, 80px);
        margin-bottom: 24px;
    }

    .hero-sub {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 28px;
    }
    .line {
        line-height: 1.2;
        font-size: 42px;
    }
    .line1 {
        font-size: 35px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: row;
        gap: 12px;
        margin-bottom: 38px;
    }

    .btn-primary, .btn-outline {
        flex: 1;
        text-align: center;
        padding: 14px 12px;
        font-size: 16px;
    }

    .hero-stats {
        width: 100%;
        border-radius: 10px;
    }

    .hero-stat {
        padding: 14px 0;
        flex: 1;
    }

    .hero-stat-num {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 9px;
    }

    .scroll-hint {
        display: none;
    }

    /* Sections */
    section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 52px);
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Services */
    .services-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .services-desc {
        max-width: 100%;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 20px;
    }

    .service-num {
        display: none;
    }

    .service-arrow {
        display: none;
    }

    .service-tag {
        align-self: flex-start;
    }

    /* Pricing */
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pricing-sub {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Skills */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Education */
    .edu-grid {
        grid-template-columns: 1fr;
    }

    /* Process */
    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
        padding: 24px 20px;
        align-items: start;
    }

    .step-num {
        font-size: 32px;
        justify-content: center;
        padding-top: 2px;
    }

    .step-time {
        display: none;
    }

    /* Contact */
    .contact-sub {
        max-width: 100%;
        font-size: 14px;
    }

    /* Footer */
    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 28px 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* Small mobile */
@media (max-width: 540px) {
    nav {
        padding: 12px 16px;
    }

    .logo-img {
        height: 30px;
    }

    #hero {
        padding: 38px 16px 72px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 64px);
    }

    .hero-badge {
        font-size: 9px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
        flex: none;
    }

    .hero-stats {
        flex-wrap: nowrap;
    }

    .hero-stat {
        padding: 12px 0;
    }

    .hero-stat-num {
        font-size: 18px;
    }

    section {
        padding: 64px 16px;
    }

    footer {
        padding: 24px 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-num {
        font-size: 38px;
    }
    .numnum1 {
    font-size:31px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .edu-card {
        padding: 32px 24px;
    }

    .why-card {
        padding: 32px 24px;
    }

    .promo-banner {
        padding: 28px 24px;
    }

    .promo-text h3 {
        font-size: 20px;
    }

    .ticker-item {
        font-size: 10px;
        padding: 0 28px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

        .contact-actions .btn-primary,
        .contact-actions .btn-outline {
            width: 100%;
            max-width: 320px;
            text-align: center;
        }
}
