/* ═══════════════════════════════════════════════════════
   PXLZ. STUDIO — style.css
   Premium Dark Mode — Créatif + Raffiné
═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
    --bg:           #111528;
    --bg-surface:   #161a35;
    --bg-card:      rgba(255,255,255,0.025);
    --border:       rgba(255,255,255,0.06);
    --border-hover: rgba(74,144,217,0.25);
    --white:        #ffffff;
    --text-muted:   rgba(255,255,255,0.45);
    --text-faint:   rgba(255,255,255,0.25);
    --text-ghost:   rgba(255,255,255,0.12);
    --accent:       #4a90d9;
    --accent-light: #6aa8eb;
    --accent-glow:  rgba(74,144,217,0.15);
    --orange:       #ff6b4a;
    --orange-glow:  rgba(255,107,74,0.12);
    --radius:       16px;
    --radius-sm:    12px;
    --radius-pill:  100px;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

::selection { background: var(--accent); color: var(--white); }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── GRAIN OVERLAY ──────────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.45;
}

/* ─── AMBIENT ORBS ───────────────────────────────────── */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.ambient-orb.a1 {
    width: 550px; height: 550px;
    background: rgba(74,144,217,0.09);
    top: 5%; right: 8%;
    animation: breathe 8s ease-in-out infinite;
}

.ambient-orb.a2 {
    width: 400px; height: 400px;
    background: rgba(255,107,74,0.05);
    bottom: 20%; left: 5%;
    animation: breathe 8s ease-in-out infinite 4s;
}

.ambient-orb.a3 {
    width: 300px; height: 300px;
    background: rgba(74,144,217,0.06);
    top: 55%; left: 40%;
    animation: breathe 10s ease-in-out infinite 2s;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.15); opacity: 0.55; }
}

/* ─── FLOATING SHAPES ────────────────────────────────── */
.shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape  { position: absolute; pointer-events: none; }

.shape-circle {
    width: 300px; height: 300px;
    border: 1.5px solid rgba(74,144,217,0.08);
    border-radius: 50%;
    top: 10%; right: 6%;
    animation: spin 30s linear infinite;
}

.shape-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: 30%; left: 10%;
    animation: float 3s ease-in-out infinite;
}

.shape-square {
    width: 14px; height: 14px;
    border: 1.5px solid var(--orange);
    border-radius: 3px;
    top: 16%; left: 32%;
    animation: spin 10s linear infinite;
}

.shape-blob {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--accent), var(--orange));
    border-radius: 50%;
    bottom: 28%; left: 5%;
    filter: blur(1px);
    opacity: 0.65;
    animation: float 5s ease-in-out infinite 1s;
}

@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    background: rgba(17,21,40,0.72);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span { color: var(--accent); }

.nav-center {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-center a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-center a:hover { color: var(--white); }
.nav-center a:hover::after { width: 100%; }

.nav-cta {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    position: relative;
    padding-bottom: 2px;
}

.nav-cta::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-cta:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 101;
}

.hamburger span {
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17,21,40,0.97);
    backdrop-filter: blur(24px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.hero-pills {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.pill {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pill.digital {
    background: rgba(74,144,217,0.1);
    color: var(--accent);
    border: 1px solid rgba(74,144,217,0.22);
}

.pill.print3d {
    background: var(--orange-glow);
    color: var(--orange);
    border: 1px solid rgba(255,107,74,0.25);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 4.75rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero h1 .gradient {
    display: block;
    background: linear-gradient(135deg, var(--accent) 20%, var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 430px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-line .arrow {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-line:hover .arrow {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 0 25px var(--accent-glow);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.03);
}

/* Hero right — service rows */
.hero-services { opacity: 0; animation: fadeUp 0.7s ease forwards 0.35s; }

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
    cursor: default;
}

.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: 1rem; }

.service-row h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.4s ease;
}

.service-row:hover h3 { color: var(--accent); }

.service-row .num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--text-ghost);
    font-weight: 500;
}

/* Hero bottom bar */
.hero-bottom {
    position: absolute;
    bottom: 2.5rem;
    left: 5%; right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.location {
    font-size: 0.7rem;
    color: var(--text-faint);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-faint);
}

.scroll-line {
    width: 32px; height: 1px;
    background: rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee {
    padding: 1.35rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.008);
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-ghost);
    padding: 0 1.75rem;
}

.marquee-track .sep { color: var(--accent); opacity: 0.35; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════ */
.section          { padding: 7rem 5%; position: relative; z-index: 1; }
.section--border  { border-top: 1px solid var(--border); }
.section-header   { text-align: center; margin-bottom: 4rem; }

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0.75rem auto 0;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   SERVICES — Glassmorphism Cards
═══════════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.svc-card:hover {
    border-color: var(--border-hover);
    background: rgba(74,144,217,0.03);
    transform: translateY(-4px);
}

.svc-card:hover::before { opacity: 1; }

.svc-card .svc-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.svc-icon.blue   { background: rgba(74,144,217,0.1);  border: 1px solid rgba(74,144,217,0.15); }
.svc-icon.orange  { background: var(--orange-glow);    border: 1px solid rgba(255,107,74,0.15); }

.svc-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.svc-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    text-decoration: none;
    display: block;
    transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}

.project-card:hover { transform: translateY(-6px); }

.project-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.project-card:hover .project-bg { transform: scale(1.05); }

.project-bg.bg-workout { background: linear-gradient(135deg, #0a0a0a, #1a1a2e); }
.project-bg.bg-linae   { background: linear-gradient(135deg, #f5f5f0, #e8e8e0); }

.project-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.project-logo.workout {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.project-logo.linae { display: flex; align-items: center; gap: 0.5rem; }

.linae-icon {
    width: 44px; height: 44px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.linae-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: #1a1a1a;
}

.project-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.75));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.2rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   PROCESS — "Comment ça marche"
═══════════════════════════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
    counter-reset: process;
}

.process-step {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(74,144,217,0.06), transparent 70%);
    pointer-events: none;
}

.process-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.65rem;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about-wrapper {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about-card {
    padding: 2rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.about-card:hover {
    border-color: var(--border-hover);
    background: rgba(74,144,217,0.03);
    transform: translateY(-3px);
}

.about-card .icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(74,144,217,0.1);
    border: 1px solid rgba(74,144,217,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.about-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact { position: relative; }

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 55% at 50% 100%, var(--accent-glow), transparent);
    pointer-events: none;
}

.contact-wrapper {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.contact-header { text-align: center; margin-bottom: 2.5rem; }

.contact-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.contact-header p { color: var(--text-muted); font-size: 1rem; }

.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-input,
.form-textarea,
.form-select {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.9rem 1.15rem;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--accent);
    background: rgba(74,144,217,0.04);
    box-shadow: 0 0 0 3px rgba(74,144,217,0.08);
}

.form-textarea { resize: vertical; min-height: 130px; }

/* Select styling */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.15rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--bg);
    color: var(--white);
}

/* Placeholder state for select */
.form-select.placeholder { color: var(--text-faint); }

.form-submit {
    background: var(--white);
    color: var(--bg);
    padding: 0.95rem 2rem;
    border-radius: var(--radius-pill);
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255,255,255,0.08);
}

.contact-alt {
    text-align: center;
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-alt p {
    color: var(--text-faint);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.contact-links { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.03);
}

.contact-link.whatsapp:hover { border-color: #25d366; color: #25d366; }

.form-status {
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(52,199,89,0.08);
    border: 1px solid rgba(52,199,89,0.25);
    color: #34c759;
}

.form-status.error {
    display: block;
    background: rgba(255,69,58,0.08);
    border: 1px solid rgba(255,69,58,0.25);
    color: #ff453a;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
    padding: 2.5rem 5%;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-logo span { color: var(--accent); }

.footer-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-right a {
    color: var(--text-faint);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-right a:hover { color: var(--white); }

.footer-copy { color: var(--text-ghost); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s cubic-bezier(.25,.46,.45,.94);
}

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

.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .hero-services { max-width: 450px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-center, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 6rem 5% 3rem; min-height: auto; padding-bottom: 5rem; }
    .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-bottom { display: none; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }

    .shape-circle, .shape-blob { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-overlay { opacity: 1; }

    .process-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .about-grid  { grid-template-columns: 1fr; gap: 0.75rem; }

    .form-row { grid-template-columns: 1fr; }

    .footer-content { flex-direction: column; gap: 1.25rem; text-align: center; }
    .footer-right   { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
    .hero-pills { flex-wrap: wrap; }
    .hero h1 { font-size: 2.25rem; }
    .hero-desc { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(17, 21, 40, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 1.25rem 5%;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background: var(--accent);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--accent-light);
}

.cookie-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-decline:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

/* Footer separator */
.footer-sep {
    color: var(--border);
    user-select: none;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .footer-sep { display: none; }
}
