/* ==========================================================================
   VIZMOB LANDING PAGE - Premium Stylesheet
   ========================================================================== */

/* Modern Fonts & CSS Reset */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-primary: #FF5722;
    --color-primary-light: #FF8A65;
    --color-primary-dark: #E64A19;
    --color-primary-glow: rgba(255, 87, 34, 0.15);
    
    --color-neutral-dark: #0F172A;
    --color-neutral-slate: #1E293B;
    --color-neutral-gray: #64748B;
    --color-neutral-light: #F8FAFC;
    --color-white: #FFFFFF;
    
    --color-success: #10B981;
    --color-info: #0EA5E9;
    
    /* Gradients */
    --grad-hero: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
    --grad-primary: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
    --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    --grad-accent: linear-gradient(90deg, #FF5722 0%, #FF8A65 100%);
    
    /* Layout */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 15px 35px rgba(255, 87, 34, 0.25);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-neutral-dark);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-neutral-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Helper Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #FF8A65 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-dark {
    background: var(--color-neutral-dark);
    color: var(--color-white);
}

.bg-dark h2 {
    color: var(--color-white);
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 64px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--color-neutral-dark);
    font-family: var(--font-heading);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-neutral-gray);
    position: relative;
    padding: 8px 0;
}

.nav-item-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-item-link:hover {
    color: var(--color-neutral-dark);
}

.nav-item-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary-landing {
    background: var(--grad-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary-landing:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.35);
}

.btn-secondary-landing {
    background: transparent;
    color: var(--color-neutral-dark);
    border: 2px solid rgba(15, 23, 42, 0.1);
}

.btn-secondary-landing:hover {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.2);
}

.btn-outline-landing {
    background: transparent;
    color: var(--color-neutral-dark);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn-outline-landing:hover {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.15);
}

.btn-white-landing {
    background: var(--color-white);
    color: var(--color-neutral-dark);
    box-shadow: var(--shadow-md);
}

.btn-white-landing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-neutral-dark);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(15, 23, 42, 0.05);
        gap: 16px;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-menu.active ~ .nav-actions {
        display: flex;
        position: absolute;
        top: 360px;
        left: 24px;
        right: 24px;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background: var(--grad-hero);
    color: var(--color-white);
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Mesh Blobs */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, rgba(255, 87, 34, 0) 70%);
    filter: blur(50px);
    z-index: 1;
}

.hero::before {
    top: -100px;
    right: -100px;
}

.hero::after {
    bottom: -150px;
    left: -150px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    color: var(--color-primary-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-white);
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-actions {
        justify-content: center;
    }
}

/* Dynamic Interactive Smartphone Mockup */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 290px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #1e293b;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: rotate(3deg);
    transition: var(--transition-smooth);
    animation: floating 6s ease-in-out infinite;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.03);
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(4deg); }
}

/* Phone Screen Contents */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    position: relative;
}

.phone-header {
    height: 48px;
    background: #FF5722;
    padding: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.phone-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-card {
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 11px;
}

.phone-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.phone-step:last-child {
    border-bottom: none;
}

.phone-badge {
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
}

.phone-badge.done {
    background: #d1fae5;
    color: #065f46;
}

.phone-button {
    background: #FF5722;
    color: white;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    margin-top: auto;
}

/* Glow ring around phone */
.mockup-glow {
    position: absolute;
    width: 320px;
    height: 610px;
    border-radius: 46px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.4) 0%, rgba(255, 138, 101, 0.1) 100%);
    filter: blur(15px);
    z-index: -1;
}

/* ==========================================================================
   STATS / TRUST
   ========================================================================== */
.stats-bar {
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 0;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary-light);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 30px;
    }
}

.section-desc {
    font-size: 16px;
    color: var(--color-neutral-gray);
    line-height: 1.6;
}

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

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 87, 34, 0.12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-glow);
    color: var(--color-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 14.5px;
    color: var(--color-neutral-gray);
    line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS (PASSO A PASSO)
   ========================================================================== */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .workflow-steps {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--color-neutral-slate);
    border: 2px solid var(--color-primary);
    color: var(--color-white);
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* Connection line between steps (desktop only) */
@media (min-width: 992px) {
    .workflow-steps::after {
        content: '';
        position: absolute;
        top: 24px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }
}

/* ==========================================================================
   PRICING SECTION (TABELAS DE PREÇO GLASSMORPHIC)
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 40px auto 0 auto;
    }
}

.pricing-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F2 100%);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-neutral-dark);
    margin-bottom: 12px;
}

.plan-desc {
    font-size: 14px;
    color: var(--color-neutral-gray);
    margin-bottom: 32px;
}

.plan-price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.plan-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-neutral-dark);
    margin-right: 4px;
}

.plan-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-neutral-dark);
    line-height: 1;
    font-family: var(--font-heading);
}

.plan-period {
    font-size: 14px;
    color: var(--color-neutral-gray);
    font-weight: 500;
    margin-left: 6px;
}

.plan-features-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-neutral-slate);
}

.plan-feature-item svg {
    flex-shrink: 0;
    color: var(--color-success);
}

.plan-feature-item.disabled {
    color: var(--color-neutral-gray);
    text-decoration: line-through;
    opacity: 0.6;
}

.plan-feature-item.disabled svg {
    color: var(--color-neutral-gray);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--color-neutral-light);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14.5px;
    color: var(--color-neutral-slate);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E2E8F0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-primary);
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-neutral-dark);
}

.author-role {
    font-size: 12px;
    color: var(--color-neutral-gray);
    font-weight: 500;
}

/* ==========================================================================
   FAQ SECTION (INTERACTIVE ACCORDION)
   ========================================================================== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    background: var(--color-white);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--color-neutral-light);
}

.faq-icon-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 24px;
    color: var(--color-neutral-gray);
    font-size: 14.5px;
    line-height: 1.6;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
}

/* JS Toggled Classes */
.faq-item.active {
    border-color: rgba(255, 87, 34, 0.3);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.03);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 24px;
    transition: max-height 0.5s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.3s ease;
}

/* ==========================================================================
   CTA BOTTOM SECTION
   ========================================================================== */
.cta-bottom {
    background: var(--grad-hero);
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, rgba(255, 87, 34, 0) 70%);
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-bottom-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-bottom-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

@media (max-width: 576px) {
    .cta-bottom-title {
        font-size: 32px;
    }
}

.cta-bottom-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #090D16;
    color: #94A3B8;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-brand-title {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-title {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-link-item {
    font-size: 14px;
}

.footer-link-item:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.footer-copy {
    color: #64748B;
}

.footer-legal {
    display: flex;
    gap: 24px;
}
