/* ═══════════════════════════════════════════════════
   LOJIFORCE — CSS Design System
   Theme: Light Tech + Navy & Cyan (Logistics Colors)
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ── Logistics & Tech Palette ── */
    --navy: #0F3460;
    --navy-mid: #1A4A8A;
    --navy-light: #2563EB;
    --cyan: #06B6D4;
    --cyan-dim: #0891B2;
    --cyan-glow: rgba(6, 182, 212, 0.12);
    --cyan-line: rgba(6, 182, 212, 0.35);
    /* Backgrounds — light spectrum */
    --bg-base: #F0F4FA;
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-alt: #EFF6FF;
    --bg-border: rgba(15, 52, 96, 0.1);
    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    /* Typography */
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    /* Spacing */
    --section-py: 100px;
    --container-max: 1200px;
    --container-px: 24px;
    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    /* Nav */
    --nav-h: 72px;
    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

::selection {
    background: var(--cyan);
    color: #fff;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 3px;
}

/* ── CONTAINER ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ── SECTION ── */
.section {
    padding: var(--section-py) 0;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--cyan-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-desc {
    margin-top: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: all 0.25s var(--ease);
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.12);
        opacity: 0;
        transition: opacity 0.2s;
    }

    .btn:hover::before {
        opacity: 1;
    }

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.6);
    pointer-events: none;
}

.btn--primary {
    background: var(--navy);
    color: #fff;
}

    .btn--primary:hover {
        background: var(--navy-mid);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(15, 52, 96, 0.28);
    }

    .btn--primary:active {
        transform: translateY(0);
    }

.btn--ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(15, 52, 96, 0.25);
}

    .btn--ghost:hover {
        border-color: var(--navy);
        background: var(--bg-alt);
        transform: translateY(-2px);
    }

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── STAGGER REVEAL delays for grid children ── */
.services__grid .service-card.visible {
    transition-delay: calc(var(--i, 0) * 80ms);
}

.projects__grid .project-card.visible {
    transition-delay: calc(var(--i, 0) * 70ms);
}

.why__grid .why-card.visible {
    transition-delay: calc(var(--i, 0) * 90ms);
}

/* ═══════════════════ KEYFRAMES ═══════════════════ */

/* Flowing gradient for hero accent text */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating/bobbing for icons */
@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Shimmer sweep across a card */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(280%) skewX(-15deg);
    }
}

/* Rotating dashed ring pulse */
@keyframes ringPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Animated route dashes in hero */
@keyframes dashMove {
    to {
        stroke-dashoffset: -48;
    }
}

/* Slow pan for hero grid background */
@keyframes gridPan {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 60px 60px;
    }
}

/* Glow pulse for stat numbers */
@keyframes glowPulse {

    0%, 100% {
        text-shadow: 0 0 0px transparent;
    }

    50% {
        text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero tag glow */
@keyframes tagGlow {

    0%, 100% {
        box-shadow: 0 0 0px rgba(6, 182, 212, 0);
    }

    50% {
        box-shadow: 0 0 16px rgba(6, 182, 212, 0.25);
    }
}



/* ═══════════════════ NAV ═══════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid transparent;
}

    .nav.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom-color: var(--bg-border);
        box-shadow: 0 4px 24px rgba(15, 52, 96, 0.08);
    }

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
}

.nav__logo-text {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    color: var(--navy);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

    .nav__links a {
        font-size: 0.9rem;
        color: var(--text-secondary);
        transition: color 0.2s;
        position: relative;
        padding-bottom: 2px;
    }

        .nav__links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 100%;
            height: 2px;
            background: var(--cyan);
            transition: right 0.25s var(--ease);
        }

        .nav__links a:hover {
            color: var(--navy);
        }

            .nav__links a:hover::after {
                right: 0;
            }

.nav__cta {
    flex-shrink: 0;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

    .nav__burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s;
    }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 60px) var(--container-px) 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Grid background */
.hero__grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Hero gradient background */
    background: linear-gradient(140deg, #EFF6FF 0%, #F0F4FA 50%, #E0F2FE 100%);
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 52, 96, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 52, 96, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    animation: gridPan 12s linear infinite;
}

.hero__scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(15, 52, 96, 0.015) 3px, rgba(15, 52, 96, 0.015) 4px);
    pointer-events: none;
}

/* Decorative accent blobs */
.hero__grid-bg::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 65%);
    border-radius: 50%;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--cyan-dim);
    border: 1px solid var(--cyan-line);
    background: var(--cyan-glow);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    transition-delay: 0.1s;
    animation: tagGlow 3s ease-in-out infinite;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero__title {
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--navy);
    transition-delay: 0.15s;
}

.hero__title--accent {
    background: linear-gradient(270deg, var(--cyan), var(--navy-light), var(--cyan-dim), var(--cyan));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Typing Effect Properties */
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
    border-right: 4px solid var(--cyan);
    /* Blinking Cursor */
    /* 
    1. gradientFlow: existing background spin 
    2. typing: width expansion 
    3. blink-caret: cursor blink 
  */
    animation: gradientFlow 5s ease infinite, typing 2.0s steps(22, end) forwards, blink-caret 0.8s step-end infinite;
}

@keyframes typing {
    from {
        max-width: 0;
    }

    to {
        max-width: 100%;
    }
}

@keyframes blink-caret {

    from, to {
        border-color: transparent;
    }

    50% {
        border-color: var(--cyan);
    }
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 40px;
    transition-delay: 0.2s;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    transition-delay: 0.25s;
}

.hero__metrics {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition-delay: 0.3s;
    box-shadow: 0 4px 20px rgba(15, 52, 96, 0.08);
}

.hero__metric {
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__metric-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-mono);
    line-height: 1;
}

.hero__metric-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hero__metric-sep {
    width: 1px;
    height: 42px;
    background: var(--bg-border);
    flex-shrink: 0;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    right: var(--container-px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fe7109, transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    40% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    60% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about {
    background: var(--bg-surface);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.about__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── About Tech Stack Cloud ── */
.about__techstack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about__ts-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--cyan-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* The floating orbit area */
.about__ts-orbit {
    position: relative;
    width: 100%;
    height: 380px;
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-lg);
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6,182,212,0.05) 0%, transparent 70%), var(--bg-surface);
    overflow: hidden;
}

    /* Subtle animated grid inside orbit area */
    .about__ts-orbit::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(254, 113, 9, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(254, 113, 9, 0.12) 1px, transparent 1px);
        background-size: 40px 40px;
        border-radius: var(--radius-lg);
    }

/* Centre piece */
.about__ts-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.about__ts-center-mark {
    width: 64px;
    height: 64px;
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0 0 8px rgba(15,52,96,0.08), 0 0 0 16px rgba(15,52,96,0.04);
    animation: centerPulse 4s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(15,52,96,0.08), 0 0 0 16px rgba(15,52,96,0.04);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(6,182,212,0.12), 0 0 0 24px rgba(6,182,212,0.05);
    }
}

.about__ts-center-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

/* Floating badges */
.ts-badge {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    padding: 7px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(15,52,96,0.07);
    transition: border-color 0.3s, box-shadow 0.3s, color 0.3s;
    cursor: default;
    z-index: 1;
}

    .ts-badge:hover {
        border-color: var(--cyan);
        box-shadow: 0 4px 20px rgba(6,182,212,0.18);
        color: var(--cyan-dim);
    }

/* Individual positions + float animations */
.ts-badge--1 {
    top: 8%;
    left: 5%;
    animation: tsFloat1 5.0s ease-in-out infinite;
}

.ts-badge--2 {
    top: 6%;
    right: 8%;
    animation: tsFloat2 4.5s ease-in-out infinite;
}

.ts-badge--3 {
    top: 20%;
    left: 72%;
    animation: tsFloat3 6.0s ease-in-out infinite;
}

.ts-badge--4 {
    top: 36%;
    left: 2%;
    animation: tsFloat4 5.5s ease-in-out infinite;
}

.ts-badge--5 {
    top: 64%;
    left: 6%;
    animation: tsFloat1 4.8s ease-in-out infinite 0.5s;
}

.ts-badge--6 {
    top: 70%;
    right: 5%;
    animation: tsFloat2 5.2s ease-in-out infinite 1.0s;
}

.ts-badge--7 {
    top: 55%;
    right: 2%;
    animation: tsFloat3 4.7s ease-in-out infinite 0.3s;
}

.ts-badge--8 {
    bottom: 8%;
    left: 20%;
    animation: tsFloat4 5.8s ease-in-out infinite 0.8s;
}

.ts-badge--9 {
    bottom: 8%;
    right: 18%;
    animation: tsFloat1 5.3s ease-in-out infinite 1.2s;
}

.ts-badge--10 {
    top: 28%;
    left: 32%;
    animation: tsFloat2 6.2s ease-in-out infinite 0.6s;
    font-size: 0.7rem;
    opacity: 0.6;
}

@keyframes tsFloat1 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(4px, -10px);
    }
}

@keyframes tsFloat2 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-6px, -8px);
    }
}

@keyframes tsFloat3 {
    0%, 100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(5px, -6px);
    }

    66% {
        transform: translate(-4px, 5px);
    }
}

@keyframes tsFloat4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-5px, -9px) rotate(1deg);
    }
}

/* Stats footer */
.about__ts-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
    border-top: 1px dashed var(--bg-border);
    padding-top: 20px;
}

.ts-stat {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .ts-stat em {
        font-style: normal;
        font-family: var(--font-mono);
        font-weight: 700;
        color: var(--navy);
    }

.ts-sep {
    color: var(--bg-border);
    font-size: 1.2rem;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--navy);
    border: 1px solid rgba(15, 52, 96, 0.2);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.06em;
}

.about__text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 1rem;
}

.about__text > .section-label {
    margin-bottom: 12px;
}

.about__text > .section-title {
    margin-bottom: 24px;
}

.about__features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .about__features li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

.about__feature-icon {
    color: var(--cyan-dim);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
    background: var(--bg-base);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bg-border);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 52, 96, 0.06);
}

.service-card {
    background: var(--bg-surface);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, box-shadow 0.3s;
    cursor: default;
}

    .service-card:hover {
        background: var(--bg-alt);
        box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.15);
    }

    /* Shimmer sweep on hover */
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
        transform: translateX(-100%) skewX(-15deg);
        pointer-events: none;
        z-index: 2;
    }

    .service-card:hover::before {
        animation: shimmer 0.65s ease forwards;
    }

.service-card__num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #fe7109;
    letter-spacing: 0.1em;
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--navy);
    transition: transform 0.3s var(--ease), color 0.3s;
}

.service-card:hover .service-card__icon {
    transform: scale(1.12);
    color: var(--cyan-dim);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Cyan border on hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--cyan);
    transition: right 0.4s var(--ease);
}

.service-card:hover::after {
    right: 0;
}

/* ═══════════════════ PROJECTS ═══════════════════ */
.projects {
    background: var(--bg-surface);
    position: relative;
}

    .projects::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--cyan-line), transparent);
    }

    .projects::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--cyan-line), transparent);
    }

.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

    .project-card:hover {
        border-color: var(--cyan-line);
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(15, 52, 96, 0.12), 0 0 0 1px var(--cyan-line);
    }

.project-card__logo-wrap {
    height: 160px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--bg-border);
    overflow: hidden;
}

    .project-card__logo-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 24px 24px;
    }

.project-card__icon-placeholder {
    width: 76px;
    height: 76px;
    background: var(--bg-alt);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform 0.3s var(--ease), border-color 0.3s;
    overflow: hidden;
    /* resim taşmasın diye */
    padding: 6px;
    /* içeri biraz boşluk ki çok yapışmasın */
}

.project-card:hover .project-card__icon-placeholder {
    transform: scale(1.1);
    border-color: var(--cyan);
    color: var(--cyan-dim);
}

.project-card__icon-placeholder svg,
.project-card__icon-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    color: #fe7109;
    border: 1px solid rgba(254, 113, 9, 0.4);
    background: rgba(254, 113, 9, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    z-index: 1;
}

.project-card__body {
    padding: 30px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    position: relative;
    z-index: 2;
}

    .project-card__body h3 {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 2px;
    }

    .project-card__body p {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.6;
        flex: 1;
    }

.project-card__tech {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

    .project-card__tech span {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        color: var(--navy);
        border: 1px solid rgba(15, 52, 96, 0.15);
        background: var(--bg-alt);
        padding: 3px 8px;
        border-radius: 4px;
        letter-spacing: 0.04em;
    }

/* CTA card */
.project-card--cta {
    border-style: dashed;
    border-color: var(--bg-border);
    background: transparent;
    justify-content: center;
}

    .project-card--cta:hover {
        border-color: var(--cyan-line);
        background: var(--cyan-glow);
        transform: translateY(-4px);
        box-shadow: none;
    }

.project-card__cta-inner {
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.project-card__cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--cyan-line);
    color: var(--cyan-dim);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.project-card__cta-inner h3 {
    color: var(--text-primary);
}

.project-card__cta-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ═══════════════════ STATS ═══════════════════ */
.stats {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.stats__bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Cyan glow blobs */
.stats::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* Override section-label and section-title inside stats */
.stats .section-label {
    color: var(--cyan);
}

.stats .section-title {
    color: #fff;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s;
}

    .stat-item:last-child {
        border-right: none;
    }

    .stat-item:hover {
        background: rgba(6, 182, 212, 0.1);
    }

.stat-item__num {
    font-family: var(--font-mono);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

.stat-item__suffix {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: rgba(6, 182, 212, 0.7);
    font-weight: 500;
    margin-top: -8px;
}

.stat-item__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.03em;
}

/* ═══════════════════ WHY ═══════════════════ */
.why {
    background: var(--bg-base);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

    .why-card:hover {
        border-color: var(--cyan-line);
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
    }

.why-card__num {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(254, 113, 9, 0.12);
    position: absolute;
    top: 10px;
    right: 16px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}

.why-card:hover .why-card__num {
    color: rgba(254, 113, 9, 0.22);
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ═══════════════════ INTEGRATIONS ═══════════════════ */
.integrations {
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--bg-border);
    border-bottom: 1px solid var(--bg-border);
}

.integrations__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.integrations__grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 52, 96, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 70% at 75% 50%, black 0%, transparent 100%);
}

.integrations__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.integrations__content p {
    margin-bottom: 32px;
}

.integrations__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .integrations__features li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

.integrations__feature-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-surface);
    border: 1px solid var(--cyan-line);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--cyan-glow);
}

    .integrations__feature-icon svg {
        width: 22px;
        height: 22px;
    }

.integrations__feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.integrations__feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Node Visuals */
.integrations__visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    container-type: inline-size;
}

.integrations__nodes {
    position: relative;
    width: 500px;
    height: 500px;
    flex-shrink: 0;
    --inv-scale: clamp(0.5, calc(100cqw / 500), 1);
    transform: scale(var(--inv-scale));
    transform-origin: center center;
    animation: spinTrack 120s linear infinite;
}

@keyframes spinTrack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.node {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(15, 52, 96, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

    .node:hover {
        transform: translateY(-4px) scale(1.05);
        border-color: var(--cyan);
        box-shadow: 0 12px 40px var(--cyan-glow);
    }

.node--center {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    /* Center node should also counter-rotate to stay upright */
    transform: translate(-50%, -50%);
    background: var(--navy);
    border: none;
    border-radius: 50%;
    color: #fff;
    animation: spinCenterReverse 120s linear infinite;
}

@keyframes spinCenterReverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.node--center:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.node--center .nav__logo-mark {
    background: transparent;
    width: auto;
    height: auto;
    font-size: 1.8rem;
}

/* Orbiting Nodes */
.node--orbit {
    padding: 12px;
    width: 140px;
    /* Counter-rotate the text so it stays upright while the track spins */
    animation: spinTrackReverse 120s linear infinite;
}

@keyframes spinTrackReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.node--orbit:hover {
    /* Pause or override the animation on hover if desired, or just enlarge */
    transform: scale(1.05);
    border-color: var(--cyan);
    box-shadow: 0 12px 40px var(--cyan-glow);
}

.node__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyan-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.node__icon {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.node--erp {
    top: 10px;
    left: 50%;
    margin-left: -70px;
}

.node--cargo {
    bottom: 10px;
    left: 50%;
    margin-left: -70px;
}

.node--ecommerce {
    top: 50%;
    left: 10px;
    margin-top: -30px;
}

.node--tms {
    top: 50%;
    right: 10px;
    margin-top: -30px;
}

/* SVG Lines & Data Dots */
.integrations__lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.il {
    stroke: #fe7109;
    stroke-width: 2;
    stroke-dasharray: 4 6;
    opacity: 0.25;
}

/* Animations */
.data-dot {
    opacity: 0;
}

.dt-1 {
    animation: dataAnimVTop 3s linear infinite;
}

.dt-2 {
    animation: dataAnimVTop 3s 1.5s linear infinite reverse;
}

.dt-3 {
    animation: dataAnimHLeft 4s linear infinite;
}

.dt-4 {
    animation: dataAnimHLeft 4s 2s linear infinite reverse;
}

.dt-5 {
    animation: dataAnimVBottom 3.5s linear infinite;
}

.dt-6 {
    animation: dataAnimHRight 4.5s linear infinite reverse;
}

.dt-7 {
    animation: dataAnimVBottom 3.5s 1.75s linear infinite reverse;
}

.dt-8 {
    animation: dataAnimHRight 4.5s 2.25s linear infinite;
}

@keyframes dataAnimVTop {
    0% {
        transform: translateY(-180px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes dataAnimVBottom {
    0% {
        transform: translateY(180px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes dataAnimHLeft {
    0% {
        transform: translateX(-180px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        transform: translateX(0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 0;
    }
}

@keyframes dataAnimHRight {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        transform: translateX(0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 0;
    }
}


/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
    background: var(--bg-surface);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact__info > .section-title {
    margin-bottom: 20px;
}

.contact__info > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .contact__details li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

.contact__detail-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

    .contact__detail-icon svg {
        width: 18px;
        height: 18px;
    }

.contact__detail-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.contact__details a,
.contact__details span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s;
}

    .contact__details a:hover {
        color: var(--navy);
    }

/* ── FORM ── */
.contact__form {
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    box-shadow: 0 8px 40px rgba(15, 52, 96, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-base);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan-line);
    box-shadow: 0 0 0 3px var(--cyan-glow);
}

.btn--full.reveal {
    grid-column: 1 / -1;
}

.contact__form-success {
    grid-column: 1 / -1;
    display: none;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid var(--cyan-line);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--cyan-dim);
    text-align: center;
}

    .contact__form-success.show {
        display: block;
    }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 60px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer .nav__logo-mark {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer .nav__logo-text {
    color: #fff;
}

.footer__brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    max-width: 240px;
    margin-top: 16px;
}

.footer__col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: var(--font-mono);
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer__col ul li a,
    .footer__col ul li span {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.55);
        transition: color 0.2s;
    }

        .footer__col ul li a:hover {
            color: var(--cyan);
        }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .footer__bottom span {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
        font-family: var(--font-mono);
    }

.footer__social {
    display: flex;
    gap: 12px;
}

    .footer__social a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.45);
        transition: all 0.2s;
    }

        .footer__social a:hover {
            border-color: var(--cyan-line);
            color: var(--cyan);
        }

    .footer__social svg {
        width: 16px;
        height: 16px;
    }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .about__inner {
        gap: 48px;
    }

    .integrations__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .integrations__visual {
        padding: 20px 0;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 70px;
        --container-px: 20px;
    }

    /* Nav */
    .nav__links {
        display: none;
        flex-direction: column;
        gap: 0;
    }

        .nav__links.open {
            display: flex;
            position: fixed;
            top: var(--nav-h);
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px 0 28px;
            border-bottom: 1px solid var(--bg-border);
            box-shadow: 0 8px 24px rgba(15, 52, 96, 0.1);
        }

            .nav__links.open li a {
                display: block;
                padding: 12px var(--container-px);
                font-size: 1rem;
                border-bottom: 1px solid var(--bg-border);
            }

    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    /* Hero */
    .hero {
        align-items: flex-start;
        padding-top: calc(var(--nav-h) + 40px);
    }

    .hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

        .hero__actions .btn {
            width: 100%;
            justify-content: center;
        }

    .hero__metrics {
        flex-direction: column;
        align-self: flex-start;
        width: 100%;
        gap: 16px;
    }

    .hero__metric-sep {
        width: 100%;
        height: 1px;
    }

    .hero__scroll-hint {
        display: none;
    }

    /* About */
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Grids */
    .services__grid {
        grid-template-columns: 1fr;
        border-radius: 0;
        border-left: none;
        border-right: none;
        margin: 0 calc(var(--container-px) * -1);
    }

    .service-card {
        border-bottom: 1px solid var(--bg-border);
        padding: 28px 20px;
    }

    .projects__grid {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 24px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    /* Integrations */
    .integrations__visual {
        max-width: 440px;
    }

    /* Contact */
    .contact__form {
        padding: 28px 20px;
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats__grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .integrations__visual {
        max-width: 320px;
    }
}
