:root {
    /* Colors */
    --bg-dark: #020308;
    --bg-accent: #050914;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #b45309;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gold-glass: rgba(245, 158, 11, 0.1);
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 20px;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.accent-bg {
    background-color: var(--bg-accent);
}

/* Typography */
h1 {
    font-size: clamp(2.75rem, 6vw, 5.25rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title span {
    display: block;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero staggered entrance on load */
.hero-stagger {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-rise 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--i) * 110ms);
}

@keyframes hero-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    font-weight: 300;
}

/* Badges */
.badge, .badge-accent {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.badge {
    background: var(--gold-glass);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
    animation: badge-pulse 2s ease-out infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.badge-accent {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}

/* Hero / pill CTA */
.btn-cta {
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    padding: 16px 36px;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
    animation: cta-pulse 2.6s ease-in-out infinite;
}

/* Light sweep across the CTA */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-20deg);
    animation: cta-shine 3.2s ease-in-out infinite;
}

.btn-cta > * {
    position: relative;
    z-index: 1;
}

@keyframes cta-shine {
    0% { left: -75%; }
    45%, 100% { left: 130%; }
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25); }
    50% { box-shadow: 0 8px 34px rgba(245, 158, 11, 0.5); }
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.45);
}

.btn-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover .btn-arrow {
    transform: translateX(5px);
}

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

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--gold);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-base);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.mobile-nav.open {
    max-height: 400px;
    opacity: 1;
    padding: 16px 20px 24px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-nav .btn {
    margin-top: 12px;
    border-bottom: none;
}

/* Hero Section */
#hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.background-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(245, 158, 11, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.10) 0%, transparent 45%);
    z-index: -1;
}

/* Subtle grain texture across the page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Animated tech grid */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
    animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

/* Floating glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.hero-orb-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.45) 0%, transparent 70%);
    animation: orb-float-1 14s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -60px;
    background: radial-gradient(circle, rgba(180, 83, 9, 0.40) 0%, transparent 70%);
    animation: orb-float-2 18s ease-in-out infinite;
}

@keyframes orb-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 50px) scale(1.15); }
}

@keyframes orb-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -40px) scale(1.1); }
}

/* Slowly rotating spotlight sweep */
.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140vmax;
    height: 140vmax;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    background: conic-gradient(from 0deg at 50% 50%,
        transparent 0deg,
        rgba(245, 158, 11, 0.05) 40deg,
        transparent 120deg,
        transparent 240deg,
        rgba(245, 158, 11, 0.04) 300deg,
        transparent 360deg);
    animation: spotlight-rotate 30s linear infinite;
}

@keyframes spotlight-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Title glow for impact */
.hero-title {
    text-shadow: 0 0 60px rgba(245, 158, 11, 0.08);
}

.hero-title em {
    filter: drop-shadow(0 0 24px rgba(245, 158, 11, 0.35));
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.micro-copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Tech Card */
@property --tc-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.tech-card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(245, 158, 11, 0.08);
    animation: card-float 6s ease-in-out infinite;
}

/* Rotating gradient border */
.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: conic-gradient(from var(--tc-angle),
        transparent 55%,
        rgba(245, 158, 11, 0.9) 75%,
        var(--gold-light) 85%,
        transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    animation: tc-rotate 5s linear infinite;
}

@keyframes tc-rotate {
    to { --tc-angle: 360deg; }
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.live-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-left: auto;
    position: relative;
}

.live-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.icon-gold {
    color: var(--gold);
}

.chat-sim {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.chat-sim::-webkit-scrollbar {
    width: 4px;
}

.chat-sim::-webkit-scrollbar-track {
    background: transparent;
}

.chat-sim::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.chat-sim::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.message {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    max-width: 85%;
}

.message.incoming {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.message.outgoing {
    background: var(--gold-glass);
    color: var(--gold);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.typing span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    margin-right: 3px;
    animation: typing 1.4s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-4px); opacity: 1; }
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 2;
    opacity: 0;
    animation: hero-rise 0.7s ease forwards;
    animation-delay: 0.9s;
}

.scroll-cue-text {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.scroll-cue-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.scroll-cue-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    60% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 992px) {
    .scroll-cue { display: none; }
}

/* Pain Grid */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pain-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-base);
}

.pain-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
    background: rgba(245, 158, 11, 0.02);
}

.pain-card i {
    color: var(--gold);
    margin-bottom: 20px;
    width: 32px;
    height: 32px;
}

.pain-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Solution Section */
.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pillars {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pillar {
    display: flex;
    gap: 20px;
}

.pillar-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.pillar h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.pillar p {
    font-size: 0.95rem;
}

.solution-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-dashboard-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    border-radius: 16px;
    perspective: 1000px;
}

.premium-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
}

.premium-dashboard-wrapper:hover .premium-dashboard-img {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.premium-dashboard-wrapper:hover .dashboard-glow {
    opacity: 1;
}

/* Differential */
.differential-content {
    background: linear-gradient(135deg, var(--bg-accent) 0%, #111 100%);
    padding: 80px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.davison-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.davison-card img {
    width: 100%;
    display: block;
    transition: var(--transition-base);
}

.davison-card:hover img {
    transform: scale(1.03);
}

.davison-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.davison-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
}

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

.diff-header h2 {
    margin-bottom: 40px;
}

.diff-body p {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .diff-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .davison-card {
        max-width: 400px;
        margin: 40px auto 0;
    }
}

.quote {
    grid-column: 1 / -1;
    margin-top: 20px;
    font-size: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--gold);
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    line-height: 1.2;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.step-number {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: -20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.step-cta {
    margin-top: 60px;
    text-align: center;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: 'Sora', sans-serif;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--gold);
}

.faq-item.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Final CTA & Form */
.final-cta {
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0a05 100%);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.cta-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    max-width: 120%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.22) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.cta-content h2 { margin-bottom: 20px; }
.cta-content p { margin: 0 auto 40px; }

.lead-form {
    max-width: 450px;
    margin: 0 auto;
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 16px;
}

input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: var(--transition-base);
}

input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.05);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    background-color: var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

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

.brand-logo-footer {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.9;
    mix-blend-mode: screen;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1.05rem;
    color: var(--gold);
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.05em;
}

.footer-col a, .footer-col p {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.footer-col a:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

.copyright p {
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1.2s ease-out;
}

.animate-fade-in.visible {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content, .solution-wrapper, .diff-body {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    p { margin-left: auto; margin-right: auto; }
    
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }

    header.menu-open {
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--glass-border);
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .differential-content {
        padding: 40px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-stagger,
    .animate-up,
    .animate-fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}
