:root {
    --primary: #6366f1;
    --primary-rgb: 99, 102, 241;
    --secondary: #a855f7;
    --secondary-rgb: 168, 85, 247;
    --accent: #ec4899;
    --accent-rgb: 236, 72, 153;
    --success: #10b981;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 { font-size: 4.5rem; line-height: 1.1; }
h2 { font-size: 2.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.6rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================ */
/* GLASSMORPHISM UTILITY                         */
/* ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

/* ============================================ */
/* BUTTONS                                       */
/* ============================================ */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 40px -10px rgba(var(--primary-rgb), 0.5);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px -10px rgba(var(--primary-rgb), 0.8);
}

.btn-outline {
    border: 2px solid var(--glass-border);
    color: var(--light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--light);
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

/* ============================================ */
/* NAVBAR - SMART SHRINK 2026                    */
/* ============================================ */
nav#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo:hover { opacity: 0.85; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { opacity: 1; color: var(--primary); }

.nav-cta {
    padding: 0.75rem 1.8rem !important;
    font-size: 0.9rem !important;
}

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

nav#navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
}

nav#navbar.scrolled .logo { font-size: 1.5rem; }
nav#navbar.scrolled .logo img { width: 32px; height: 32px; }

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================ */
/* HERO SECTION                                  */
/* ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.15), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(var(--secondary-rgb), 0.1), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(var(--accent-rgb), 0.08), transparent 40%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.2);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { width: 6px; height: 6px; top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 8px; height: 8px; top: 40%; left: 70%; animation-delay: 1s; background: rgba(var(--secondary-rgb), 0.2); }
.particle:nth-child(3) { width: 4px; height: 4px; top: 60%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { width: 10px; height: 10px; top: 80%; left: 80%; animation-delay: 3s; background: rgba(var(--accent-rgb), 0.15); }
.particle:nth-child(5) { width: 5px; height: 5px; top: 30%; left: 90%; animation-delay: 4s; }
.particle:nth-child(6) { width: 7px; height: 7px; top: 70%; left: 50%; animation-delay: 5s; background: rgba(var(--secondary-rgb), 0.15); }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.5; }
    75% { transform: translateY(-40px) translateX(15px); opacity: 0.7; }
}

/* ============================================ */
/* STATS SECTION                                 */
/* ============================================ */
.stats { padding: 5rem 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 3rem 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
}

/* ============================================ */
/* SECTION STYLING                               */
/* ============================================ */
section { padding: 8rem 0; }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); font-size: 1.05rem; }
.text-gray-small { color: var(--gray); font-size: 0.9rem; margin-top: 0.5rem; }

/* ============================================ */
/* FEATURED GAME                                 */
/* ============================================ */
.featured-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem;
    background: rgba(var(--primary-rgb), 0.04);
    border-radius: 3rem;
}

.game-poster {
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.game-poster-placeholder {
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-poster-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.game-poster-placeholder i {
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

.game-poster-placeholder span {
    font-size: 1.8rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-poster-placeholder small {
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.poster-gem {
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #c026d3);
}
.poster-gem::before { background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1), transparent); }
.poster-gem i { color: #e0c3fc; }

.poster-galaxy {
    background: linear-gradient(135deg, #0f172a, #1e1b4b, #312e81);
}
.poster-galaxy i { color: #818cf8; }

.poster-pet {
    background: linear-gradient(135deg, #fb7185, #f472b6, #c084fc);
}
.poster-pet i { color: #fce7f3; }

.poster-forest {
    background: linear-gradient(135deg, #065f46, #059669, #34d399);
}
.poster-forest i { color: #d1fae5; }

.game-poster:hover .game-poster-placeholder i {
    transform: scale(1.1);
    transition: transform 0.4s;
}

.game-info h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-info .text-gray {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.badge-coming-soon {
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
}

/* ============================================ */
/* GAME GRID                                     */
/* ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.game-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card-img {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.game-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.game-card-content {
    padding: 1.5rem 2rem 2rem;
}

.game-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.game-card-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.center-btn {
    text-align: center;
    margin-top: 4rem;
}

/* ============================================ */
/* SOLUTIONS SECTION                             */
/* ============================================ */
.solutions-section {
    background: radial-gradient(circle at center, rgba(var(--secondary-rgb), 0.04), transparent);
}

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

.solution-card {
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p { font-size: 0.95rem; line-height: 1.7; color: var(--gray); }

.card-primary .solution-icon-wrapper { color: var(--primary); box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.1); }
.card-secondary .solution-icon-wrapper { color: var(--secondary); box-shadow: 0 0 30px rgba(var(--secondary-rgb), 0.1); }
.card-accent .solution-icon-wrapper { color: var(--accent); box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.1); }
.card-success .solution-icon-wrapper { color: var(--success); box-shadow: 0 0 30px rgba(16, 185, 129, 0.1); }

.solution-card:hover .solution-icon-wrapper {
    transform: translateY(-5px) scale(1.1);
}

.card-primary:hover { border-color: rgba(var(--primary-rgb), 0.3); box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.12); }
.card-secondary:hover { border-color: rgba(var(--secondary-rgb), 0.3); box-shadow: 0 0 60px rgba(var(--secondary-rgb), 0.12); }
.card-accent:hover { border-color: rgba(var(--accent-rgb), 0.3); box-shadow: 0 0 60px rgba(var(--accent-rgb), 0.12); }
.card-success:hover { border-color: rgba(16, 185, 129, 0.3); box-shadow: 0 0 60px rgba(16, 185, 129, 0.12); }

/* ============================================ */
/* CLIENTS / PARTNERS SECTION                    */
/* ============================================ */
.clients-section {
    text-align: center;
}

.clients-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 3rem;
}

.client-logo {
    font-size: 2.5rem;
    color: var(--gray);
    opacity: 0.4;
    transition: all 0.3s;
}

.client-logo:hover {
    opacity: 0.8;
    color: var(--light);
}

/* ============================================ */
/* CONTACT SECTION                               */
/* ============================================ */
.contact-section {
    background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.08), transparent);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem;
}

.form-group { margin-bottom: 1.8rem; }

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--light);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.15rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
}

.form-group textarea { height: 140px; resize: none; }

.form-status {
    display: none;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.form-status.active { display: block; }

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

#contact-form.hidden { display: none; }

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

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */
footer {
    padding: 5rem 0 2rem;
    background: var(--dark);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-desc {
    margin-bottom: 2rem;
    max-width: 400px;
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-contact {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 0.75rem;
    width: 20px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--light);
    font-size: 1.1rem;
}

.footer-links ul { list-style: none; }

.footer-links ul li { margin-bottom: 0.75rem; }

.footer-links ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover { color: var(--light); }

.footer-address {
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
}

/* ============================================ */
/* LEGAL PAGES                                   */
/* ============================================ */
.legal-content {
    margin-top: 10rem;
    margin-bottom: 5rem;
    padding: 4rem;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 2.5rem;
}

.legal-content .last-updated {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    margin: 2.5rem 0 1rem;
    color: var(--secondary);
    font-size: 1.4rem;
}

.legal-content p,
.legal-content li {
    color: var(--gray);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li { margin-bottom: 0.6rem; }

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.legal-content a:hover { opacity: 0.8; }

.contact-box {
    padding: 2.5rem;
    border-radius: 1.5rem;
    margin-top: 2rem;
}

.contact-box h3 { margin-bottom: 1rem; }

/* Legal footer */
.legal-footer {
    margin-top: 3rem;
    padding: 5rem 0 3rem;
    background: var(--dark);
}

.legal-footer .container {
    text-align: center;
}

.legal-footer .footer-info { margin-bottom: 2rem; }

.legal-footer .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* ============================================ */
/* BACKGROUND GLOW EFFECTS                       */
/* ============================================ */
body::before {
    content: '';
    position: fixed;
    top: -15%;
    left: -15%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -15%;
    right: -15%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08), transparent);
    z-index: -1;
    pointer-events: none;
}

/* ============================================ */
/* SCROLL ANIMATIONS                             */
/* ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================ */
/* RESPONSIVE DESIGN                             */
/* ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }
    .featured-game { grid-template-columns: 1fr; gap: 2.5rem; }
    .game-info h3 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .solutions-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    section { padding: 5rem 0; }

    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .mobile-menu-btn { display: block; }

    .hero { padding-top: 6rem; min-height: auto; padding-bottom: 4rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none !important; }
    .stat-number { font-size: 2.5rem; }

    .featured-game { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
    .game-info h3 { font-size: 2rem; }

    .game-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .solutions-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .contact-form-container { padding: 2rem; }
    .legal-content { margin-top: 8rem; padding: 2rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    .logo { font-size: 1.4rem; }
    .container { padding: 0 1.2rem; }
}
