:root {
    --color-primary: #F1F512;
    /* Neon Yellow */
    --color-secondary: #9F12F5;
    /* Purple */
    --color-bg: #040405;
    /* Deep Dark */
    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-text: #FFFEFC;
    --color-text-muted: #ACACAC;
    --color-accent: #875FF0;
    --color-border: rgba(255, 255, 255, 0.1);

    --font-primary: "Nunito Sans", sans-serif;
    --font-secondary: "Nunito", sans-serif;
    --font-text: "Roboto", sans-serif;

    --container-max-width: 1200px;
    --header-height: 80px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --glass-blur: blur(12px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grid Background Utility */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Glow Utility */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(159, 18, 245, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.2;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
#main-header {
    background: rgba(4, 4, 5, 0.7);
    backdrop-filter: var(--glass-blur);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo img {
    height: 32px;
    width: auto;
}

.tagline {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-left: 1px solid var(--color-border);
    padding-left: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 10px 20px rgba(241, 245, 18, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(241, 245, 18, 0.3);
    filter: brightness(1.05);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(159, 18, 245, 0.15);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(159, 18, 245, 0.3);
    filter: brightness(1.1);
}


/* Hero Section */
#hero {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.3;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-visual img {
    max-width: 110%;
    height: auto;
    border-radius: var(--radius-lg);
}

h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hero-disclaimer {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-disclaimer::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Floating Animation */
.float-computer {
    will-change: transform;
    animation: computerFloat 6s ease-in-out infinite;
}

@keyframes computerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Trusted By Section */
#trusted-by {
    padding: 80px 0;
    background: transparent;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    overflow: hidden;
}

.section-tag {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(241, 245, 18, 0.3);
    border-radius: 100px;
}

.logo-carousel {
    display: flex;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
}

.logo-track img {
    height: 28px;
    width: auto;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.logo-track img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Base Card & Glassmorphism */
.card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Why Us Section */
#why-us {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header .section-tag {
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 32px;
    margin: 0 0 24px 0;
    font-weight: 800;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.15rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.metric-card {
    padding: 48px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-value {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.metric-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.metric-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 22px;
}


/* Evolution Section */
#evolution {
    padding: 120px 0;
    position: relative;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.evolution-card {
    padding: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.evolution-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-top-color: var(--color-primary);
}

.evolution-card img {
    margin-bottom: 32px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 100%;
    height: auto;
}

.evolution-card:hover img {
    transform: translateY(-8px);
}

.evolution-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 800;
}

.evolution-card p {
    color: var(--color-text-muted);
    font-size: 14px;
}


/* Pain Points Section */
#pain-points {
    padding: 120px 0;
}

.pain-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.pain-headline {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 64px;
    letter-spacing: -0.5px;
    color: var(--color-text);
}

.pain-headline .text-muted {
    color: var(--color-text-muted);
    font-weight: 400;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pain-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

.pain-item.highlighted {
    border-left: 2px solid var(--color-primary);
    margin-top: 32px;
}

.pain-title {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 4px;
    font-weight: 500;
}

.pain-desc {
    font-size: 16px;
    color: var(--color-text-muted);
}

.pain-item.highlighted .pain-desc {
    color: var(--color-text);
}

.pain-item.highlighted em {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 400;
}


/* Commitment Section */
#commitment {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.commitment-grid.inverted {
    grid-template-columns: 0.9fr 1.1fr;
}

.badge-tag {
    background: rgba(255, 107, 0, 0.1);
    color: #FF6B00;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    display: inline-block;
}

.commitment-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
}

.commitment-title em {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 400;
}

.commitment-text {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.commitment-stats-intro {
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-text);
}

.commitment-stats-list {
    list-style: none;
    margin-bottom: 40px;
}

.commitment-stats-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.stat-icon {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    filter: invert(78%) sepia(85%) saturate(718%) hue-rotate(1deg) brightness(105%) contrast(101%);
}

.commitment-stats-list span {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.commitment-stats-list strong {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
}

.commitment-footer {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 40px;
}

.commitment-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.reviews-short {
    display: flex;
    flex-direction: column;
}

.reviews-short .stars {
    color: #FF6B00;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.reviews-short span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.commitment-visual {
    position: relative;
    z-index: 1;
}

.placeholder-frame {
    background: #0A0A0B;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/11;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px dashed rgba(255, 255, 255, 0.05);
}

.commitment-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/11;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

@media (max-width: 1024px) {
    .commitment-grid,
    .commitment-grid.inverted {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .commitment-content {
        order: 1;
    }

    .commitment-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .commitment-actions {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .commitment-stats-list li {
        justify-content: center;
    }
    
    .commitment-title {
        font-size: 28px;
    }
}


/* Success Cases Section */
#success-cases {
    padding: 120px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-card {
    display: flex;
    flex-direction: column;
}

.case-img-wrap {
    background: var(--color-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 0px;
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.case-card:nth-child(odd) .case-img-wrap {
    background: linear-gradient(180deg, rgba(88, 28, 135, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.case-card:nth-child(even) .case-img-wrap {
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.case-card img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    display: block;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-img-wrap img {
    transform: translateY(-8px) scale(1.02);
}

.case-info {
    padding: 0;
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.case-meta span {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: transparent;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--color-border);
}

.case-info h3 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--color-text);
}

.case-info p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ Section */
#faq {
    padding: 120px 0;
}

.faq-container {
    max-width: 900px;
}

.centered-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 64px;
    font-weight: 800;
}

.faq-tag {
    margin: 0 auto 24px;
    display: table;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    border-radius: 16px;
    transition: background 0.3s ease;
}

.faq-card.card:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 300;
    font-size: 18px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 40px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.faq-card.active .faq-answer {
    max-height: 400px;
    padding-bottom: 40px;
}


/* Typeform Contact Section (Astonish Branded) */
#contato {
    padding: 120px 0;
}

.typeform-container {
    background: transparent;
    padding: 20px 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.tf-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tf-step.active {
    display: block;
}

.typeform-container h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text);
}

.typeform-container em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

.tf-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: var(--font-text);
}

.tf-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.tf-progress-bar {
    height: 3px;
    flex: 1;
    background: var(--color-border);
    border-radius: 2px;
}

.tf-progress-bar.active {
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.tf-group {
    margin-bottom: 24px;
}

.tf-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.typeform-container input,
.typeform-container select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-text);
    transition: all 0.3s ease;
    outline: none;
}

.typeform-container input:focus,
.typeform-container select:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
}

.tf-input-prefix,
.tf-input-icon {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding-left: 20px;
    transition: all 0.3s ease;
}

.tf-input-prefix:focus-within,
.tf-input-icon:focus-within {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
}

.tf-input-prefix input,
.tf-input-icon input,
.tf-input-icon select {
    border: none;
    background: transparent;
    padding-left: 12px;
}

.tf-input-icon input,
.tf-input-icon select {
    padding-left: 12px;
    appearance: none;
}

.tf-input-icon select {
    cursor: pointer;
    background: #111;
    color: var(--color-text);
}

.tf-input-icon select option {
    background: #111;
    color: var(--color-text);
    padding: 12px;
}

.tf-input-prefix .flag {
    font-size: 1.2rem;
    margin-right: 4px;
}

.tf-input-prefix .divider {
    width: 1px;
    height: 24px;
    background: var(--color-border);
    margin: 0 12px;
}

/* Fix SVG colors inside prefixes */
.tf-input-prefix svg path,
.tf-input-icon svg path,
.tf-input-icon svg rect,
.tf-input-icon svg polyline {
    stroke: var(--color-text-muted);
}

.tf-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.tf-btn {
    width: 100%;
    padding: 16px;
    border-radius: 100px;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

#tf-btn-next {
    margin-top: 16px;
}

.tf-btn-primary {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.tf-btn-primary:hover {
    box-shadow: 0 6px 25px var(--color-primary-glow);
    transform: translateY(-2px);
}

.tf-btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.tf-btn-secondary:hover {
    border-color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.tf-security {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 24px;
    font-family: var(--font-text);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Final Footer Section */
#main-footer {
    padding: 80px 0 40px;
    background-color: #000;
    color: var(--color-text);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--color-primary);
    color: #000;
}

.back-to-top {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgba(159, 18, 245, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(159, 18, 245, 0.2);
}

.back-to-top:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(159, 18, 245, 0.4);
    transform: translateY(-5px);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-bottom: 40px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: left;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .copyright {
        text-align: center;
    }
}

/* Scroll Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Final Responsive Adjustments */
@media (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }

    #hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-visual img {
        max-width: 90%;
    }

    .hero-actions {
        align-items: center;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    #main-header {
        height: auto;
        padding: 15px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .tagline {
        display: none;
    }

    h1 {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 32px !important;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    #hero {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-disclaimer {
        font-size: 0.75rem;
        white-space: nowrap;
        text-align: center;
        width: 100%;
        justify-content: center;
        letter-spacing: -0.5px;
    }

    .btn-lg {
        width: 100%;
        padding: 15px 20px;
    }

    .features-grid,
    .evolution-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .metric-value {
        font-size: 3.5rem;
    }

    .contact-wrapper {
        padding: 32px 24px;
    }

    .pain-headline {
        font-size: 24px;
    }
}

/* Mobile Floating Navigation (<= 500px) */
@media (max-width: 500px) {
    #main-footer {
        padding-bottom: 120px;
    }

    #main-header {
        position: fixed;
        top: auto;
        bottom: 24px;
        left: 20px;
        right: 20px;
        width: auto;
        height: 70px;
        border-radius: 100px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: rgba(16, 8, 22, 0.98) !important;
        background: radial-gradient(circle at top right, rgba(159, 18, 245, 0.1), transparent 40%),
            radial-gradient(circle at bottom left, rgba(241, 245, 18, 0.05), transparent 40%) !important;
    }

    .header-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0 20px;
        gap: 0;
    }

    .header-left {
        gap: 0;
    }

    .logo img {
        width: 120px !important;
        height: auto;
    }

    .header-right .btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .tagline {
        display: none;
    }
}