:root {
    --bg-dark: #060e1d;
    /* Azul-marinho ainda mais escuro para maior contraste */
    --bg-card: rgba(17, 34, 64, 0.4);
    /* Fundo dos cards translúcido */
    --accent: #64ffda;
    /* Ciano Neon */
    --accent-secondary: #7e5bef;
    /* Púrpura Neon para profundidade */
    --text-main: #f0f7ff;
    --text-subtitle: #a4adc9;
    --font-main: 'Inter', sans-serif;
    --font-head: 'Sora', sans-serif;
    --font-code: 'Fira Code', monospace;
    --transition-main: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

/* Custom Styled Scrollbar for Identity Visual Harmony */
::-webkit-scrollbar {
    width: 8px; /* Balanced Minimalist Width */
}

::-webkit-scrollbar-track {
    background: var(--bg-dark); /* Match deep background */
}

::-webkit-scrollbar-thumb {
    background: var(--accent); /* Neon Ciano Thumb */
    border-radius: 10px;
    border: 2px solid var(--bg-dark); /* Spacing for cleaner look */
}

::-webkit-scrollbar-thumb:hover {
    background: #4deaca; /* Lighter Neon on hover */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.7;
    position: relative;
    letter-spacing: -0.01em;
    overflow-x: hidden; /* Fix horizontal gap bug */
    width: 100%;
}

/* Parallax scroll-snap wrapper */
.scroll-container {
    width: 100%;
}

@media (min-width: 992px) {
    body {
        height: 100vh;
        overflow: hidden; /* Prevent Double Scrollbar */
    }

    .scroll-container {
        scroll-snap-type: y mandatory;
        overflow-y: scroll;
        overflow-x: hidden;
        height: 100vh;
        /* scroll-behavior: smooth removed — conflicts with snap reset on load.
           Smooth scroll is handled by JS .scrollTo({behavior:'smooth'}) instead. */
        position: relative;
    }

    /* CRITICAL: Every section must declare a snap alignment.
       Without this, the browser only snaps to .contact-section (the only one with snap-align),
       which causes the auto-scroll-to-bottom bug on page load. */
    .section {
        scroll-snap-align: start;
    }
}

/* O Segredo da Atmosfera Tech: Gradiente de Fundo Transparente */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(126, 91, 239, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Tipografia de Alta Precisão */
h1,
h2,
h3 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -0.04em;
    color: #ffffff !important;
    /* Branco puro para nitidez máxima */
}

h1 span.neon-line {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-subtitle);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

.accent-text {
    color: var(--accent);
}

/* Navbar Minimalista Premium */
.navbar {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 14, 29, 0.7);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: white;
}

.logo span {
    color: var(--accent);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-main);
}

.menu-toggle {
    display: none; /* Hide on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.menu-toggle span {
    width: 1.5rem;
    height: 0.15rem;
    background: var(--accent);
    border-radius: 10px;
    transition: all 0.3s linear;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .desktop-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(6, 14, 29, 0.98);
        backdrop-filter: blur(15px);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 105;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .desktop-nav.active {
        transform: translateX(0);
    }

    .desktop-nav ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .desktop-nav ul li a {
        font-size: 1.5rem;
    }
}

nav a:hover {
    color: var(--accent);
}

.btn-cta-nav {
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    padding: 10px 22px;
    border-radius: 4px;
}

.btn-cta-nav:hover {
    background: rgba(100, 255, 218, 0.15);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
}

/* Botões Modernos com Efeito de Luz */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-main);
    font-size: 1rem;
    position: relative;
    z-index: 20;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

.btn-primary:hover {
    background: white;
    box-shadow: 0 5px 30px rgba(100, 255, 218, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    color: var(--accent);
    border: 1px solid var(--accent);
    margin-left: 20px;
}

.btn-secondary:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* Cards de Serviço: Efeito de Profundidade Avançado */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-main);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.card.active,
.card:hover {
    border-color: rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 40px -10px rgba(6, 14, 29, 0.5);
    transform: translateY(-5px);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent);
}

.card h3 {
    font-size: 1.6rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.card-link:hover {
    color: white;
}

/* Section backgrounds para distinção visual no parallax */
.sobre-section {
    background: linear-gradient(180deg, rgba(6, 14, 29, 0.98) 0%, rgba(8, 18, 40, 0.98) 100%);
    overflow: hidden;
}

.services-section {
    background: linear-gradient(180deg, rgba(8, 18, 40, 0.98) 0%, rgba(6, 14, 29, 0.98) 100%);
}

.cases-section {
    background: rgba(6, 14, 29, 0.99);
}

.contact-section {
    background: rgba(5, 12, 25, 0.99);
}

/* Garante que o container dentro das sections ocupe a largura correta */
.section>.container,
.section>.contact-section-inner>.container {
    width: 100%;
}

.grid-sobre {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Sobre Visual — Left Column */
.sobre-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-badge-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-badge-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.15) 0%, rgba(126, 91, 239, 0.08) 50%, transparent 70%);
    animation: badge-pulse 4s ease-in-out infinite;
    z-index: 0;
    filter: blur(20px);
}

.tech-badge-img {
    position: relative;
    z-index: 1;
    width: 320px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(100, 255, 218, 0.2)) drop-shadow(0 0 60px rgba(126, 91, 239, 0.15));
    animation: badge-float 6s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tech-badge-img:hover {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 40px rgba(100, 255, 218, 0.35)) drop-shadow(0 0 80px rgba(126, 91, 239, 0.25));
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Sobre Content — Right Column */
.sobre-content {
    display: flex;
    flex-direction: column;
}

.sobre-content .section-title {
    margin-bottom: 16px;
}

.sobre-content .section-subtitle {
    margin-bottom: 40px;
    max-width: none;
}

.grid-pilares {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pilar-card {
    background: rgba(17, 34, 64, 0.35);
    padding: 28px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--accent);
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(4px);
}

.pilar-card:hover {
    background: rgba(17, 34, 64, 0.55);
    border-left-color: var(--accent);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(100, 255, 218, 0.06);
}

.pilar-accent-line {
    display: none; /* Accent handled by border-left */
}

.pilar-card h3 {
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.pilar-card p {
    font-size: 0.92rem;
    color: var(--text-subtitle);
    line-height: 1.6;
}

/* Nova Seção: Cases (Placeholders Premium) */
.grid-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.case-card {
    display: flex;
    gap: 40px;
    background: rgba(17, 34, 64, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    padding: 20px;
}

.case-image-placeholder {
    width: 300px;
    height: 180px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-content h4 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 10px;
}

/* Formulário Tech Premium */
.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.form-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-text p {
    color: var(--text-subtitle);
    font-size: 1.1rem;
}

.form-wrapper {
    background: rgba(17, 34, 64, 0.3);
    padding: 60px;
    border-radius: 8px;
    border: 1px solid rgba(126, 91, 239, 0.1);
}

input,
textarea {
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(126, 91, 239, 0.15);
    color: white;
    margin-bottom: 15px;
    border-radius: 4px;
    font-family: var(--font-code);
    font-size: 0.9rem;
    transition: var(--transition-main);
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.1);
}

.form-btn {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Footer Mínimo Profissional */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(0, 0, 0, 0.2);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-subtitle);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--accent);
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-text-wrapper {
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .floating-element {
        max-width: 250px;
        margin-top: 40px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .grid-sobre,
    .grid-services,
    .form-layout,
    .pilar-card {
        grid-template-columns: 1fr;
    }

    .case-card {
        flex-direction: column;
        gap: 20px;
    }

    .case-image-placeholder {
        width: 100%;
    }
}

/* --- NOVOS EFEITOS E CORREÇÕES --- */

/* Canvas de Partículas (Fundo Interativo) */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Atrás de tudo */
    opacity: 0.3;
    /* Sutil */
}

/* 1. Parallax Clássico de Imagem no Hero */
.hero.parallax-bg {
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduzida a opacidade do gradiente central para não lavar o texto */
    background: radial-gradient(circle at center, rgba(6, 14, 29, 0.4) 0%, rgba(6, 14, 29, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    padding-top: 80px;
    /* offset for fixed navbar */
}

/* Correção de Alinhamento para Texto à Esquerda */
.text-left {
    text-align: left !important;
    margin-left: 0 !important;
}

/* 2. Classes para Animação de Revelação (Reveal on Scroll) */
.hidden-up,
.hidden-left,
.hidden-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    /* Transição suave de elite */
    will-change: transform, opacity;
    /* Performance */
}

.hidden-up {
    transform: translateY(40px);
}

.hidden-left {
    transform: translateX(-40px);
}

.hidden-right {
    transform: translateX(40px);
}

/* Classe que o JS adiciona quando o elemento entra na tela */
.reveal {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Delays para animações em cascata */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* 3. Efeito Tilt 3D nos Cards (data-tilt no HTML já faz a mágica via JS library) */
.card,
.case-card {
    transform-style: preserve-3d;
    /* Necessário para o tilt 3D */
}

/* Garante que o conteúdo dentro do card também tenha profundidade */
.card *,
.case-card * {
    transform: translateZ(20px);
}

/* Imagem real nos cases */
.case-image {
    width: 300px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

/* --- FOOTER PREMIUM --- */
.footer-premium {
    background: rgba(4, 10, 20, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    z-index: 5;
}

/* Contact section: taller to accommodate footer inside */
.contact-section {
    min-height: 100vh;
    display: block !important;
    padding: 0 !important;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .contact-section {
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        /* scroll-snap-align is now inherited from .section */
        scroll-snap-stop: always;
    }
}

.contact-section-inner {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-brand .brand-description {
    color: var(--text-dim);
    max-width: 320px;
}

.footer-nav h4,
.footer-legal h4 {
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition-main);
}

.footer-nav ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-legal p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-legal p strong {
    color: var(--text-main);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.social-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition-main);
}

.social-links a:hover {
    color: var(--accent);
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand .brand-description {
        margin: 0 auto;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 20px;
    }
}

/* 1. Ajuste para o Elemento Flutuante do Hero */
.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.floating-element {
    max-width: 380px;
    width: 100%;
    height: auto;
    mix-blend-mode: screen;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(100, 255, 218, 0.4));
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .floating-element {
        max-width: 250px;
        margin: 20px auto 0;
        display: block;
    }
}

/* Legacy sobre-text kept for backward compat (no longer used in HTML) */
.sobre-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

/* 3. Ajuste para as imagens dos Cases (Cards) */
.case-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #000;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Parallax Utility - Real Fixed Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1024px) {
    .parallax-section {
        background-attachment: scroll; /* Performance for mobile */
    }
}

/* Ajustes de Grid para Diferentes Resoluções */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .grid-services {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 991px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .scroll-container {
        position: relative;
        height: auto;
        overflow-y: visible;
        scroll-snap-type: none;
    }

    .section {
        height: auto;
        min-height: auto;
        padding: 80px 0;
        scroll-snap-align: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .text-left {
        text-align: center !important;
    }

    .sobre-text {
        align-items: center;
    }

    .sobre-visual {
        order: -1;
    }

    .sobre-content .section-title,
    .sobre-content .section-subtitle {
        text-align: center !important;
    }

    .tech-badge-img {
        width: 220px;
    }

    .tech-badge-glow {
        width: 240px;
        height: 240px;
    }

    .grid-sobre {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-pilares {
        grid-template-columns: 1fr;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-wrapper {
        padding: 40px 20px;
    }

    h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem); /* Scaled down for mobile */
    }
    
    .section-title {
        font-size: 2rem; /* Reduced Title */
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .desktop-nav ul {
        gap: 15px;
    }

    .desktop-nav a {
        font-size: 0.85rem;
    }

    .btn-cta-nav {
        padding: 8px 15px;
    }

    .grid-services {
        grid-template-columns: 1fr;
    }

    .case-card {
        padding: 15px;
        flex-direction: column;
        gap: 20px;
    }

    .case-image-wrapper {
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        justify-items: center; /* Center footer items */
    }

    .footer-brand .brand-description {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        margin-left: 0 !important;
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hidden-up, .hidden-left, .hidden-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
