:root {
    /* Paleta de cores refinada */
    --bg-dark: #0a0a10;
    --bg-card: #12121a;
    --bg-card-hover: #171724;
    --text: #f0f0f5;
    --muted: #9e9eb5;
    --brand-1: #0052cc;
    --brand-2: #0cb0f0;
    --brand-3: #ff9500;
    --text-dark: #1f2937;
    --text-light: #f9fafb;
    --bg-light: #f3f4f6;
    --success: #39E000;
    --danger: #ff4d4f;
    --shadow: 0 10px 30px rgba(0, 0, 0, .5);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, .3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- MELHORIA: ESTILIZAÇÃO DO SCROLL --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #2a2a3a;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-1);
}

html {
    scroll-behavior: smooth;
}

/* Estilos específicos para o menu de login */
.login-container {
    position: relative;
    display: inline-block;
}

/* --- MELHORIA: AJUSTE DO MENU (ALINHAMENTO E CORES) --- */
.login-select {
    position: absolute;
    top: calc(100% + 10px);
    right: 0; /* Alterado de left:0 para right:0 para alinhar com o botão */
    background: var(--bg-card); /* Usando a variável de cor do tema */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 180px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 1000;
}

.login-select.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.login-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.login-option:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--brand-2);
}

.login-option i {
    width: 16px;
    text-align: center;
    color: var(--brand-2);
}

html,
body {
    height: 100%;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Efeito de gradiente refinado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(800px 400px at 85% -5%, rgba(0, 153, 255, 0.25), transparent 60%),
        radial-gradient(700px 350px at 5% 15%, rgba(0, 162, 255, 0.15), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER ESTILIZADO */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(11, 11, 18, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 15px 0;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header__img {
    width: 160px;
    height: auto;
    transition: var(--transition);
}

.header__img:hover {
    opacity: 0.9;
}

.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header__ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.header__li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__li a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.header__li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--brand-1), var(--brand-2));
    transition: var(--transition);
}

.header__li a:hover {
    color: #fff;
}

.header__li a:hover::after {
    width: 100%;
}

.header__hamburger {
    display: none;
    background: none;
    color: #fff;
    border: 0;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.header__hamburger:hover {
    background: rgba(255, 255, 255, .1);
}

.header__cta {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    box-shadow: var(--shadow-light);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 176, 240, 0.3);
}

.btn.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, .08);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== AJUSTE FINAL: MOSTRAR BURGUER CORRETO NO MOBILE ===== */
@media (max-width: 768px) {
    /* Esconde o menu desktop */
    .header__nav {
        display: none;
    }

    /* Mostra o hamburguer do header */
    .header__hamburger {
        display: block;
    }
}

/* Offcanvas Mobile Styles */
.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.offcanvas.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.off-body {
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #12121a, #0a0a10);
    padding: 25px 20px;
    border-right: 1px solid rgba(12, 176, 240, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
}

#closeOff {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

#closeOff:hover {
    background: rgba(12, 176, 240, 0.2);
    border-color: #0cb0f0;
    color: #0cb0f0;
    transform: rotate(90deg);
}

#closeOff i {
    font-size: 20px;
}

.off-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}



.off-links a {
    color: #f0f0f5;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.off-links a i {
    width: 20px;
    height: 20px;
    color: #0cb0f0;
}

.off-links a:hover {
    background: rgba(12, 176, 240, 0.1);
    border-color: rgba(12, 176, 240, 0.2);
    transform: translateX(10px);
    color: #0cb0f0;
}

.off-links a.active {
    background: linear-gradient(90deg, rgba(12, 176, 240, 0.2), transparent);
    border-left: 3px solid #0cb0f0;
    color: #0cb0f0;
}

/* Botão Hamburguer */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
    position: relative;
}

.hamburger-btn i {
    width: 28px;
    height: 28px;
    color: #f0f0f5;
    transition: color 0.3s ease;
}

.hamburger-btn:hover i {
    color: #0cb0f0;
}

/* Responsivo */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .off-body {
        width: 85%;
    }
}




/* Hero Section */
.Ahero {
    padding: 100px 0;
    position: relative;
}

.Ahero__card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.Alogo__img {
    max-width: 200px;
    margin-bottom: 20px;
}

.Alogo__title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.Alogo__subTitle {
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 18px;
}

.Alogo__button {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.Alogo__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 176, 240, 0.3);
}

/* Sections */
.Aabout, .Afeatures, .Aservices, .Aplans {
    padding: 90px 0;
    text-align: center;
}

.Aabout__title, .Afeatures__title, .Aservices__title, .Aplans__title {
    font-size: clamp(32px, 4.5vw, 44px);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.Aabout__subTitle, .Aservices__subTitle {
    color: var(--muted);
    max-width: 70ch;
    margin: 0 auto;
    font-size: 18px;
}

.Afeatures__ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.Afeatures__li {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.Afeatures__li:hover {
    transform: translateY(-5px);
    border-color: var(--brand-1);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow);
}

/* SEÇÃO DE PLANOS - ESTILOS NOVOS */
.Aplans {
    background: rgba(10, 10, 16, 0.8);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.plano-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-2);
    box-shadow: var(--shadow);
}

.plano-card.destaque {
    border: 2px solid var(--brand-2);
    position: relative;
    transform: scale(1.05);
}

.plano-card.destaque:hover {
    transform: translateY(-10px) scale(1.05);
}

.plano-titulo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.plano-preco {
    margin: 20px 0;
}

.plano-preco .valor {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    display: block;
}

.plano-preco .periodo {
    color: var(--muted);
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.plano-desc {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 40px;
}

.plano-lista {
    list-style: none;
    margin: 25px 0;
    text-align: left;
    flex-grow: 1;
    padding: 0;
}

.plano-lista li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.plano-lista li i {
    color: var(--brand-2);
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-plano {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: auto;
}

.btn-plano:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 176, 240, 0.3);
}

.btn-plano:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Badges */
.badge-gratuito,
.badge-popular,
.badge-premium {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gratuito {
    background: rgba(255, 255, 255, 0.1);
    color: #eee;
}

.badge-popular {
    background: var(--brand-1);
    color: #fff;
}

.badge-premium {
    background: var(--brand-3);
    color: #fff;
}

/* Títulos da seção */
.titulo {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitulo {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.text-muted {
    color: var(--muted) !important;
    font-size: 14px;
}

/* How It Works */
.how-it-works {
    padding: 90px 0;
    text-align: center;
    background: var(--bg-card);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--brand-2);
    box-shadow: var(--shadow);
}

.step i {
    font-size: 40px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 90px 0;
    text-align: center;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    text-align: left;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--brand-1);
    box-shadow: var(--shadow);
}

/* CTA */
.cta {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(12, 176, 240, 0.15), rgba(0, 82, 204, 0.08));
}

.btn-cta {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 176, 240, 0.3);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 60px 0 40px;
    color: var(--muted);
    background: var(--bg-card);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* BANNER DE VERSÃO BETA */
.beta-banner {
    background: linear-gradient(135deg, #8A2BE2, #0052cc);
    color: white;
    padding: 12px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
}

.beta-banner .beta-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.beta-banner .beta-badge i {
    font-size: 10px;
    animation: pulse 2s infinite;
}

.beta-banner .beta-message {
    flex: 1;
    text-align: center;
}

.beta-banner .beta-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.beta-banner .beta-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.beta-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}

.beta-tooltip .tooltip-text {
    visibility: hidden;
    width: 280px;
    background: var(--bg-card, #12121a);
    color: var(--text, #f0f0f5);
    text-align: center;
    border-radius: 12px;
    padding: 15px;
    position: absolute;
    z-index: 10000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
}

.beta-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--bg-card, #12121a) transparent transparent transparent;
}

.beta-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.beta-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    margin: 0 4px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Estilo para quando o banner é fechado */
.body-with-banner {
    padding-top: 50px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .plans-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plano-card.destaque {
        transform: scale(1);
    }
    
    .plano-card.destaque:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .header__nav {
        display: none;
    }

    .header__hamburger {
        display: block;
    }

    .header__cta .btn:not(.primary) {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__cta .btn.primary {
        display: none;
    }
    
    .header__content {
        padding: 0 15px;
    }
    
    .Ahero__card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .Aabout, .Afeatures, .Aservices, .Aplans,
    .how-it-works, .testimonials, .cta {
        padding: 60px 0;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .titulo {
        font-size: 28px;
    }
    
    .subtitulo {
        font-size: 16px;
    }
    
    .beta-banner {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
        font-size: 13px;
    }

    .beta-banner .beta-message { order: 2; }
    .beta-banner .beta-badge { order: 1; }

    .beta-banner .beta-close {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        order: 3;
    }

    .beta-tooltip .tooltip-text {
        width: 90vw;
        max-width: 300px;
        left: 50%;
        transform: translateX(-50%);
    }

    .body-with-banner { padding-top: 80px; }
}

@media (max-width: 575px) {
    .header__img {
        width: 130px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .Afeatures__ul, .Aplans__list {
        grid-template-columns: 1fr;
    }
    
    .steps, .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        padding: 25px 20px;
    }
    
    .plano-preco .valor {
        font-size: 30px;
    }
    
    .plano-titulo {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .beta-banner {
        font-size: 12px;
        padding: 8px 10px;
    }

    .beta-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .beta-highlight {
        padding: 1px 6px;
        font-size: 11px;
    }
}
/* ===== NOVAS SEÇÕES ===== */

/* Dashboard Showcase */
.dashboard-showcase {
    padding: 90px 0;
    background: var(--bg-card);
    position: relative;
}

.dashboard-title {
    font-size: clamp(32px, 4.5vw, 44px);
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
}

.dashboard-subtitle {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.dashboard-item {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: var(--transition);
    text-align: center;
}

.dashboard-item:hover {
    transform: translateY(-10px);
    border-color: var(--brand-2);
    box-shadow: var(--shadow);
}

.dashboard-img-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    height: 200px;
}

.dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.dashboard-img-container:hover .dashboard-overlay {
    opacity: 1;
}

.dashboard-btn {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.dashboard-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(12, 176, 240, 0.3);
}

.dashboard-item h3 {
    margin: 15px 0 10px;
    color: #fff;
    font-size: 20px;
}

.dashboard-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-highlight {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-highlight i {
    font-size: 40px;
    color: var(--brand-2);
    margin-bottom: 15px;
}

.feature-highlight h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-highlight p {
    color: var(--muted);
    font-size: 14px;
}

/* System Benefits */
.system-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-1);
    box-shadow: var(--shadow-light);
}

.benefit-card i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.benefit-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-2);
    box-shadow: var(--shadow);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(12, 176, 240, 0.1), rgba(0, 82, 204, 0.1));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--brand-2);
}

.feature-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card > p {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--muted);
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: var(--success);
    font-size: 12px;
    margin-top: 4px;
}

/* Enhanced Stats */
.stats-title {
    text-align: center;
    font-size: clamp(32px, 4.5vw, 44px);
    margin-bottom: 50px;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 30px;
    color: #fff;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--muted);
    font-size: 16px;
}

/* Target Audience */
.target-audience {
    padding: 90px 0;
    background: var(--bg-card);
}

.target-audience h2 {
    text-align: center;
    font-size: clamp(32px, 4.5vw, 44px);
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.audience-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-2);
    box-shadow: var(--shadow-light);
}

.audience-card i {
    font-size: 48px;
    color: var(--brand-2);
    margin-bottom: 20px;
}

.audience-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.audience-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Enhanced How It Works */
.how-it-works .step {
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 4px solid var(--bg-card);
}

/* Enhanced Testimonials */
.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-author {
    margin-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: #fff;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 14px;
}

/* Enhanced CTA */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-cta.secondary {
    background: transparent;
    border: 2px solid var(--brand-2);
    color: var(--brand-2);
}

.btn-cta.secondary:hover {
    background: var(--brand-2);
    color: #fff;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Enhanced Footer */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-2);
    color: #fff;
    transform: translateY(-3px);
}

.footer-legal {
    margin-top: 10px;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dashboard-features {
        grid-template-columns: 1fr;
    }
    
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}