@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 20px;
    /* choti bar */
    height: 2px;
    background: black;
    margin: 0 auto;
    /* center align */
    transition: all 0.3s ease;
}

/* CROSS PERFECT CENTER */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

:root {
    --black: #080B10;
    --navy: #090F20;
    --charcoal: #111722;
    --cyan: #00C6E0;
    --cyan-dim: rgba(0, 198, 224, 0.15);
    --mint: #3DFFA0;
    --gold: #F0C040;
    --white: #E8F2FF;
    --muted: rgba(232, 242, 255, 0.45);
    --border: rgba(0, 198, 224, 0.12);
    --font-display: "Playfair Display", sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

/* ── Global Canvas Background ── */
#global-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
}

/* ── Noise Overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
}

/* All sections above canvas */
.nav-logo-img {
    width: 100%;
    height: auto;
}

/* Mobile Screen */
@media (max-width: 768px) {
    .nav-logo-img {
        width: 80%;
    }
}

nav,
section,
header,
footer,
.marquee-wrap {
    position: relative;
    z-index: 2;
}

/* ── Cursor ── */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-radius 0.3s;
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 198, 224, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    background: rgba(8, 11, 16, 0.55);
    border-bottom: 1px solid rgba(0, 198, 224, 0.07);
    transition: all 0.35s ease;
}

nav.scrolled {
    background: rgba(8, 11, 16, 0.9);
    border-bottom-color: rgba(0, 198, 224, 0.15);
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 242, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    background: var(--cyan);
    color: var(--black);
    border: none;
    border-radius: 4px;
    cursor: none;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(0, 198, 224, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* ── Mobile Nav Menu ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 11, 16, 0.97);
    z-index: 190;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    backdrop-filter: blur(20px);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--cyan);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: none;
}

/* ── Hero ── */
#hero {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        /* ← 0.5 = opacity */
        url('/assets/home-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 3rem 5rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.eyebrow {
    font-family: var(--font-mono);
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#line2 {
    margin-top: -5px;
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cyan);
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 8.5rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.03em;
    margin-bottom: 2.25rem;
}

.line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.18em;
    margin-bottom: -0.18em;
}

.line-inner {
    display: block;
    color: #ffffff;
    transform: translateY(110%);
    opacity: 0;
    padding-bottom: 0.05em;
}

.line-inner.cyan {
    color: #00d4ff;
}

.cyan {
    color: var(--cyan);
}

.gold {
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 400;
    color: var(--muted);
    max-width: 890px;
    line-height: 1.75;
    margin: 0px auto;
    opacity: 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 1.25rem;
    align-items: center;
    opacity: 0;
    flex-wrap: wrap;
}

.btn-outline {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.5rem;
    border: 1px solid rgba(0, 198, 224, 0.35);
    color: var(--cyan);
    border-radius: 4px;
    cursor: none;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline:hover {
    border-color: var(--cyan);
    background: rgba(0, 198, 224, 0.08);
}

.hero-metrics {
    display: flex;
    gap: 12.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    opacity: 0;
}

.metric-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.metric-num span {
    color: var(--cyan);
}

.metric-label {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 198, 224, 0.07);
    border: 1px solid rgba(0, 198, 224, 0.2);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    backdrop-filter: blur(8px);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.75rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 55px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 242, 255, 0.2);
    writing-mode: vertical-rl;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3
    }

    50% {
        opacity: 1
    }
}

/* ── Marquee ── */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 198, 224, 0.025);
    padding: 1.1rem 0;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 80s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(232, 242, 255, 0.22);
    padding: 0 2.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.marquee-item .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── Section Common ── */
section {
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}


.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* ── Services Section ── */
#services {
    background: var(--black);
}

.services-intro {
    max-width: 520px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 0.75rem;
}

.services-nav {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
}

.svc-tab {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--muted);
    background: transparent;
    cursor: none;
    transition: all 0.25s;
}

.svc-tab.active,
.svc-tab:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 198, 224, 0.07);
}

/* Graphic Design Section */
#graphic-design {
    background: var(--charcoal);
}

#web-dev {
    background: var(--black);
}

#seo-marketing {
    background: var(--navy);
}

#video-editing {
    background: var(--charcoal);
}

#ads {
    background: var(--black);
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.service-showcase.reverse {
    direction: rtl;
}

.service-showcase.reverse>* {
    direction: ltr;
}

.service-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.service-text p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.stag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--cyan);
}

.service-stat {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
}

.sstat-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--cyan);
    line-height: 1;
}

.sstat-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.25rem;
}

.service-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card {
    position: absolute;
    background: rgba(17, 23, 34, 0.9);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
}

.svc-card.main {
    width: 80%;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(9, 15, 32, 0.95), rgba(17, 23, 34, 0.98));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.svc-card.float1 {
    width: 52%;
    right: 0;
    top: 15%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.svc-card.float2 {
    width: 45%;
    right: 8%;
    bottom: 5%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Design visual: color swatches */
.design-swatches {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.swatch {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

/* Web dev visual: code block */
.code-block {
    background: rgba(8, 11, 16, 0.95);
    border: 1px solid rgba(0, 198, 224, 0.1);
    border-radius: 10px;
    padding: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    line-height: 1.8;
    color: rgba(232, 242, 255, 0.5);
}

.code-block .kw {
    color: var(--cyan);
}

.code-block .str {
    color: var(--mint);
}

.code-block .cm {
    color: rgba(232, 242, 255, 0.25);
}

/* SEO visual: bar chart */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 110px;
}

.cbar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(0, 198, 224, 0.15);
    border-top: 2px solid var(--cyan);
}

.cbar.lit {
    background: rgba(0, 198, 224, 0.4);
}

/* Video visual: timeline */
.video-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vtl-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vtl-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--muted);
    width: 60px;
}

.vtl-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 198, 224, 0.15);
    flex: 1;
    position: relative;
    overflow: hidden;
}

.vtl-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--cyan), var(--mint));
    border-radius: 4px;
}

.vtl-time {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--muted);
    width: 35px;
    text-align: right;
}

/* Ads visual: funnel */
.ads-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.funnel-step {
    border-radius: 6px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--white);
    border: 1px solid var(--border);
}

.funnel-val {
    color: var(--cyan);
    font-weight: 700;
}

/* ── Founders Section ── */
#founders {
    background: var(--navy);
}

.founders-intro {
    max-width: 560px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 0.75rem;
    margin-bottom: 4rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.founder-card {
    background: rgba(17, 23, 34, 0.7);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s;
    cursor: default;
    /* ✅ none tha, default kiya */
}

.founder-card:hover {
    border-color: rgba(0, 198, 224, 0.35);
    transform: translateY(-5px);
}

.founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(0, 198, 224, 0.07), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    /* ✅ yeh add karo — clicks pass through ho jayenge */
}

.founder-card:hover::before {
    opacity: 1;
}

.founder-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(0, 198, 224, 0.3);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 198, 224, 0.25), rgba(61, 255, 160, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyan);
    position: relative;
    overflow: hidden;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.founder-role {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
}

.founder-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 198, 224, 0.08);
    border: 1px solid rgba(0, 198, 224, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(0, 198, 224, 0.2);
    border-color: var(--cyan);
}

.founder-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(0, 198, 224, 0.1);
    line-height: 1;
}

/* ── About ── */
#about {
    background: var(--charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.pillar {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(0, 198, 224, 0.03);
    transition: border-color 0.3s, background 0.3s;
}

.pillar:hover {
    border-color: rgba(0, 198, 224, 0.25);
    background: rgba(0, 198, 224, 0.06);
}

.pillar-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(0, 198, 224, 0.1);
    border: 1px solid rgba(0, 198, 224, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.pillar-body h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pillar-body p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

.about-visual {
    position: relative;
    height: 480px;
}

.about-card {
    position: absolute;
    background: rgba(9, 15, 32, 0.9);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
}

.about-card.main {
    width: 82%;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(9, 15, 32, 0.95), rgba(17, 23, 34, 0.98));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.about-card.floating {
    width: 52%;
    right: 0;
    top: 38%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chart-bars-about {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 115px;
    margin-bottom: 1.5rem;
}

.bar-a {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(0, 198, 224, 0.18);
    border-top: 2px solid var(--cyan);
}

.bar-a.active {
    background: rgba(0, 198, 224, 0.45);
}

.stat-val-big {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.stat-val-big .up {
    color: var(--mint);
    font-size: 0.8rem;
    margin-left: 0.3rem;
    font-family: var(--font-body);
}

.floating-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* ── Results ── */
#results {
    background: var(--black);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}

.result-card {
    background: rgba(17, 23, 34, 0.65);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: none;
}

.result-card:hover {
    border-color: rgba(0, 198, 224, 0.3);
    transform: translateY(-5px);
}

.result-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.result-card:hover::after {
    opacity: 1;
}

.result-brand {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232, 242, 255, 0.3);
    margin-bottom: 0.5rem;
}

.result-industry {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.result-val.positive {
    color: var(--mint);
}

.result-val.neutral {
    color: var(--cyan);
}

.result-key {
    font-size: 0.76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.1rem;
}

/* ── Process ── */
#process {
    background: var(--charcoal);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 224, 0.3), rgba(0, 198, 224, 0.3), transparent);
}

.step {
    padding: 0 1.5rem;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(0, 198, 224, 0.25);
    background: rgba(0, 198, 224, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--cyan);
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s;
}

.step:hover .step-num {
    background: rgba(0, 198, 224, 0.18);
    border-color: rgba(0, 198, 224, 0.6);
}

.step-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── Why Us (new section) ── */
#why-us {
    background: var(--navy);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.why-card {
    background: rgba(17, 23, 34, 0.6);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    cursor: none;
}

.why-card:hover {
    border-color: rgba(0, 198, 224, 0.3);
    transform: translateY(-4px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.why-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ── Tech Stack (new section) ── */
#tech-stack {
    background: var(--black);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}

.tech-card {
    background: rgba(17, 23, 34, 0.65);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
    cursor: none;
}

.tech-card:hover {
    border-color: rgba(0, 198, 224, 0.3);
    transform: translateY(-3px);
    background: rgba(0, 198, 224, 0.05);
}

.tech-icon {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
}

.tech-name {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Testimonials ── */
#testimonials {
    background: var(--charcoal);
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
    animation: scrollLeft 35s linear infinite;
    width: max-content;
}

.testi-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.testi-card {
    width: 360px;
    flex-shrink: 0;
    background: rgba(17, 23, 34, 0.8);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s;
}

.testi-card:hover {
    border-color: rgba(0, 198, 224, 0.25);
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 0.88rem;
    color: rgba(232, 242, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 198, 224, 0.3), rgba(61, 255, 160, 0.3));
    border: 1px solid rgba(0, 198, 224, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--cyan);
}

.testi-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
}

.testi-role {
    font-size: 0.72rem;
    color: var(--muted);
}

/* ── CTA Band (new) ── */
#cta-band {
    background: linear-gradient(135deg, rgba(0, 198, 224, 0.12), rgba(9, 15, 32, 0.98));
    border-top: 1px solid rgba(0, 198, 224, 0.15);
    border-bottom: 1px solid rgba(0, 198, 224, 0.15);
    padding: 6rem 3rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

#cta-band::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 198, 224, 0.12), transparent 70%);
    pointer-events: none;
}

.cta-band-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.cta-band-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ── Contact ── */
#contact {
    background: linear-gradient(160deg, var(--charcoal) 0%, var(--black) 100%);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    top: -200px;
    right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 224, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input,
.form-textarea {
    background: rgba(17, 23, 34, 0.8);
    border: 1px solid rgba(0, 198, 224, 0.1);
    border-radius: 8px;
    padding: 0.875rem 1.1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(0, 198, 224, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 198, 224, 0.07);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

.form-input.error {
    border-color: #ef4444;
}

.error-msg {
    font-size: 0.73rem;
    color: #ef4444;
    margin-top: -0.25rem;
    display: none;
}

.success-msg {
    display: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mint);
    padding: 1.5rem;
    border: 1px solid rgba(61, 255, 160, 0.25);
    border-radius: 8px;
    background: rgba(61, 255, 160, 0.05);
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(0, 198, 224, 0.08);
    border: 1px solid rgba(0, 198, 224, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-detail p {
    font-size: 0.83rem;
    color: var(--muted);
}

/* ── Footer ── */
footer {
    background: rgba(5, 7, 12, 1);
    border-top: 1px solid rgba(0, 198, 224, 0.07);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--cyan);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(232, 242, 255, 0.2);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: rgba(232, 242, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cyan);
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(45px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
}

.stagger-child {
    opacity: 0;
    transform: translateY(30px);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-showcase.reverse {
        direction: ltr;
    }

    .service-visual {
        height: 320px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 320px;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 5rem 1.5rem;
    }

    #hero {
        padding: 7rem 1.5rem 3rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .hero-metrics {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-band-h2 {
        font-size: 2rem;
    }
}

/* ── Hover glow on sections ── */
.section-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 224, 0.05), transparent 70%);
    pointer-events: none;
    transition: transform 0.4s ease;
}

/* ── Number counter animation ── */
.count-up {
    display: inline;
}

/* ── Split text lines ── */
.split-line {
    overflow: hidden;
    display: block;
}

.split-inner {
    display: block;
}