/* ═══════════════════════════════════════════════════════════════════
   PhoneStrategicSourcing — Vitrine premium
   Style Framer/Awwwards · Fond blanc · Accents cyan + lime
   ═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Palette */
    --ink: #0a1a2f;
    --ink-soft: #1a2942;
    --ink-muted: #4a5a7a;
    --ink-subtle: #7a8ba8;
    --ink-dim: #b0bccf;

    --surface: #ffffff;
    --surface-raised: #f7fafc;
    --surface-hover: #eef4f8;
    --surface-tech: #f2f8fc;
    --surface-dark: #0a1a2f;

    --border: #e2e8f0;
    --border-soft: #edf2f7;
    --border-strong: #cbd5e0;

    /* PSS Colors */
    --pss-cyan: #00b8d4;
    --pss-cyan-dark: #0891b2;
    --pss-cyan-light: #67e8f9;
    --pss-lime: #84cc16;
    --pss-lime-dark: #65a30d;
    --pss-lime-light: #a3e635;

    --pss-gradient: linear-gradient(90deg, var(--pss-cyan) 0%, var(--pss-lime) 100%);
    --pss-gradient-conic: conic-gradient(from 90deg at 50% 50%, var(--pss-cyan), var(--pss-lime), var(--pss-cyan));
    --pss-gradient-vertical: linear-gradient(180deg, var(--pss-cyan) 0%, var(--pss-lime) 100%);
    --pss-gradient-mesh: radial-gradient(at 20% 20%, rgba(0, 184, 212, 0.15) 0%, transparent 50%),
                        radial-gradient(at 80% 80%, rgba(132, 204, 22, 0.12) 0%, transparent 50%);

    /* Fonts */
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

    /* Sizing */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(10, 26, 47, 0.04);
    --shadow-sm: 0 1px 3px rgba(10, 26, 47, 0.06), 0 1px 2px rgba(10, 26, 47, 0.04);
    --shadow-md: 0 4px 12px rgba(10, 26, 47, 0.08);
    --shadow-lg: 0 12px 32px rgba(10, 26, 47, 0.12);
    --shadow-xl: 0 24px 64px rgba(10, 26, 47, 0.18);
    --shadow-cyan: 0 0 24px rgba(0, 184, 212, 0.25);
    --shadow-lime: 0 0 24px rgba(132, 204, 22, 0.25);
    --shadow-tech: 0 8px 32px rgba(0, 184, 212, 0.12), 0 4px 8px rgba(132, 204, 22, 0.08);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in: cubic-bezier(0.64, 0, 0.78, 0);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 600ms;
}

/* ═══════════════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }

/* ═══════════════════════════════════════════════════════════════════
   PROGRESS BAR SCROLL (en haut de la page)
   ═══════════════════════════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pss-gradient);
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 10000;
    transition: transform 100ms linear;
}

/* ═══════════════════════════════════════════════════════════════════
   CURSOR CUSTOM (desktop only)
   ═══════════════════════════════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--pss-cyan-dark);
    border-radius: 50%;
    transition: transform 0.05s var(--ease-out);
}
.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--pss-cyan);
    border-radius: 50%;
    transition: transform 0.2s var(--ease-out), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor-ring.expand {
    width: 60px;
    height: 60px;
    background: rgba(0, 184, 212, 0.1);
    border-color: var(--pss-cyan);
}
@media (max-width: 968px), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    z-index: 1000;
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--border-soft);
    box-shadow: var(--shadow-sm);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s var(--ease);
}
.brand:hover { transform: scale(1.04); }
.brand picture { display: block; }
.brand-logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: height 0.3s var(--ease);
}
.site-header.scrolled .brand-logo-img { height: 40px; }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav > a {
    color: var(--ink-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s var(--ease);
    position: relative;
}
.site-nav > a:hover {
    color: var(--ink);
    background: var(--surface-hover);
}
.site-nav > a.btn-login {
    background: var(--ink);
    color: #fff !important;
    padding: 10px 20px !important;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-left: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.site-nav > a.btn-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pss-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: -1;
}
.site-nav > a.btn-login:hover {
    color: #fff !important;
    background: var(--ink);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-1px);
}
.site-nav > a.btn-login:hover::before { opacity: 1; }

/* Menu burger mobile */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO CINÉMATIQUE
   ═══════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
}
.hero-gradient-bg {
    position: absolute;
    inset: 0;
    background: var(--pss-gradient-mesh);
    z-index: 0;
    pointer-events: none;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 184, 212, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 184, 212, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 65%);
    mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-content { max-width: 640px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-muted);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--pss-lime);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--pss-lime), 0 0 24px var(--pss-lime);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin-bottom: 28px;
    color: var(--ink);
}
.hero h1 .accent {
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}
.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--pss-cyan-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 24px;
}
.hero-tagline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--pss-gradient);
    flex-shrink: 0;
}
.hero-tagline-text {
    display: inline-block;
    min-width: 20px;
}
.hero-tagline-text::after {
    content: '|';
    color: var(--pss-cyan);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}
@keyframes blink {
    50% { opacity: 0; }
}
.hero-tagline.typed .hero-tagline-text::after { animation: none; opacity: 0; }

.hero-sub {
    font-size: 1.15rem;
    color: var(--ink-muted);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.65;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-trust {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-trust-value {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.hero-trust-label {
    font-size: 0.75rem;
    color: var(--ink-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-image {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform-style: preserve-3d;
    perspective: 1000px;
}
.hero-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.hero-visual-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 184, 212, 0.15) 0%, transparent 50%, rgba(132, 204, 22, 0.15) 100%);
    pointer-events: none;
}
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-floating-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--pss-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-floating-card.card-1 {
    top: 30px;
    left: -20px;
    animation-delay: 0s;
}
.hero-floating-card.card-2 {
    bottom: 60px;
    right: -30px;
    animation-delay: 2s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.hero-floating-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--surface-tech);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pss-cyan-dark);
    margin-bottom: 6px;
}
.hero-floating-card-icon svg { width: 18px; height: 18px; }
.hero-floating-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.hero-floating-card-sub {
    font-size: 0.72rem;
    color: var(--ink-subtle);
    font-family: var(--font-mono);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-subtle);
    font-family: var(--font-mono);
    animation: fadeInUp 1s var(--ease) 1.5s both;
}
.hero-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, var(--pss-cyan) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE LOGOS
   ═══════════════════════════════════════════════════════════════════ */
.marquee-section {
    padding: 40px 0;
    background: var(--surface-tech);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}
.marquee-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--pss-cyan-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}
.marquee {
    display: flex;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    gap: 80px;
    padding-right: 80px;
    flex-shrink: 0;
    animation: marquee-scroll 40s linear infinite;
}
.marquee-reverse .marquee-track {
    animation-direction: reverse;
    animation-duration: 50s;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.marquee-item {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--ink-dim);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}
.marquee-item:hover { color: var(--pss-cyan-dark); }

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS COMMUNES
   ═══════════════════════════════════════════════════════════════════ */
section { padding: 120px 0; position: relative; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pss-cyan-dark);
    margin-bottom: 16px;
    font-weight: 500;
}
.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--pss-gradient);
}

section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--ink);
    line-height: 1.05;
}
section h2 .accent {
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-lead {
    color: var(--ink-muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin-bottom: 60px;
    line-height: 1.65;
}
.section-header-center { text-align: center; margin-bottom: 80px; }
.section-header-center .section-lead { margin: 0 auto; }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn-primary, .btn-ghost {
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary {
    background: var(--ink);
    color: #fff;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pss-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: -1;
}
.btn-primary:hover {
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-primary .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
    border-color: var(--border-strong);
    color: var(--ink);
    background: var(--surface);
}
.btn-ghost:hover {
    border-color: var(--pss-cyan);
    color: var(--pss-cyan-dark);
    background: var(--surface-tech);
    transform: translateY(-2px);
}
.btn-ghost:active { transform: scale(0.98); }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 600px;
}
.about-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.about-image:hover img { transform: scale(1.05); }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 26, 47, 0.4) 100%);
}
.about-badge-float {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about-badge-float::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--pss-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.about-badge-title {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.02em;
}
.about-badge-sub {
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.about-content p {
    color: var(--ink-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-content p strong {
    color: var(--ink);
    font-weight: 700;
}
.about-checks {
    list-style: none;
    margin-top: 32px;
    display: grid;
    gap: 14px;
}
.about-checks li {
    padding-left: 36px;
    position: relative;
    color: var(--ink-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}
.about-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pss-gradient);
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.about-checks li strong { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════════
   BENTO GRID SERVICES
   ═══════════════════════════════════════════════════════════════════ */
.services-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}
.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 184, 212, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}
.bento-card:hover {
    border-color: var(--pss-cyan);
    box-shadow: var(--shadow-tech);
    transform: translateY(-4px);
}
.bento-card:hover::before { opacity: 1; }

.bento-card.wide-3 { grid-column: span 3; }
.bento-card.wide-2 { grid-column: span 2; }
.bento-card.tall-2 { grid-row: span 2; }

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--surface-tech);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pss-cyan-dark);
    transition: all 0.3s var(--ease);
    align-self: flex-start;
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-card:hover .bento-icon {
    background: var(--pss-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-cyan);
    transform: rotate(-6deg) scale(1.05);
}
.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 20px 0 8px;
    color: var(--ink);
}
.bento-card p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}
.bento-card-highlight {
    background: var(--ink);
    color: #fff;
}
.bento-card-highlight h3 { color: #fff; }
.bento-card-highlight p { color: rgba(255, 255, 255, 0.7); }
.bento-card-highlight .bento-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--pss-cyan-light);
}
.bento-card-highlight::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 184, 212, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.bento-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--pss-cyan-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 16px;
    font-weight: 500;
}
.bento-card-highlight .bento-card-tag { color: var(--pss-lime-light); }
.bento-visual-image {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.15;
    transition: opacity 0.3s var(--ease);
}
.bento-card:hover .bento-visual-image { opacity: 0.25; }
.bento-visual-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════════════
   PROCESS TIMELINE HORIZONTAL
   ═══════════════════════════════════════════════════════════════════ */
.process { background: var(--surface-tech); }
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--pss-gradient);
    z-index: 0;
}
.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.process-step-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--surface);
    border: 2px solid var(--pss-cyan);
    color: var(--pss-cyan-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 2;
}
.process-step:hover .process-step-num {
    background: var(--pss-gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-cyan);
}
.process-step:last-child .process-step-num {
    border-color: var(--pss-lime);
    color: var(--pss-lime-dark);
}
.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.process-step p {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   STATS ANIMATED
   ═══════════════════════════════════════════════════════════════════ */
.stats-section {
    background: var(--surface-dark);
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-image: var(--pss-gradient);
    border-image-slice: 1;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 184, 212, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 184, 212, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}
.stats-section .section-header-center h2 { color: #fff; }
.stats-section .section-lead { color: rgba(255, 255, 255, 0.7); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-block .stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: var(--font-mono);
}
.stat-block .stat-suffix {
    display: inline-block;
    font-size: 0.6em;
    margin-left: 4px;
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-block .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 16px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   BRANDS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.brands-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.brand-cell {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ink-dim);
    transition: all 0.4s var(--ease);
    aspect-ratio: 1.15/1;
    position: relative;
    overflow: hidden;
}
.brand-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pss-gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.brand-cell > * { position: relative; z-index: 1; }
.brand-cell svg {
    width: 40px;
    height: 40px;
    transition: transform 0.4s var(--ease);
}
.brand-cell span {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
    transition: color 0.4s var(--ease);
}
.brand-cell:hover {
    color: #fff;
    transform: translateY(-6px);
    box-shadow: var(--shadow-cyan);
}
.brand-cell:hover::before { opacity: 1; }
.brand-cell:hover svg { transform: scale(1.15) rotate(-6deg); }
.brand-cell:hover span { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials {
    background: var(--surface-tech);
    position: relative;
    overflow: hidden;
}
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 340px;
}
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}
.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    color: var(--pss-cyan);
    opacity: 0.3;
    margin-bottom: 24px;
}
.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    flex: 1;
    font-weight: 500;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 3px var(--pss-cyan);
    flex-shrink: 0;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonial-author-info p {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--pss-cyan-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}
.testimonials-dot {
    width: 32px;
    height: 4px;
    background: var(--border-strong);
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.testimonials-dot.active {
    background: var(--pss-gradient);
    width: 48px;
}

/* ═══════════════════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.team-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    filter: grayscale(30%);
}
.team-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}
.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 26, 47, 0.95) 100%);
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: background 0.4s var(--ease);
}
.team-card:hover .team-card-overlay {
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.3) 0%, rgba(10, 26, 47, 0.98) 100%);
}
.team-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.team-card-role {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--pss-cyan-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.team-card-bio {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-top: 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
}
.team-card:hover .team-card-bio {
    max-height: 100px;
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   SAV
   ═══════════════════════════════════════════════════════════════════ */
.sav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sav-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 500px;
    margin: 0 auto;
}
.sav-shield-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sav-shield-svg {
    width: 80%;
    height: 80%;
    animation: float-shield 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 184, 212, 0.2));
}
@keyframes float-shield {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(2deg); }
}
.sav-shield-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.sav-shield-months {
    font-family: var(--font-mono);
    font-size: 4.5rem;
    font-weight: 700;
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
}
.sav-shield-label {
    font-size: 0.85rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
    font-weight: 500;
}
.sav-orbits {
    position: absolute;
    inset: 0;
    animation: rotate-orbit 30s linear infinite;
}
@keyframes rotate-orbit {
    to { transform: rotate(360deg); }
}
.sav-orbit-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--pss-cyan);
    box-shadow: 0 0 20px var(--pss-cyan);
}
.sav-orbit-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.sav-orbit-dot:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); background: var(--pss-lime); box-shadow: 0 0 20px var(--pss-lime); }
.sav-orbit-dot:nth-child(3) { left: 0; top: 50%; transform: translateY(-50%); background: var(--pss-cyan-light); }
.sav-orbit-dot:nth-child(4) { right: 0; top: 50%; transform: translateY(-50%); background: var(--pss-lime-light); }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact-benefits {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}
.contact-benefits span {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--pss-cyan-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-benefits span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pss-lime);
    box-shadow: 0 0 8px var(--pss-lime);
}
.contact-form {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--pss-gradient);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    position: relative;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 20px 16px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    background: var(--surface);
    color: var(--ink);
    transition: all 0.2s var(--ease);
}
.form-field label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 0.9rem;
    color: var(--ink-subtle);
    pointer-events: none;
    transition: all 0.2s var(--ease);
    background: var(--surface);
    padding: 0 4px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--pss-cyan);
    box-shadow: 0 0 0 4px rgba(0, 184, 212, 0.1);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:not([value=""]) + label {
    top: -8px;
    left: 12px;
    font-size: 0.72rem;
    color: var(--pss-cyan-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}
.contact-form button {
    align-self: center;
    margin-top: 12px;
    border: 0;
    padding: 16px 40px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
    padding: 80px 0 32px;
    background: var(--surface-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--pss-gradient);
}
.footer-cta {
    text-align: center;
    padding: 40px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
}
.footer-cta h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: #fff;
}
.footer-cta h3 .accent {
    background: var(--pss-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 16px 0 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--pss-gradient);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-cyan);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-mono);
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--pss-cyan-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.4); font-size: 0.82rem; }
.footer-mono {
    font-family: var(--font-mono);
    color: var(--pss-cyan-light) !important;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--pss-gradient);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-4px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-grid, .about-grid, .sav-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { height: 400px; }
    .hero-visual-image { max-width: 380px; }
    .services-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .services-bento .bento-card.wide-3 { grid-column: span 2; }
    .services-bento .bento-card.wide-2 { grid-column: span 2; }
    .services-bento .bento-card.tall-2 { grid-row: span 1; }
    .process-timeline { grid-template-columns: 1fr; gap: 40px; }
    .process-timeline::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .sav-visual { max-width: 400px; }
    .sav-shield-months { font-size: 3.5rem; }
    .site-nav > a:not(.btn-login) { display: none; }
    .mobile-menu-btn { display: block; }
    .contact-form { padding: 32px; }
}

@media (max-width: 640px) {
    section { padding: 80px 0; }
    .hero h1 { font-size: 2.4rem; }
    .hero-sub { font-size: 1rem; }
    .hero-trust { gap: 20px; }
    .hero-trust-value { font-size: 1.2rem; }
    .services-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-card { min-height: 220px; }
    .bento-card.wide-3, .bento-card.wide-2 { grid-column: span 1; }
    .testimonial-card { padding: 32px; }
    .testimonial-text { font-size: 1.05rem; }
    .form-row { grid-template-columns: 1fr; gap: 12px; }
    .contact-form { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stat-block .stat-number { font-size: 2.4rem; }
    .contact-benefits { gap: 16px; flex-direction: column; }
    .hero-floating-card { transform: scale(0.85); }
    .about-badge-float { padding: 14px 18px; }
    .about-badge-title { font-size: 1.4rem; }
    .brand-logo-img { height: 36px; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.anim-in { animation: fadeInUp 0.8s var(--ease) both; }
.anim-in-delay-1 { animation-delay: 0.15s; }
.anim-in-delay-2 { animation-delay: 0.3s; }
.anim-in-delay-3 { animation-delay: 0.45s; }
.anim-in-delay-4 { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
