/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
    /* Colors - Premium Dark & Gold Theme */
    --bg-dark: #050505;
    --bg-darker: #000000;
    --bg-card: rgba(20, 20, 20, 0.6);
    --bg-card-hover: rgba(30, 30, 30, 0.8);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    /* Gold Accents */
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #996515;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #996515 100%);
    
    /* Glassmorphism */
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-border-hover: rgba(212, 175, 55, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Logo scaling fix */
    --logo-height: 40px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1200px;
}

/* Visibility Utilities */
.desktop-only { display: block; }
.mobile-hero-image-section { display: none; }

/* Media Elements */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

html, body {
    scroll-behavior: smooth;
    font-size: 16px;
    position: relative;
    width: 100%;
    max-width: 100%; /* Changed from 100vw to 100% to prevent overflow */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden !important; /* Only applied to body to prevent double scrollbars */
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */

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

.text-gold {
    color: var(--gold-primary);
}

.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

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

.w-100 {
    width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden; /* Changed from overflow-x: hidden to overflow: hidden for stricter clipping */
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary, .btn-primary-outline, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--bg-darker);
}

.btn-primary-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-primary-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   Glassmorphism Cards
   ========================================================================== */

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon i {
    color: var(--gold-primary);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.15);
    top: -100px;
    left: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -50px;
    right: -100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Hero Visual / Abstract Art */
.hero-visual {
    position: relative;
}

.portrait-card {
    position: relative;
    padding: 1rem;
    border-radius: 24px;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(10, 10, 10, 0.9));
    overflow: hidden;
}

.portrait-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portrait-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.abstract-shape i {
    font-size: 12rem;
    color: rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 0;
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-badge i {
    font-size: 2rem;
}

.floating-badge div {
    display: flex;
    flex-direction: column;
}

.floating-badge strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.floating-badge span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Bio Section
   ========================================================================== */

.bio-section {
    background-color: var(--bg-darker);
    position: relative;
}

.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bio-image {
    position: relative;
    padding: 2rem;
}

.image-frame {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 2px;
    background: var(--gold-gradient);
    overflow: hidden;
}

.frame-content {
    background: var(--bg-darker);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255,255,255,0.05);
}

.bio-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bio-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==========================================================================
   Timeline Section
   ========================================================================== */

.timeline-section {
    position: relative;
    background: var(--bg-dark);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.timeline-content.left { margin-right: auto; text-align: right; }
.timeline-content.right { margin-left: auto; text-align: left; }

.timeline-date {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* ==========================================================================
   Businesses Section
   ========================================================================== */

.businesses-section {
    background-color: var(--bg-darker);
    position: relative;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: rgba(212, 175, 55, 0.08);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

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

.business-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.business-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.business-card:hover .card-link {
    gap: 0.8rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 4rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 0;
}

.method > div {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.method i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.method a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    overflow-wrap: break-word;
    word-break: break-all;
}

.method a:hover {
    color: var(--gold-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #0a0a0a;
    color: var(--text-primary);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-logo i {
    color: var(--gold-primary);
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 500;
}

.social-links a i {
    font-size: 1.4rem;
}

.social-links a:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   Free Tools (Lead Magnets) Section
   ========================================================================== */

.tools-section {
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.tool-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
}

.tool-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* ==========================================================================
   Modals
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 600px;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

@media (max-width: 500px) {
    .modal-container {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

.modal-overlay.active .modal-container.active-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
    display: block;
}

.modal-container:not(.active-modal) {
    display: none;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
}

.form-group-row {
    display: flex;
    gap: 1rem;
}

.w-50 {
    width: 50%;
}

.mt-3 {
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}

.tool-result {
    animation: fadeIn 0.5s ease forwards;
}

.result-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.result-box span {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-box strong {
    font-size: 2.5rem;
    font-family: var(--font-heading);
}

.result-details p {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.result-details p:last-child {
    border-bottom: none;
}

.profile-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.profile-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */

[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate="scale-up"] {
    transform: scale(0.95);
}

.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 5rem 0;
    }

    .hero-title { font-size: 3.5rem; }
    
    /* .hero-content, .bio-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    } */
    
    .businesses-grid, .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    /* No layout single-column, animações horizontais causam overflow */
    [data-animate="fade-left"],
    [data-animate="fade-right"] {
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-hero-image-section { 
        display: block !important; 
        padding-top: 2rem;
        padding-bottom: 3rem;
        background-color: var(--bg-dark);
    }
    :root {
        --section-padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .nav-container {
        padding: 0 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hamburger { display: block; }
    
    .glow-orb {
        width: 150px !important;
        height: 150px !important;
        filter: blur(40px);
        max-width: 100%;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 4rem;
        min-height: auto;
    }
    
    .hero-title { font-size: 2.2rem !important; }
    .hero-subtitle { font-size: 1rem !important; max-width: 100% !important; }
    .hero-cta { flex-direction: column !important; width: 100% !important; align-items: center !important; }
    .hero-cta a { width: 100% !important; max-width: 320px !important; margin-bottom: 0.5rem; }
    
    .logo img {
        max-width: 160px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
    }
    
    .section-title { font-size: 1.8rem !important; }

    .timeline-item {
        display: block;
    }
    
    .timeline-line { left: 40px; }
    .timeline-dot { left: 40px; }
    .timeline-content {
        width: calc(100% - 70px) !important;
        margin-left: 70px !important;
        text-align: left !important;
        box-sizing: border-box;
    }

    [data-animate="fade-left"],
    [data-animate="fade-right"] {
        transform: translateY(20px);
    }
    
    .businesses-grid, .tools-grid { grid-template-columns: 1fr; }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .stat-item { text-align: center; }
    
    .contact-wrapper { 
        padding: 2rem 1.5rem; 
        gap: 2.5rem; 
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-content, .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .bio-content h3 { font-size: 2rem; text-align: center; }
    .bio-content p { text-align: center; }

    .floating-badge {
        bottom: 1rem;
        left: 0;
        padding: 0.8rem 1rem;
        transform: translateX(0);
        margin-left: 1rem;
    }
    .floating-badge i { font-size: 1.5rem; }
    .floating-badge strong { font-size: 0.95rem; }

    .business-card, .tool-card {
        padding: 2rem 1.5rem;
    }

    .contact-info h2 { font-size: 2.2rem; text-align: center; }
    .contact-info p { text-align: center; }

    .modal-container {
        width: 95% !important;
        max-width: 350px !important;
        padding: 1.5rem !important;
        margin: 0 auto !important;
    }

    .footer {
        overflow: hidden;
    }
}
