/*
Theme Name: AW Deck
Theme URI: https://awdeck.com.br
Author: Marcos Guberev
Author URI: https://www.instagram.com/marcosgbrv
Description: Tema oficial da AW Deck – Decks Automáticos de Alta Performance. Landing page completa com seções de hero, benefícios, modelos, vídeo, sustentabilidade, FAQ e CTA.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: awdeck-theme
Tags: landing-page, one-page, custom-logo, custom-menu, full-width-template, dark
*/

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
    --color-primary: #141B2D;
    --color-accent: #C68642;
    --color-neutral: #F4F7F9;
    --color-white: #FFFFFF;
    --color-text-dark: #141B2D;
    --color-text-light: #64748B;
    --spacing-section-desktop: 100px;
    --spacing-section-mobile: 60px;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-deep: 0 25px 50px -12px rgba(20, 27, 45, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-btn: 50px;
    --radius-card: 24px;
}

/* =========================================
   CAROUSEL STYLES
   ========================================= */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    height: 100%;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: var(--transition-smooth);
    z-index: 10;
}
.carousel-control:hover {
    background: rgba(255, 255, 255, 0.4);
}
.carousel-control.prev { left: 16px; }
.carousel-control.next { right: 16px; }

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-neutral);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
    box-shadow: 0 4px 14px rgba(198, 134, 66, 0.3);
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 134, 66, 0.4);
    background-color: #b07538;
    color: var(--color-white);
}
.btn-full { width: 100%; }

@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 90%;
        max-width: 320px;
    }
}
@media (min-width: 992px) {
    .hero-content .btn { margin: 0; }
}

/* =========================================
   SECTION SPACING
   ========================================= */
section {
    padding: var(--spacing-section-mobile) 0;
}
@media (min-width: 768px) {
    section {
        padding: var(--spacing-section-desktop) 0;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* =========================================
   SECTION 1: HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--color-neutral);
    color: var(--color-primary);
    padding: 0;
    overflow: hidden;
}
.hero-content {
    flex: 1;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding-top: 100px;
}
.hero-image {
    flex: 1;
    position: relative;
    min-height: 40vh;
    width: 100%;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 0;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}
.hero p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 540px;
}
.hero-micro-copy {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (min-width: 992px) {
    .hero {
        flex-direction: row;
        height: 100vh;
    }
    .hero h1 { font-size: 3.5rem; }
    .hero-content {
        padding: 0 80px;
        padding-top: 0;
    }
    .hero-image {
        border-bottom-left-radius: 100px;
        min-height: 50vh;
        border-top-left-radius: 0;
    }
}

/* =========================================
   SECTION 2: AUTHORITY
   ========================================= */
.authority {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}
.authority h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}
.authority-text {
    max-width: 800px;
    margin: 0 auto;
}
.authority-lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #d1d5db;
    margin-bottom: 32px;
}
.authority-highlight {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #94a3b8;
}
.authority-highlight strong {
    color: var(--color-white);
}

/* =========================================
   SECTION 3: BENEFITS
   ========================================= */
.benefits {
    background-color: var(--color-white);
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}
.benefit-card {
    background: var(--color-neutral);
    padding: 40px 32px;
    border-radius: var(--radius-card);
    box-shadow: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
    color: var(--color-accent);
    margin-bottom: 24px;
}
.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.benefit-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}
@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .benefit-card.wide { grid-column: span 1; }
}

/* =========================================
   SECTION 4: SOLUTIONS (MODELS)
   ========================================= */
.solutions {
    background-color: var(--color-white);
}
.solutions h2 {
    color: var(--color-primary);
    font-size: 2rem;
}
.solutions .text-center { text-align: center; }
.model-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}
.model-card:last-child { margin-bottom: 0; }
.model-image {
    flex: 1;
    height: 300px;
    position: relative;
}
.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.model-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-neutral);
}
.model-tag {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border-radius: 4px;
    align-self: flex-start;
}
.model-content h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}
.model-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 24px;
    font-weight: 500;
}
.model-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}
@media (min-width: 992px) {
    .model-card {
        flex-direction: row;
        height: 500px;
    }
    .model-card:nth-child(even) { flex-direction: row-reverse; }
    .model-image {
        height: auto;
        width: 50%;
    }
    .model-content {
        width: 50%;
        padding: 80px;
    }
}

/* =========================================
   SECTION 5: VIDEO (SPLIT LAYOUT)
   ========================================= */
.video-section-split {
    background-color: var(--color-white);
    padding: 30px 0 var(--spacing-section-mobile);
}
.video-split-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}
.phone-mockup-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 8px #0f172a,
        0 0 0 10px rgba(255, 255, 255, 0.1);
}
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #0f172a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
.phone-play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 10px rgba(198, 134, 66, 0.2);
}
.phone-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(198, 134, 66, 0.3);
}
.phone-bottom-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}
.video-text-content {
    flex: 1;
    max-width: 600px;
}
.video-label {
    display: inline-block;
    background: rgba(198, 134, 66, 0.1);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.video-text-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    line-height: 1.2;
}
.video-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 40px;
}
.video-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.video-feature-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-check {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4975a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.video-feature-point h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-primary);
}
.video-feature-point p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}
.video-caption-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}
.video-caption-text i { color: var(--color-accent); }
@media (min-width: 992px) {
    .video-section-split {
        padding: 50px 0 var(--spacing-section-desktop);
    }
    .video-split-layout {
        flex-direction: row;
        gap: 80px;
        align-items: center;
    }
    .phone-mockup {
        width: 320px;
        height: 640px;
    }
    .video-text-content h2 { font-size: 2.75rem; }
}

/* =========================================
   SECTION 6: SUSTAINABILITY
   ========================================= */
.sustainability-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: var(--color-white);
    overflow: hidden;
}
.sustainability-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 27, 45, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
    z-index: 1;
}
.sustainability-hero-content {
    position: relative;
    z-index: 2;
}
.sustainability-hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.sustainability-label {
    display: inline-block;
    background: rgba(198, 134, 66, 0.15);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(198, 134, 66, 0.3);
}
.sustainability-hero-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--color-white);
    line-height: 1.2;
}
.sustainability-hero-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.sustainability-hero-lead strong {
    color: var(--color-accent);
    font-weight: 600;
}
.sustainability-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}
.sustainability-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}
.sustainability-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(198, 134, 66, 0.3);
    transform: translateY(-4px);
}
.feature-icon-circle {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4975a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(198, 134, 66, 0.3);
}
.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-white);
}
.feature-text p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}
.sustainability-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.badge-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.badge-premium:hover {
    background: rgba(198, 134, 66, 0.2);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 134, 66, 0.3);
}
.badge-premium i { color: var(--color-accent); }
@media (min-width: 768px) {
    .sustainability-hero-title { font-size: 3.5rem; }
    .sustainability-features { grid-template-columns: repeat(3, 1fr); }
    .sustainability-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* =========================================
   SECTION 7: FAQ
   ========================================= */
.faq { background-color: var(--color-neutral); }
.accordion {
    max-width: 800px;
    margin: 60px auto 0;
}
.accordion-item {
    background: var(--color-white);
    margin-bottom: 16px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.accordion-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.accordion-header:hover { background-color: #f8fafc; }
.accordion-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-primary);
}
.accordion-icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}
.accordion-item.active .accordion-content {
    max-height: 300px;
    transition: max-height 0.3s ease-in-out;
    padding-bottom: 24px;
}
.accordion-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* =========================================
   SECTION 8: FOOTER CTA
   ========================================= */
.footer-cta {
    background: linear-gradient(rgba(20, 27, 45, 0.95), rgba(20, 27, 45, 0.95)), url('') center/cover fixed;
    color: var(--color-white);
    text-align: center;
    padding: 100px 20px;
}
.footer-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}
.footer-cta p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 48px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: #0b0f19;
    color: #cbd5e1;
    padding: 80px 0 40px;
    border-top: 1px solid #1e293b;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}
.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 1.1rem;
}
.footer-col p {
    margin-bottom: 8px;
    color: #cbd5e1;
}
.footer-col a {
    color: #cbd5e1;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-cnpj {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 16px;
}
.social-links {
    display: flex;
    gap: 16px;
}
.social-link {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: white;
}
.social-link:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.875rem;
    color: #64748B;
}
.footer-bottom .company-name {
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.footer-developer {
    margin-top: 12px;
    font-size: 0.8rem;
    opacity: 0.7;
}
.footer-developer a {
    color: var(--color-accent);
    transition: opacity 0.2s;
}
.footer-developer a:hover { opacity: 0.8; color: var(--color-accent); }

/* =========================================
   UTILITY
   ========================================= */
.icon { width: 24px; height: 24px; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(244, 247, 249, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    padding: 16px 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    gap: 10px;
}
.navbar-logo img {
    height: 40px;
    width: auto;
}
.navbar-links {
    display: none;
    gap: 32px;
    align-items: center;
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover { color: var(--color-accent); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.navbar-cta-desktop { display: none; }
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    z-index: 1001;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 998;
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    padding: 80px 32px 32px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active { right: 0; }
.mobile-nav-header {
    margin-bottom: 40px;
}
.mobile-nav-header h4 {
    color: var(--color-accent);
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-nav-cta {
    margin-top: auto;
}
@media (min-width: 992px) {
    .navbar-links { display: flex; }
    .navbar-cta-desktop { display: block; }
    .mobile-menu-btn { display: none; }
    body { padding-top: 80px; }
    .hero {
        min-height: calc(100vh - 80px);
        height: auto;
    }
}
