/* ===================================
   DWR7 MAX PERFORMANCE - Landing Page
   =================================== */

/* CSS Variables */
:root {
    --navy: #07111F;
    --dark: #0B0F17;
    --graphite: #151A23;
    --orange: #FF7A1A;
    --white: #FFFFFF;
    --gray: #A7B0C0;
    --blue-accent: #1E5EFF;
    --gradient-orange: linear-gradient(135deg, #FF7A1A 0%, #FF9A4A 100%);
    --gradient-blue: linear-gradient(135deg, #1E5EFF 0%, #3D7EFF 100%);
    --gradient-dark: linear-gradient(180deg, #0B0F17 0%, #07111F 100%);
    --glass-bg: rgba(21, 26, 35, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 60px rgba(255, 122, 26, 0.15);
}

[data-theme="light"] {
    --navy: #F0F4F8;
    --dark: #FFFFFF;
    --graphite: #F8FAFC;
    --white: #0B0F17;
    --gray: #475569;
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #F0F4F8 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .logo-img {
    filter: invert(1) brightness(0.1);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 15, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.footer-logo .logo-img {
    height: 80px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 122, 26, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--orange);
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 122, 26, 0.35);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Dashboard 3D */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-3d {
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transform-style: preserve-3d;
}

.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-glow);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
}

.card-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.card-dot.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 122, 26, 0);
    }
}

.card-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
}

.metric {
    text-align: center;
}

.metric-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--orange) var(--value)%, var(--graphite) var(--value)%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
}

.metric-ring::before {
    content: attr(data-value) '%';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--graphite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.metric-label {
    font-size: 12px;
    color: var(--gray);
}

.card-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--gray);
}

.bar-item span {
    min-width: 80px;
}

.bar {
    flex: 1;
    height: 6px;
    background: var(--graphite);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--orange);
}

.card-left {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.card-right {
    top: 40%;
    right: -30px;
    animation-delay: 2s;
}

.card-bottom {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

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

.glow-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    background: var(--orange);
    top: -50px;
    right: -50px;
}

.orb-2 {
    background: var(--blue-accent);
    bottom: -50px;
    left: -50px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        opacity: 1;
        transform: scaleY(1);
    }
    100% {
        opacity: 0;
        transform: scaleY(0.5);
    }
}

/* ===================================
   Sections Common
   =================================== */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 122, 26, 0.1);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===================================
   Problems Grid
   =================================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--graphite);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: var(--shadow-glow);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 122, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 20px;
    color: var(--orange);
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===================================
   Positioning Section
   =================================== */
.positioning-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.positioning-text {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 24px;
}

.pillars-3d {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.pillar {
    flex: 1 1 0;
    min-width: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pillar-icon i {
    font-size: 24px;
    color: var(--white);
}

.pillar h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pillar p {
    font-size: 13px;
    color: var(--gray);
}

.pillar-connector {
    width: 30px;
    height: 2px;
    background: var(--gradient-orange);
    flex-shrink: 0;
    align-self: center;
}

/* ===================================
   Timeline
   =================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-orange);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--graphite);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 122, 26, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.timeline-icon i {
    color: var(--orange);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===================================
   Services Grid
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--graphite);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 26, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 122, 26, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: var(--orange);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===================================
   Audience Grid
   =================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-card {
    background: var(--graphite);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: var(--orange);
    transform: translateX(4px);
}

.audience-card i {
    font-size: 24px;
    color: var(--orange);
}

.audience-card span {
    font-size: 14px;
    font-weight: 500;
}

/* ===================================
   Benefits Grid
   =================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--graphite);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 122, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 12px;
    color: var(--orange);
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* ===================================
   Differentials Grid
   =================================== */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.diff-card {
    background: var(--graphite);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.diff-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.diff-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 122, 26, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.diff-icon i {
    font-size: 24px;
    color: var(--orange);
}

.diff-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* ===================================
   Cockpit Section
   =================================== */
.cockpit-section {
    background: var(--navy);
    overflow: hidden;
}

.cockpit-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cockpit-center {
    position: relative;
    z-index: 2;
}

.cockpit-core {
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 122, 26, 0.4);
}

.cockpit-core i {
    font-size: 32px;
    margin-bottom: 4px;
}

.cockpit-core span {
    font-size: 11px;
    font-weight: 600;
}

.cockpit-modules {
    position: absolute;
    inset: 0;
}

.module {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.module:hover {
    border-color: var(--orange);
    transform: scale(1.05);
}

.module i {
    font-size: 18px;
    color: var(--orange);
}

.module-1 { top: -2%; left: 50%; transform: translateX(-50%); }
.module-1:hover { transform: translateX(-50%) scale(1.05); }
.module-2 { top: 12%; right: 8%; }
.module-3 { top: 40%; right: -8%; }
.module-4 { top: 70%; right: 2%; }
.module-5 { bottom: -2%; right: 28%; }
.module-6 { bottom: -2%; left: 28%; }
.module-7 { top: 70%; left: 2%; }
.module-8 { top: 40%; left: -8%; }
.module-9 { top: 12%; left: 8%; }

/* ===================================
   CTA Section
   =================================== */
.section-cta {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: var(--graphite);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

/* ===================================
   Contact Grid
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--graphite);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 122, 26, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 28px;
    color: var(--orange);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(167, 176, 192, 0.6);
}

/* ===================================
   WhatsApp Float
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 28px;
    color: white;
}

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .positioning-wrapper {
        grid-template-columns: 1fr;
    }

    .pillars-3d {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pillar-connector {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 24px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 60px;
    }

    .timeline-number {
        left: 24px;
    }

    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 15, 23, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .problems-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .audience-grid,
    .differentials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    /* Cockpit Mobile (List layout) */
    .cockpit-visual {
        height: auto;
        flex-direction: column;
        padding: 40px 0;
    }
    
    .cockpit-modules {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 40px;
    }
    
    .module {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .module:hover {
        transform: translateY(-2px) !important;
    }

    /* Pillars */
    .pillars-3d {
        flex-direction: column;
        gap: 20px;
    }
    
    .pillar {
        width: 100%;
        flex: none;
        box-sizing: border-box;
    }
    
    .pillar-connector {
        display: none;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cockpit-visual {
        height: auto;
    }

    .module {
        padding: 12px 16px;
        font-size: 11px;
    }
}
