/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue-900: #0D2E4D;
    --blue-800: #133D66;
    --blue-700: #1A5290;
    --blue-600: #1B5E9E;
    --blue-500: #2574BF;
    --blue-400: #4A9ADB;
    --blue-300: #7BBAE8;
    --blue-200: #B3D9F5;
    --blue-100: #E0F0FC;
    --blue-50: #F0F7FD;
    --yellow-600: #C48B0A;
    --yellow-500: #E5A81D;
    --yellow-400: #F0C04A;
    --yellow-300: #F5D67A;
    --yellow-200: #FAEAB3;
    --yellow-100: #FDF5DC;
    --gray-900: #1A1A2E;
    --gray-800: #2D2D44;
    --gray-700: #404060;
    --gray-600: #5A5A7A;
    --gray-500: #7A7A9A;
    --gray-400: #9A9AB4;
    --gray-300: #C4C4D8;
    --gray-200: #E0E0EA;
    --gray-100: #F0F0F5;
    --gray-50: #F8F8FB;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(13,46,77,0.06);
    --shadow-md: 0 4px 20px rgba(13,46,77,0.1);
    --shadow-lg: 0 8px 40px rgba(13,46,77,0.14);
    --shadow-xl: 0 16px 64px rgba(13,46,77,0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--blue-900); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; position: relative; }
.highlight { color: var(--yellow-500); }

.material-symbols-rounded {
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* ========== BUBBLES CANVAS ========== */
#bubbles-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

/* ========== NAVBAR ========== */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13,46,77,0.06);
    transition: var(--transition);
}
#navbar.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-sm); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
    padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 0.875rem; font-weight: 500; color: var(--gray-700);
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-600); background: var(--blue-50); }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.menu-toggle span {
    width: 24px; height: 2px; background: var(--blue-900);
    border-radius: 2px; transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 158, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-slogan {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
    padding: 80px 0 60px;
    z-index: 1;
    position: relative;
    border-bottom: 4px solid var(--yellow-500);
}

.slogan-wrapper {
    text-align: center;
}

.slogan-main {
    color: var(--yellow-400);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slogan-rotating {
    position: relative;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan-word {
    position: absolute;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slogan-word.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-text h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 40px;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 650px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.badge {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    font-size: 0.9rem; font-weight: 600; color: var(--white);
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--yellow-400); background: rgba(255, 255, 255, 0.2); }
.badge .material-symbols-rounded { font-size: 20px; color: var(--yellow-400); }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; border-radius: 50px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white); font-weight: 700; font-size: 1rem;
    box-shadow: 0 4px 20px rgba(27,94,158,0.35); transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(27,94,158,0.45); }

.hero-scroll-indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.hero-scroll-indicator .material-symbols-rounded { font-size: 32px; color: var(--blue-400); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(12px); } }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: var(--blue-100); color: var(--blue-600);
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); margin-bottom: 16px; }
.section-desc { color: var(--gray-600); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ========== PROBLEM SECTION ========== */
.section-problem { background: var(--gray-50); z-index: 1; position: relative; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-bottom: 48px; }
.pain-card {
    background: var(--white); padding: 32px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); transition: var(--transition);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.pain-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.pain-icon .material-symbols-rounded { font-size: 28px; color: var(--blue-600); }
.pain-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pain-card p { color: var(--gray-600); font-size: 0.95rem; }

.solution-bridge { display: flex; align-items: center; gap: 24px; justify-content: center; }
.bridge-line { height: 1px; flex: 1; max-width: 120px; background: linear-gradient(90deg, transparent, var(--blue-300), transparent); }
.solution-bridge p { font-size: 1.1rem; color: var(--blue-700); text-align: center; }

/* ========== ABOUT SECTION ========== */
.section-about { z-index: 1; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 24px; text-align: left; }
.about-lead { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 16px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.stat { text-align: center; padding: 20px 12px; background: var(--blue-50); border-radius: var(--radius-md); }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--blue-600); }
.stat-suffix { font-size: 1.2rem; font-weight: 700; color: var(--yellow-500); }
.stat-label { display: block; font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }

.about-visual { display: flex; flex-direction: column; gap: 20px; }
.visual-card {
    padding: 28px; border-radius: var(--radius-lg);
    background: var(--white); border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--yellow-300); }
.visual-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.visual-card-icon .material-symbols-rounded { font-size: 24px; color: var(--blue-600); }
.visual-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.visual-card p { color: var(--gray-600); font-size: 0.9rem; }

/* ========== TECHNOLOGY SECTION ========== */
.section-technology { background: var(--gray-50); z-index: 1; position: relative; }
.technology-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.technology-content h2 { margin-bottom: 24px; text-align: left; }
.technology-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 1.05rem; }
.tech-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.tech-feature { display: flex; align-items: flex-start; gap: 16px; }
.tech-feature .material-symbols-rounded { font-size: 32px; color: var(--blue-600); background: var(--blue-100); padding: 12px; border-radius: var(--radius-md); }
.tech-feature h4 { font-size: 1.1rem; color: var(--blue-900); margin-bottom: 4px; }
.tech-feature p { font-size: 0.95rem; color: var(--gray-600); margin: 0; }
.technology-visual { display: flex; justify-content: center; align-items: center; }
.tech-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--white);
    display: block;
}

/* ========== STEPS SECTION ========== */
.section-steps { background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%); z-index: 1; position: relative; }
.how-container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.how-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.how-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.how-image img { width: 100%; height: auto; display: block; }

@media (max-width: 992px) {
    .how-container { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
}

.steps-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 48px; }
.step-card {
    background: var(--white); padding: 32px 24px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); text-align: center; position: relative;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-300); }
.step-number {
    position: absolute; top: 16px; right: 20px;
    font-size: 2.5rem; font-weight: 800; color: var(--blue-100); line-height: 1;
}
.step-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(27,94,158,0.25);
}
.step-icon .material-symbols-rounded { font-size: 28px; color: var(--white); }
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--gray-600); font-size: 0.9rem; }

.payment-info {
    margin-top: 68px;
    background: var(--white); border-radius: var(--radius-xl); padding: 48px;
    border: 1px solid rgba(13, 46, 77, 0.08); box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.payment-info::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--blue-600), var(--yellow-500));
}
.payment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; justify-content: center; }
.payment-header .material-symbols-rounded { font-size: 28px; color: var(--blue-600); }
.payment-header h3 { font-size: 1.2rem; }
.payment-methods { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.payment-method {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    background: var(--blue-50); font-weight: 600; font-size: 0.9rem; color: var(--blue-700);
}
.payment-method .material-symbols-rounded, .payment-method .pix-icon-svg { font-size: 20px; color: var(--yellow-500); }
.payment-note { text-align: center; color: var(--gray-500); font-size: 0.85rem; }

/* ========== SENSORIAL & HOSPITALITY ========== */
.section-sensorial { z-index: 1; position: relative; }
.sensorial-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sensorial-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.sensorial-image img { width: 100%; height: auto; display: block; }
.sensorial-cta {
    text-align: center; padding: 32px; border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--yellow-100), var(--blue-50));
    border: 1px solid var(--yellow-200);
    margin-top: 40px;
}
.sensorial-cta p { color: var(--gray-700); max-width: 720px; margin: 0 auto; font-size: 1.05rem; }

.section-hospitality { background: var(--gray-50); z-index: 1; position: relative; }
.hospitality-card {
    background: var(--white); padding: 48px; border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
    display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center;
}
.hospitality-content h2 { margin-bottom: 20px; text-align: left; }
.hospitality-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 1.05rem; }
.hospitality-icons { display: flex; flex-direction: column; gap: 20px; }
.hosp-icon-wrapper {
    display: flex; align-items: center; gap: 16px;
    padding: 20px; background: var(--yellow-50); border-radius: var(--radius-lg);
    border: 1px solid var(--yellow-200);
}
.hosp-icon-wrapper .material-symbols-rounded { font-size: 40px; color: var(--yellow-600); }
.hosp-icon-wrapper span { font-weight: 700; font-size: 1.1rem; color: var(--blue-900); }

@media (max-width: 992px) {
    .sensorial-container { grid-template-columns: 1fr; }
    .hospitality-card { grid-template-columns: 1fr; padding: 32px; }
}

/* ========== PROOF ========== */
.section-proof { padding: 40px 0; z-index: 1; position: relative; background: var(--gray-50); }
.proof-banner {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 12px; }
.proof-item .material-symbols-rounded { font-size: 36px; color: var(--yellow-500); }
.proof-item strong { display: block; font-size: 1.15rem; color: var(--blue-900); }
.proof-item span { font-size: 0.85rem; color: var(--gray-500); }
.proof-divider { width: 1px; height: 48px; background: var(--gray-300); }

/* ========== CONTACT ========== */
.section-contact { background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%); z-index: 1; position: relative; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.contact-card {
    background: var(--white); padding: 36px 28px; border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200); text-align: center; transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.contact-whatsapp .contact-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-phone .contact-icon { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); }
.contact-visit .contact-icon { background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600)); }
.contact-icon .material-symbols-rounded { font-size: 28px; color: var(--white); }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-card p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 20px; }

.btn-whatsapp, .btn-contact {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem; transition: var(--transition);
}
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.whatsapp-icon-svg { margin-right: 8px; vertical-align: middle; }
.btn-contact { background: var(--blue-600); color: var(--white); }
.btn-contact:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(27,94,158,0.35); }

/* ========== FOOTER ========== */
.footer {
    background: var(--blue-900); color: rgba(255,255,255,0.7); padding: 60px 0 0;
    z-index: 1; position: relative;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { 
    height: 54px; 
    width: auto; 
    margin-bottom: 20px; 
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.footer-brand p { font-size: 0.9rem; }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--yellow-400); }
.footer-nav li, .footer-contact li { margin-bottom: 10px; }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-contact .material-symbols-rounded { font-size: 18px; color: var(--yellow-400); }
.footer-address address { display: flex; gap: 12px; font-style: normal; font-size: 0.9rem; }
.footer-address .material-symbols-rounded { font-size: 20px; color: var(--yellow-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.8rem; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float .whatsapp-icon-svg { margin: 0; display: block; }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ========== ANIMATIONS ========== */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-content h2 { text-align: center; }
    .about-content { text-align: center; }
    .about-content .section-tag { display: inline-block; }
    .technology-grid { grid-template-columns: 1fr; }
    .technology-content h2 { text-align: center; }
    .technology-visual { margin-top: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
        flex-direction: column; background: var(--white);
        padding: 80px 32px 32px; gap: 4px;
        box-shadow: var(--shadow-xl); transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .nav-links a { padding: 14px 20px; font-size: 1rem; width: 100%; border-radius: var(--radius-sm); }
    .hero-logo { height: 100px; }
    .hero { padding: 80px 20px 60px; }
    .proof-banner { flex-direction: column; gap: 20px; }
    .proof-divider { width: 60px; height: 1px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-address address { justify-content: center; }
    .footer-logo { margin: 0 auto 16px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-badges { gap: 8px; flex-direction: column; align-items: flex-start; }
    .badge { padding: 8px 14px; font-size: 0.8rem; }
    .btn-primary { padding: 14px 28px; font-size: 0.9rem; width: 100%; text-align: center; }
    .section-header h2 { font-size: 1.35rem; }
    .steps-timeline { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .payment-methods { flex-direction: column; align-items: stretch; }
    .payment-method { justify-content: center; }
    .about-stats { grid-template-columns: 1fr; gap: 16px; }
    .hospitality-card { padding: 24px; gap: 24px; }
    .hosp-icon-wrapper { padding: 16px; flex-direction: column; text-align: center; gap: 8px; }
}
