/* ═══════════════════════════════════════════════════════════════
   BOOWOO — Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
    /* Colors */
    --color-bg: #080b12;
    --color-bg-2: #0d1117;
    --color-bg-card: #111620;
    --color-bg-card-2: #161c2a;
    --color-border: rgba(255, 255, 255, .07);
    --color-border-hover: rgba(255, 255, 255, .15);

    --color-primary: #7c5cfc;
    --color-primary-dark: #5b3fe0;
    --color-primary-glow: rgba(124, 92, 252, .35);
    --color-accent: #00d4ff;
    --color-accent-2: #ff6b6b;

    --color-text: #f0f4ff;
    --color-text-muted: #8892a4;
    --color-text-faint: #4a5568;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: .5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --duration: 220ms;

    /* Shadows */
    --shadow-card: 0 1px 2px rgba(0, 0, 0, .5), 0 4px 16px rgba(0, 0, 0, .3);
    --shadow-glow: 0 0 40px var(--color-primary-glow);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
}

/* ── Layout helpers ──────────────────────────────────────────── */
.container {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(124, 92, 252, .12);
    border: 1px solid rgba(124, 92, 252, .25);
    padding: .3rem .9rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--duration) var(--ease);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn svg {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 0 0 var(--color-primary-glow);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 0 24px var(--color-primary-glow);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-hover);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .25);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--sm {
    padding: .6rem 1.2rem;
    font-size: .85rem;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 11, 18, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--duration) var(--ease),
        border-color var(--duration) var(--ease);
}

.header.scrolled {
    background: rgba(8, 11, 18, .98);
    border-color: var(--color-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.nav__logo-boo {
    color: var(--color-text);
}

.nav__logo-woo {
    color: var(--color-primary);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--duration) var(--ease);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--duration) var(--ease);
}

.nav__link:hover {
    color: var(--color-text);
}

.nav__link:hover::after {
    transform: scaleX(1);
}

.nav__link--cta {
    background: var(--color-primary);
    color: #fff !important;
    padding: .55rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: .9rem;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--color-primary-dark);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 var(--space-3xl);
    overflow: hidden;
}

/* Grid background */
.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

/* Ambient orbs */
.hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(80px);
    opacity: .4;
}

.orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7c5cfc 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: 100px;
    right: -100px;
    opacity: .2;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    bottom: 100px;
    left: 40%;
    opacity: .15;
    animation: orbFloat 10s ease-in-out infinite 3s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(.97);
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--color-border);
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: var(--radius-full);
    box-shadow: 0 0 6px #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.03em;
    margin-bottom: var(--space-md);
}

.hero__title-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--color-text);
    line-height: 1;
}

.hero__stat span {
    font-size: .82rem;
    color: var(--color-text-muted);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.hero__scroll-hint span {
    display: block;
    width: 20px;
    height: 32px;
    border: 2px solid var(--color-border-hover);
    border-radius: 10px;
    position: relative;
}

.hero__scroll-hint span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--color-text-muted);
    border-radius: 2px;
    animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0% {
        top: 5px;
        opacity: 1;
    }

    100% {
        top: 16px;
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
    padding: var(--space-3xl) 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--duration) var(--ease),
        box-shadow var(--duration) var(--ease),
        transform var(--duration) var(--ease);
}

.service-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.service-card--featured {
    grid-column: 1 / -1;
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(124, 92, 252, .08) 0%, rgba(0, 212, 255, .04) 100%);
    border-color: rgba(124, 92, 252, .2);
}

.service-card--featured:hover {
    border-color: rgba(124, 92, 252, .4);
    box-shadow: 0 0 40px rgba(124, 92, 252, .1);
}

.service-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(124, 92, 252, .15);
    border: 1px solid rgba(124, 92, 252, .2);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    color: var(--color-primary);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.service-card__tags li {
    font-size: .78rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--color-border);
    padding: .25rem .7rem;
    border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════════════════ */
.projects {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-2);
    position: relative;
}

.projects::before,
.projects::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.projects::before {
    top: 0;
}

.projects::after {
    bottom: 0;
}

.projects__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* ── Project Card Base ────── */
.project-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--duration) var(--ease),
        box-shadow var(--duration) var(--ease),
        transform var(--duration) var(--ease);
}

.project-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.project-card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
}

/* ── Visual area ────── */
.project-card__visual {
    flex-shrink: 0;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.project-card--wide .project-card__visual {
    width: 42%;
    min-height: 280px;
}

/* Color accents per project */
.project-card__visual--bettalog {
    background: linear-gradient(135deg, #0d1f0d 0%, #0a1a10 100%);
    border-right: 1px solid var(--color-border);
}

.project-card__visual--equite {
    background: linear-gradient(135deg, #0d1220 0%, #111830 100%);
    border-bottom: 1px solid var(--color-border);
}

.project-card__visual--rdv {
    background: linear-gradient(135deg, #1a0d20 0%, #130818 100%);
    border-bottom: 1px solid var(--color-border);
}

.project-card__visual--hair {
    background: linear-gradient(135deg, #1a100d 0%, #150c09 100%);
    border-bottom: 1px solid var(--color-border);
}

.project-card__visual--portrait {
    background: linear-gradient(135deg, #0d1020 0%, #090c1a 100%);
    border-bottom: 1px solid var(--color-border);
}

/* ── Mockup browser ────── */
.project-card__mockup {
    background: #0a0d14;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}

.project-card__mockup--sm {
    max-width: 240px;
}

.mockup__bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: #111520;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mockup__bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup__bar span:nth-child(1) {
    background: #ff5f57;
}

.mockup__bar span:nth-child(2) {
    background: #febc2e;
}

.mockup__bar span:nth-child(3) {
    background: #28c840;
}

.mockup__screen {
    padding: 16px;
}

/* Bettalog stats mockup */
.mockup__stat {
    display: inline-flex;
    flex-direction: column;
    margin-right: 12px;
    margin-bottom: 8px;
}

.mockup__stat strong {
    font-size: .85rem;
    font-weight: 700;
    color: #22c55e;
    font-family: var(--font-display);
}

.mockup__stat small {
    font-size: .65rem;
    color: var(--color-text-faint);
}

.mockup__chart {
    margin-top: 10px;
    height: 60px;
    color: #22c55e;
}

.mockup__chart svg {
    width: 100%;
    height: 100%;
}

/* Auth mockup */
.mockup__screen--auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
}

.mockup__logo-placeholder {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
}

.mockup__logo-placeholder--portrait {
    background: linear-gradient(135deg, #7c5cfc, #00d4ff);
}

.mockup__form-row {
    width: 100%;
    height: 28px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
}

.mockup__form-row--sm {
    height: 20px;
}

.mockup__form-btn {
    width: 100%;
    height: 30px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    opacity: .8;
}

/* Hair mockup */
.mockup__screen--hair {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.mockup__hero-text {
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
}

.mockup__btn-row {
    display: flex;
    gap: 6px;
}

.mockup__pill {
    height: 22px;
    flex: 1;
    background: #d4a26a;
    border-radius: var(--radius-full);
    opacity: .8;
}

.mockup__pill--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
}

/* Portrait mockup */
.mockup__screen--portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
}

/* ── Phone mockup ────── */
.project-card__phone {
    width: 120px;
    height: 220px;
    background: #111520;
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}

.phone__notch {
    width: 40px;
    height: 10px;
    background: #0a0d14;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

.phone__screen {
    padding: 8px;
}

.phone__app-header {
    font-size: .52rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}

.phone__app-row {
    height: 20px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    margin-bottom: 6px;
}

.phone__app-row--sm {
    height: 14px;
}

/* ── Project card content ────── */
.project-card__content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card__meta {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: .85rem;
}

.project-tag {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--color-primary);
    background: rgba(124, 92, 252, .12);
    border: 1px solid rgba(124, 92, 252, .2);
    padding: .2rem .65rem;
    border-radius: var(--radius-full);
}

.project-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: .75rem;
}

.project-card__desc {
    color: var(--color-text-muted);
    font-size: .92rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: var(--space-sm);
}

.project-card__highlights {
    list-style: none;
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.project-card__highlights li {
    font-size: .85rem;
    color: var(--color-text-muted);
    padding-left: 1rem;
    position: relative;
}

.project-card__highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: .8rem;
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    transition: gap var(--duration) var(--ease), color var(--duration) var(--ease);
}

.project-card__link svg {
    width: 1em;
    height: 1em;
}

.project-card__link:hover {
    gap: .65rem;
    color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
    padding: var(--space-3xl) 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about__text .section-tag {
    margin-bottom: .85rem;
}

.about__text .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.about__text p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.about__value {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.about__value-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(124, 92, 252, .15);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: var(--color-primary);
    font-size: .85rem;
    font-weight: 700;
    margin-top: 2px;
}

.about__value strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.about__value span {
    font-size: .85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.about__visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about__card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
}

.about__card-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-text-faint);
    margin-bottom: var(--space-sm);
}

.about__tech-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.about__tech-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--color-text-muted);
}

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

.tech-dot--blue {
    background: #60a5fa;
    box-shadow: 0 0 6px #60a5fa;
}

.tech-dot--green {
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
}

.tech-dot--purple {
    background: #a78bfa;
    box-shadow: 0 0 6px #a78bfa;
}

.tech-dot--yellow {
    background: #fbbf24;
    box-shadow: 0 0 6px #fbbf24;
}

.tech-dot--red {
    background: #f87171;
    box-shadow: 0 0 6px #f87171;
}

.tech-dot--cyan {
    background: #22d3ee;
    box-shadow: 0 0 6px #22d3ee;
}

.tech-dot--teal {
    background: #54c5f8;
    box-shadow: 0 0 6px #54c5f8;
}

.about__location {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    color: var(--color-text-muted);
}

.about__location svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-2);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact__text .section-tag {
    margin-bottom: .85rem;
}

.contact__text .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.contact__text>p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--duration) var(--ease);
}

a.contact__item:hover {
    border-color: var(--color-primary);
}

.contact__item-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 92, 252, .12);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact__item-icon svg {
    width: 20px;
    height: 20px;
}

.contact__item strong {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-text-faint);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .15rem;
}

.contact__item span {
    font-size: .95rem;
    color: var(--color-text-muted);
}

/* ── Form ────── */
.contact__form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.form__group label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.form__group input,
.form__group select,
.form__group textarea {
    background: var(--color-bg-card-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: .75rem 1rem;
    font-size: .95rem;
    color: var(--color-text);
    transition: border-color var(--duration) var(--ease),
        box-shadow var(--duration) var(--ease);
    outline: none;
    resize: vertical;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--color-text-faint);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form__group select option {
    background: var(--color-bg-card);
}

.form__note {
    text-align: center;
    font-size: .8rem;
    color: var(--color-text-faint);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer__brand .nav__logo {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.footer__brand p {
    font-size: .88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: .5rem;
}

.footer__location {
    font-size: .82rem;
    color: var(--color-text-faint);
}

.footer__links h4,
.footer__contact h4 {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-text-faint);
    margin-bottom: var(--space-sm);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer__links a {
    font-size: .88rem;
    color: var(--color-text-muted);
    transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
    color: var(--color-text);
}

.footer__contact a:first-of-type {
    display: block;
    font-size: .88rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__bottom p {
    font-size: .82rem;
    color: var(--color-text-faint);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about__visual {
        flex-direction: row;
    }

    .about__card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 4rem;
    }

    /* Nav */
    .nav__list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(8, 11, 18, .98);
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        padding: .5rem 0 1rem;
        z-index: 999;
    }

    .nav__list.open {
        display: flex;
    }

    .nav__link {
        display: block;
        padding: .85rem 1.5rem;
        font-size: 1rem;
        color: var(--color-text);
    }

    .nav__link::after {
        display: none;
    }

    .nav__link--cta {
        margin: .5rem 1.5rem;
        text-align: center;
        border-radius: var(--radius-md);
    }

    .nav__burger {
        display: flex;
    }

    /* Nav burger animation */
    .nav__burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav__burger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav__burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card--featured {
        flex-direction: column;
    }

    /* Projects */
    .projects__grid {
        grid-template-columns: 1fr;
    }

    .project-card--wide {
        flex-direction: column;
    }

    .project-card--wide .project-card__visual {
        width: 100%;
    }

    /* Contact */
    .contact__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about__visual {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero__stats {
        gap: var(--space-md);
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}