:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --accent: #FFFFFF;
    --font-display: 'Instrument Serif', serif;
    --font-body: 'Geist', sans-serif;
    --font-mono: 'Geist Mono', monospace;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    cursor: none;
    overflow-x: hidden;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

picture {
    display: block;
    width: 100%;
    height: 100%;
}

::selection {
    background: var(--white);
    color: var(--black);
}

.cursor {
    width: 12px;
    height: 12px;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--ease-out-expo);
    border-radius: 0;
}

.cursor-trail {
    width: 48px;
    height: 48px;
    border: 1px solid var(--white);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: transform 0.4s var(--ease-out-expo), width 0.3s, height 0.3s;
    border-radius: 0;
}

.cursor.hovering {
    transform: translate(-50%, -50%) scale(3);
}

.cursor-trail.hovering {
    width: 64px;
    height: 64px;
    border-color: rgba(255,255,255,0.3);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s;
}

.nav.scrolled .nav-inner {
    border-bottom-color: var(--gray-800);
}

.nav-logo {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
}

.logo-syncro { color: var(--white); }
.logo-dot { color: var(--gray-500); margin: 0 1px; }
.logo-tech { color: var(--gray-400); font-weight: 400; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gray-400);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s var(--ease-out-expo);
}

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

.nav-cta {
    background: var(--white);
    color: var(--black);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

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

.nav-cta:hover {
    background: var(--gray-200);
    color: var(--black);
    transform: translateY(-1px);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn.active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-menu-btn.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-link:hover { color: var(--gray-400); }

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 60px;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 60%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 60%, black 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 40px;
    padding: 8px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s var(--ease-out-expo) forwards;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(60px, 10vw, 160px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s var(--ease-out-expo) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.4s; }
.hero-line:nth-child(2) { animation-delay: 0.55s; }
.hero-line:nth-child(3) { animation-delay: 0.7s; }
.hero-line:nth-child(4) { animation-delay: 0.85s; }

.hero-line-italic {
    font-family: var(--font-display);
    font-style: italic;
}

.hero-line-stroke {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

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

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 60px;
    gap: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s var(--ease-out-expo) forwards;
}

.hero-desc {
    max-width: 440px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-400);
}

.hero-desc em {
    color: var(--white);
    font-style: normal;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--black);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.3s var(--ease-out-expo), gap 0.3s;
    flex-shrink: 0;
}

.hero-cta:hover {
    transform: translateY(-2px);
    gap: 16px;
}

.hero-scroll {
    position: absolute;
    bottom: 60px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 1.6s var(--ease-out-expo) forwards;
}

.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--white);
    animation: scrollLine 2s 2s infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.marquee-strip {
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    padding: 16px 0;
    overflow: hidden;
    background: var(--gray-900);
}

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

.marquee-content {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-content span {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.marquee-dash { color: var(--gray-700) !important; }

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

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 80px;
}

.section-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
}

.services {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    overflow: hidden;
    transition: background 0.4s;
}

.service-card:hover { background: var(--gray-800); }

.service-card-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.service-card-visual img {
    transition: transform 0.6s var(--ease-out-expo);
    filter: grayscale(100%) contrast(1.2);
}

.service-card:hover .service-card-visual img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.service-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    background: rgba(0,0,0,0.6);
    padding: 4px 10px;
    border: 1px solid var(--gray-700);
}

.service-card-content { padding: 32px; }

.service-card-content h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    transition: border-color 0.3s, color 0.3s;
}

.service-card:hover .service-tags span {
    border-color: var(--gray-500);
    color: var(--gray-300);
}

.work {
    padding: 120px 40px;
    border-top: 1px solid var(--gray-800);
}

.work-list {
    max-width: 1400px;
    margin: 0 auto;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-bottom: 1px solid var(--gray-800);
    transition: background 0.4s;
    overflow: hidden;
}

.work-item:first-child { border-top: 1px solid var(--gray-800); }
.work-item:hover { background: var(--gray-900); }

.work-item-left {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-year {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.work-name {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
    transition: transform 0.4s var(--ease-out-expo);
}

.work-item:hover .work-name { transform: translateX(8px); }

.work-type {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.work-item-right {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.work-item-right img {
    transition: transform 0.8s var(--ease-out-expo);
    filter: grayscale(100%) contrast(1.1);
}

.work-item:hover .work-item-right img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1);
}

.stats {
    padding: 80px 40px;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    background: var(--gray-900);
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.stat { text-align: center; flex: 1; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--gray-700);
}

.about {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    font-weight: 400;
}

.about-lead em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--white);
}

.about-text p:not(.about-lead) {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.about-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.about-photo-item {
    height: 360px;
    overflow: hidden;
}

.about-photo-item img {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.6s, transform 0.6s var(--ease-out-expo);
}

.about-photo-item:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

.about-photo-item-offset { margin-top: 40px; }

.testimonials {
    padding: 120px 40px;
    border-top: 1px solid var(--gray-800);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.testimonial {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s;
}

.testimonial:hover { background: var(--gray-800); }

.testimonial-mark {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.8;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 32px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--gray-800);
    padding-top: 20px;
}

.testimonial-author-img {
    width: 44px;
    height: 44px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-author-img img { filter: grayscale(100%); }

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-500);
    font-family: var(--font-mono);
}

.cta {
    padding: 0 40px;
    border-top: 1px solid var(--gray-800);
}

.cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.cta-content {
    padding: 120px 80px 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 32px;
}

.cta-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gray-500);
}

.cta-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 48px;
    max-width: 400px;
}

.cta-buttons {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-700);
    transition: gap 0.3s, border-color 0.3s;
    align-self: flex-start;
}

.cta-btn:hover {
    gap: 24px;
    border-color: var(--white);
}

.cta-btn-whatsapp:hover {
    border-color: #25D366;
}

.cta-visual {
    position: relative;
    overflow: hidden;
    background: var(--gray-900);
    border-left: 1px solid var(--gray-800);
}

.cta-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-grid-lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.03);
    transform: translate(-50%, -50%) rotate(45deg);
    animation: ctaPulse 4s infinite;
}

.cta-grid-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    transform: translate(-50%, -50%) rotate(45deg);
    animation: ctaSpin 20s linear infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) rotate(45deg) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) rotate(45deg) scale(1.2); }
}

@keyframes ctaSpin {
    from { transform: translate(-50%, -50%) rotate(45deg); }
    to { transform: translate(-50%, -50%) rotate(405deg); }
}

.footer {
    border-top: 1px solid var(--gray-800);
    padding: 80px 40px 40px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-links-group {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom span {
    font-size: 12px;
    color: var(--gray-600);
    font-family: var(--font-mono);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--gray-600);
    transition: color 0.3s;
}

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

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .work-item { grid-template-columns: 1fr; }
    .work-item-right { height: 240px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-visual { display: none; }
    .cta-content { padding: 80px 0; }
    .stats-inner { flex-wrap: wrap; justify-content: center; }
    .stat-divider { display: none; }
    .stat { flex: none; width: 40%; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-links-group { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    body { cursor: auto; }
    .cursor, .cursor-trail { display: none; }
    .hero { padding: 0 20px 40px; }
    .nav { padding: 0 20px; }
    .services { padding: 80px 20px; }
    .work { padding: 80px 20px; }
    .work-item-left { padding: 32px 20px; }
    .stats { padding: 60px 20px; }
    .about { padding: 80px 20px; }
    .about-photo-item { height: 240px; }
    .testimonials { padding: 80px 20px; }
    .cta { padding: 0 20px; }
    .footer { padding: 60px 20px 24px; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .hero-cta { width: 100%; justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .section-header { margin-bottom: 48px; }
    .marquee-strip { padding: 12px 0; }
}
