.elementor-10 .elementor-element.elementor-element-bb37454{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-442bdad *//* ============================================
   THREADFORM — Custom Clothing Website
   Modern / Editorial / US Market
   ============================================ */

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --cream: #f5f0eb;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-300: #bbb;
    --gray-400: #888;
    --gray-500: #666;
    --gray-600: #444;
    --gray-700: #2a2a2a;
    --gray-800: #1a1a1a;
    --gray-900: #111;
    --accent: #ff4d00;
    --accent-light: #ff6a2a;
    --accent-dark: #cc3d00;
    --forest: #1e3a2f;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --header-h: 72px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
input { font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}
.logo-mark {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.02em;
    background: var(--accent);
    color: var(--white);
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.12em;
}
.main-nav {
    display: flex;
    gap: 32px;
}
.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cart-btn {
    position: relative;
    color: var(--gray-300);
    transition: color 0.3s;
}
.cart-btn:hover { color: var(--white); }
.cart-count {
    position: absolute;
    top: -6px; right: -8px;
    font-size: 10px;
    font-weight: 500;
    background: var(--accent);
    color: var(--white);
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    z-index: 10;
}
.burger span {
    display: block;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    padding: calc(var(--header-h) + 40px) 24px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-link {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 0.04em;
    color: var(--gray-300);
    transition: color 0.3s;
    padding: 8px 0;
}
.mobile-link:hover { color: var(--accent); }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-actions .btn { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: block; }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(255,77,0,0.3);
}
.btn-ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}
.btn-outline {
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray-300);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-full { width: 100%; }


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 60px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-grain {
    position: absolute;
    inset: 0;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,77,0,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(30,58,47,0.15) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-badge {
    grid-column: 1;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid rgba(255,77,0,0.3);
    border-radius: 100px;
    width: fit-content;
    animation: fadeUp 0.8s var(--ease-out) both;
}
.hero-title {
    grid-column: 1;
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    animation: fadeUp 0.8s 0.1s var(--ease-out) both;
}
.hero-title .line-2 {
    color: var(--accent);
}
.hero-sub {
    grid-column: 1;
    font-size: 17px;
    color: var(--gray-400);
    max-width: 440px;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.2s var(--ease-out) both;
}
.hero-cta {
    grid-column: 1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s var(--ease-out) both;
}
.hero-stats {
    grid-column: 1;
    display: flex;
    gap: 32px;
    align-items: center;
    animation: fadeUp 0.8s 0.4s var(--ease-out) both;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.02em;
}
.stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}
.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-700);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    display: flex;
    justify-content: center;
    z-index: 1;
}
.hoodie-showcase {
    display: flex;
    gap: 20px;
    animation: fadeUp 1s 0.3s var(--ease-out) both;
}
.hoodie-card {
    width: 180px;
    transition: transform 0.5s var(--ease-out);
}
.hoodie-card:hover { transform: translateY(-8px); }
.hoodie-card.hoodie-2 { margin-top: 30px; }
.hoodie-card.hoodie-3 { margin-top: 60px; }
.hoodie-img svg { width: 100%; }
.hoodie-label {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 10px;
    letter-spacing: 0.04em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}


/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
    background: var(--accent);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--white);
}
.marquee-track .dot {
    font-size: 8px;
    opacity: 0.5;
    display: flex;
    align-items: center;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: 120px 0;
}
.section-header {
    margin-bottom: 64px;
}
.section-header.center { text-align: center; }
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 0.02em;
}
.section-title em {
    font-style: normal;
    color: var(--accent);
}
.section-desc {
    font-size: 16px;
    color: var(--gray-400);
    max-width: 480px;
    margin-top: 16px;
    line-height: 1.7;
}
.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--gray-800);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.product-img {
    position: relative;
    aspect-ratio: 5/6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-svg {
    width: 65%;
    transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-svg { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 16px; left: 16px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--white);
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
}
.product-info {
    padding: 20px;
    flex: 1;
}
.product-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.04em;
}
.product-info p {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 4px;
}
.price {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
    margin-top: 8px;
}
.product-card .btn {
    margin: 0 20px 20px;
}

.products-alt {
    background: var(--gray-900);
}

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }


/* ============================================
   DESIGNER CTA
   ============================================ */
.designer-card {
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.designer-left {
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}
.designer-left p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 400px;
}
.designer-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 8px 0;
}
.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255,77,0,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.feature span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Designer Preview */
.designer-right {
    background: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.preview-window {
    width: 100%;
    max-width: 420px;
    background: var(--gray-900);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.preview-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.toolbar-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}
.toolbar-dot:first-child { background: #ff5f57; }
.toolbar-dot:nth-child(2) { background: #ffbd2e; }
.toolbar-dot:nth-child(3) { background: #28ca41; }
.toolbar-title {
    margin-left: auto;
    font-size: 10px;
    color: var(--gray-500);
    letter-spacing: 0.1em;
}
.preview-body {
    display: flex;
    min-height: 280px;
}
.preview-sidebar {
    width: 48px;
    background: rgba(255,255,255,0.02);
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
}
.tool-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}
.tool-icon:hover, .tool-icon.active {
    color: var(--accent);
    background: rgba(255,77,0,0.1);
}
.preview-canvas {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}
.canvas-hoodie { width: 140px; }
.canvas-label {
    position: absolute;
    bottom: 12px;
    font-size: 10px;
    color: var(--gray-500);
}

/* Animations for designer elements */
.design-el {
    animation: designPulse 3s ease-in-out infinite;
}
.el-1 { animation-delay: 0s; }
.el-2 { animation-delay: 0.5s; }
.el-3 { animation-delay: 1s; }
.el-4 { animation-delay: 1.5s; }
@keyframes designPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 900px) {
    .designer-card { grid-template-columns: 1fr; }
    .designer-left { padding: 40px; }
    .designer-right { min-height: 300px; }
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--gray-900);
}
.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.step-card {
    flex: 1;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: transform 0.4s var(--ease-out);
    position: relative;
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}
.step-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.step-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-600);
    padding: 0 16px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .steps-grid { flex-direction: column; gap: 16px; }
    .step-arrow { transform: rotate(90deg); padding: 8px; }
}


/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover { transform: scale(1.02); }
.gi-1 { grid-row: span 2; }
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-placeholder svg { width: 60%; opacity: 0.8; }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.gallery-caption strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}
.gallery-caption span {
    font-size: 13px;
    color: var(--gray-300);
    font-style: italic;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gi-1 { grid-row: span 1; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}


/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-card {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border-radius: var(--radius-lg);
    padding: 80px 64px;
    text-align: center;
}
.newsletter-card h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.newsletter-card p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 32px;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(10px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { background: rgba(255,255,255,0.3); }
.newsletter-form .btn {
    background: var(--black);
    color: var(--white);
}
.newsletter-form .btn:hover { background: var(--gray-800); }
.form-msg {
    flex-basis: 100%;
    font-size: 14px;
    margin-top: 8px;
    color: var(--white);
    font-weight: 500;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 80px 0 0;
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
}
.footer-tagline {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}
.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.footer-socials a {
    color: var(--gray-400);
    transition: color 0.3s;
}
.footer-socials a:hover { color: var(--accent); }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--white);
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    padding: 6px 0;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: var(--gray-500);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a { color: var(--gray-500); transition: color 0.3s; }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}/* End custom CSS */