:root {
    --red-50: #fff5f5;
    --red-100: #ffe3e3;
    --red-200: #ffc9c9;
    --red-300: #ffa0a0;
    --red-400: #ff6b6b;
    --red-500: #ff0000;
    --red-600: #e00000;
    --red-700: #c10000;
    --red-800: #9a0000;

    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-tertiary: #f0f2f7;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    --gradient-brand: linear-gradient(135deg, #ff0000 0%, #ff4444 50%, #ff6b6b 100%);
    --gradient-brand-soft: linear-gradient(135deg, #ff0000 0%, #ff4444 100%);
    --gradient-hero-bg: linear-gradient(180deg, #fff5f5 0%, #ffffff 40%, #f8f9fc 100%);

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.1);
    --shadow-red: 0 8px 32px rgba(255, 0, 0, 0.15);
    --shadow-red-lg: 0 12px 40px rgba(255, 0, 0, 0.2);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--red-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-500); }

/* NAV */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    transition: all 0.4s;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.35rem;
    letter-spacing: 1.5px; color: var(--red-500);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--text-secondary);
    font-size: 0.9rem; font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--red-500); }
.nav-cta {
    padding: 10px 26px !important; background: var(--gradient-brand) !important;
    border-radius: 50px !important; color: white !important; font-weight: 600 !important;
    transition: all 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: var(--shadow-red) !important; }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; }

/* HERO */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 2rem 80px; background: var(--gradient-hero-bg); overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--red-100) 0%, transparent 70%);
    border-radius: 50%; opacity: 0.6; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--red-50) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.hero-inner {
    max-width: 1240px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; background: var(--red-50); border: 1px solid var(--red-100);
    border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    color: var(--red-500); margin-bottom: 1.5rem; animation: fadeUp 0.8s ease-out;
}
.hero-badge .dot {
    width: 6px; height: 6px; background: var(--red-500);
    border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
    font-family: 'Outfit', sans-serif; font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900; line-height: 1.08; margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.1s both;
}
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.12rem; color: var(--text-secondary); margin-bottom: 2.5rem;
    max-width: 500px; animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.3s both;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px; background: var(--gradient-brand); color: white;
    text-decoration: none; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-red-lg); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px; background: transparent; color: var(--text-primary);
    text-decoration: none; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; border: 1.5px solid var(--border-color);
    transition: all 0.3s; cursor: pointer;
}
.btn-secondary:hover {
    border-color: var(--red-500); color: var(--red-500);
    background: var(--red-50); transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
    animation: fadeUp 1s ease-out 0.4s both; overflow: visible;
    min-width: 480px; min-height: 480px;
}
.hero-logo-container { position: relative; width: 280px; height: 280px; }
.hero-logo-ring {
    position: absolute; inset: -40px;
    border: 1.5px solid var(--red-200); border-radius: 50%;
    animation: spinSlow 30s linear infinite;
}
.hero-logo-ring::before {
    content: ''; position: absolute; top: -5px; left: 50%;
    width: 10px; height: 10px; background: var(--red-500);
    border-radius: 50%; box-shadow: 0 0 12px var(--red-400);
}
.hero-logo-ring-2 {
    position: absolute; inset: -80px;
    border: 1px solid var(--red-100); border-radius: 50%;
    animation: spinSlow 40s linear infinite reverse;
}
.hero-logo-ring-2::before {
    content: ''; position: absolute; bottom: 20%; right: -4px;
    width: 8px; height: 8px; background: var(--red-400);
    border-radius: 50%; box-shadow: 0 0 10px var(--red-300);
}
.hero-logo-img {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 150px; height: 150px;
    object-fit: contain; filter: drop-shadow(0 8px 24px rgba(255, 0, 0, 0.15));
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.tech-float {
    position: absolute; padding: 10px 22px;
    background: var(--bg-primary); border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600;
    color: var(--text-secondary); animation: techFloat 6s ease-in-out infinite;
    white-space: nowrap; box-shadow: var(--shadow-md); z-index: 5;
}
.tech-float:hover { border-color: var(--red-300); color: var(--red-500); }
.tech-float:nth-child(1) { top: 50px; left: 20px; animation-delay: 0s; }
.tech-float:nth-child(2) { top: 50px; right: 20px; animation-delay: -1.5s; }
.tech-float:nth-child(3) { bottom: 50px; left: 20px; animation-delay: -3s; }
.tech-float:nth-child(4) { bottom: 50px; right: 20px; animation-delay: -4.5s; }

@keyframes techFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-stats {
    display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    animation: fadeUp 0.8s ease-out 0.5s both;
}
.hero-stat h3 {
    font-family: 'Outfit', sans-serif; font-size: 2rem;
    font-weight: 800; color: var(--red-500);
}
.hero-stat p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* SECTIONS */
section { position: relative; z-index: 1; padding: 100px 2rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Mono', monospace; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--red-500); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 32px; height: 2px; background: var(--red-500); }
.section-title {
    font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.08rem; color: var(--text-secondary);
    max-width: 580px; margin-bottom: 3.5rem;
}

/* PRODUCTS */
#products { background: var(--bg-secondary); }
.product-featured {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
    margin-bottom: 3rem; padding: 3rem; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.product-featured::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px; background: var(--gradient-brand);
}
.product-featured-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 16px; border-radius: 50px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem;
}
.badge-flagship { background: var(--red-50); border: 1px solid var(--red-200); color: var(--red-500); }
.badge-platform { background: #f0f4ff; border: 1px solid #c7d7fe; color: #3b5bdb; }
.product-featured h3 {
    font-family: 'Outfit', sans-serif; font-size: 2rem;
    font-weight: 800; margin-bottom: 0.8rem;
}
.product-featured > div > p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 2rem; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 2rem; }
.feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; background: var(--bg-secondary);
    border: 1px solid var(--border-light); border-radius: var(--radius-sm); transition: all 0.3s;
}
.feature-item:hover { border-color: var(--red-200); background: var(--red-50); }
.feature-icon {
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    background: var(--red-50); border-radius: 8px; font-size: 1rem; flex-shrink: 0;
}
.feature-item span { font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); }

.tms-screenshots { display: flex; flex-direction: column; gap: 1rem; }
.screenshot-placeholder {
    width: 100%; border-radius: var(--radius-md); background: var(--bg-secondary);
    border: 2px dashed var(--border-color); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 6px;
    color: var(--text-muted); font-size: 0.85rem; transition: all 0.3s;
}
.screenshot-placeholder.main { height: 260px; }
.screenshot-placeholder.small { height: 120px; }
.screenshot-placeholder:hover { border-color: var(--red-300); background: var(--red-50); }
.screenshot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.screenshot-placeholder .icon-large { font-size: 2.5rem; opacity: 0.35; }

.product-links { display: flex; gap: 1rem; }
.product-links a {
    padding: 11px 24px; border-radius: 50px; text-decoration: none;
    font-size: 0.88rem; font-weight: 600; transition: all 0.3s;
}
.link-primary { background: var(--gradient-brand); color: white; }
.link-primary:hover { box-shadow: var(--shadow-red); transform: translateY(-2px); }
.link-outline { border: 1.5px solid var(--border-color); color: var(--text-primary); }
.link-outline:hover { border-color: var(--red-500); color: var(--red-500); background: var(--red-50); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    padding: 2.5rem 2rem; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px; background: var(--gradient-brand);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--red-200); }
.service-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: var(--red-50); border: 1px solid var(--red-100);
    border-radius: var(--radius-md); font-size: 1.5rem; margin-bottom: 1.5rem;
}
.service-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.8rem; }
.service-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* TECH */
#tech { background: var(--bg-secondary); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.tech-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 1.5rem 1rem; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: var(--radius-md);
    transition: all 0.3s; text-align: center;
}
.tech-item:hover { transform: translateY(-4px); border-color: var(--red-300); box-shadow: var(--shadow-md); }
.tech-item-icon { font-size: 2rem; }
.tech-item span { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1.5rem; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.about-stat-card {
    padding: 2rem; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); text-align: center; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.about-stat-card:hover { transform: translateY(-4px); border-color: var(--red-200); box-shadow: var(--shadow-lg); }
.about-stat-card h3 {
    font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 900;
    color: var(--red-500); margin-bottom: 0.3rem;
}
.about-stat-card p { font-size: 0.85rem; color: var(--text-muted); }

/* CAREERS */
#careers { background: var(--bg-secondary); }
.careers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.career-card {
    padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-xl); transition: all 0.4s; box-shadow: var(--shadow-sm);
}
.career-card:hover { transform: translateY(-4px); border-color: var(--red-200); box-shadow: var(--shadow-xl); }
.career-card-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 1.5rem; }
.career-role-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); font-size: 1.5rem;
}
.career-role-icon.hr { background: #fff3e0; }
.career-role-icon.dev { background: var(--red-50); }
.career-tags { display: flex; gap: 8px; }
.career-tag { padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.tag-type { background: var(--red-50); color: var(--red-500); }
.tag-location { background: #f0f4ff; color: #3b5bdb; }
.career-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.8rem; }
.career-card > p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 1.5rem; }
.career-responsibilities h4 {
    font-size: 0.82rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem;
}
.career-responsibilities ul { list-style: none; margin-bottom: 2rem; }
.career-responsibilities li {
    padding: 5px 0; padding-left: 20px; position: relative;
    font-size: 0.9rem; color: var(--text-secondary);
}
.career-responsibilities li::before { content: '▸'; position: absolute; left: 0; color: var(--red-500); font-weight: bold; }
.career-apply {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: var(--gradient-brand); color: white;
    text-decoration: none; border-radius: 50px; font-weight: 600;
    font-size: 0.9rem; transition: all 0.3s;
}
.career-apply:hover { transform: translateY(-2px); box-shadow: var(--shadow-red); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info { padding: 2.5rem; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); }
.contact-info h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-primary); }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.contact-channel {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: var(--radius-md);
    text-decoration: none; color: var(--text-primary); transition: all 0.3s;
}
.contact-channel:hover { border-color: var(--red-300); background: var(--red-50); transform: translateX(6px); }
.contact-channel-icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    background: var(--red-50); border-radius: 10px; font-size: 1.2rem; flex-shrink: 0;
}
.contact-channel-text strong { display: block; font-size: 0.88rem; margin-bottom: 2px; color: var(--text-primary); }
.contact-channel-text span { font-size: 0.82rem; color: var(--text-muted); }

.contact-form-wrapper {
    padding: 2.5rem; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.contact-form-wrapper h3 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px; background: var(--bg-secondary);
    border: 1.5px solid var(--border-color); border-radius: var(--radius-sm);
    color: var(--text-primary); font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem; transition: all 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    width: 100%; padding: 16px; background: var(--gradient-brand); color: white;
    border: none; border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { box-shadow: var(--shadow-red); transform: translateY(-2px); }

/* FOOTER */
footer { border-top: 1px solid var(--border-color); padding: 3rem 2rem; background: var(--bg-primary); }
.footer-inner {
    max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 32px; }
.footer-brand span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-muted); }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--red-500); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .product-featured { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 76px; left: 0; right: 0; background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px); padding: 2rem; gap: 1rem;
        border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-lg);
    }
    .services-grid { grid-template-columns: 1fr; }
    .careers-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
