/* ==========================================================================
   Voxe Design System - B2B Premium Consultoria de Growth (Style Guide 2026)
   ========================================================================== */

/* Variables */
:root {
    --bg-primary: #08111a;
    --bg-secondary: #08111a;
    --bg-card: #111d2c;
    --bg-card-hover: #162537;
    
    --accent-cyan: #00d4c8;
    --accent-cyan-dark: #00b5ab;
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 212, 200, 0.25);
    
    --font-family: 'Archivo', sans-serif;
    --font-family-title: 'Archivo Black', sans-serif;
    
    --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    
    --container-max-width: 1200px;
    --header-height: 80px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-title);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

strong {
    font-weight: 700;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Utility Layout Classes */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    max-width: var(--container-max-width);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.py-large {
    padding-top: 90px;
    padding-bottom: 90px;
}

.py-medium {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-md { gap: 20px; }

/* Custom Text Gradient */
.texto-degrade-voxe {
    background: linear-gradient(45deg, var(--accent-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Section Styling */
.section-header {
    max-width: 700px;
    margin-bottom: 50px;
}
.section-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem;
    color: var(--text-primary);
}
.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .section-title { font-size: 2.8rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-title);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.btn-primary {
    background-color: var(--accent-cyan);
    color: #ffffff;
}
.btn-primary:hover {
    background-color: var(--accent-cyan-dark);
    transform: translateY(-1px);
}
.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}
.btn-secondary:hover {
    border-color: var(--accent-cyan);
    background-color: rgba(0, 212, 200, 0.05);
}
.btn-full {
    width: 100%;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 38px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 212, 200, 0.5));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: var(--font-family-title);
    letter-spacing: 0.08em;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 212, 200, 0.15);
    transition: text-shadow var(--transition-smooth);
}
.logo-wrapper:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 212, 200, 0.85));
}
.logo-wrapper:hover .logo-text {
    text-shadow: 0 0 15px rgba(0, 212, 200, 0.4);
}
.nav-menu {
    display: none;
    gap: 24px;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.nav-link:hover {
    color: var(--text-primary);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (min-width: 768px) {
    .nav-menu { display: flex; }
}

/* Hero Section (2-Column Grid + Bottom CTA) */
.hero-section {
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: var(--bg-primary);
    overflow: hidden; /* Evita vazamento no zoom da imagem */
}
@media (max-width: 991px) {
    .hero-section {
        padding-top: 10px !important; /* Move a imagem bem pra cima no celular */
        padding-bottom: 30px;
    }
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 991px) {
    .hero-grid {
        display: flex;
        flex-direction: column-reverse; /* Foto no topo no celular */
        gap: 20px; /* Reduzido de 32px para 20px para economizar altura */
    }
}
@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 46% 54%;
        gap: 48px;
        align-items: center;
    }
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 24px;
}
@media (max-width: 991px) {
    .hero-content {
        padding: 0;
    }
}
.tag-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(0, 212, 200, 0.08);
    border: 1px solid rgba(0, 212, 200, 0.15);
    border-radius: 20px;
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
}
.hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 900;
    text-align: left;
}
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: left;
}
@media (min-width: 992px) {
    .hero-title { font-size: 3.4rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* Right column: Banner Image with blending background */
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media (max-width: 991px) {
    .hero-visual {
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
        margin-bottom: -32px; /* Puxa o título e texto mais para cima */
        flex-shrink: 0; /* Prevents flexbox container from shrinking the width of the banner */
    }
}
.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 991px) {
    .hero-banner-img {
        transform: scale(1.1); /* Zoom levemente menor para salvar altura */
        transform-origin: center center;
    }
}
@media (min-width: 992px) {
    .hero-banner-img {
        transform: scale(1.18); /* Zoom no PC sem cortar */
        transform-origin: center center;
        transition: transform 0.3s ease;
    }
}

/* CTA Group inside hero content column */
.hero-cta-group {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.hero-cta-group .btn {
    width: 100%;
    max-width: 380px;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 212, 200, 0.3);
}
.hero-hint {
    margin-top: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
    max-width: 380px;
    text-align: center;
}
@media (max-width: 991px) {
    .hero-cta-group {
        align-items: center;
        margin-top: 16px;
    }
    .hero-cta-group .btn {
        max-width: 100%;
    }
}

.step-num-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    color: #08111a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Early Adopter Banner */
.early-adopter-banner {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}
.early-adopter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.banner-icon {
    font-size: 1.25rem;
}
.banner-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

/* Seals Slider */
.seals-section {
    padding: 30px 0;
    background-color: var(--bg-primary);
    overflow: hidden;
    position: relative;
}
.seals-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.seals-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}
.seals-slider-wrapper {
    width: 100%;
    position: relative;
}
.seals-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}
@media (max-width: 991px) {
    .seals-track {
        gap: 40px;
    }
}
.seal-slide {
    display: flex;
    align-items: center;
}
.seal-img {
    height: 52px;
    width: auto;
    opacity: 0.65;
    transition: var(--transition-fast);
}
@media (max-width: 991px) {
    .seal-img {
        height: 44px;
    }
}
.seal-img:hover {
    opacity: 0.95;
}
.tecpet-logo {
    transform: scale(1.95); /* Aumenta o da tecpet que tem bordas transparentes internas */
    transform-origin: center center;
}
.seal-text-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.65;
}
@media (max-width: 991px) {
    .seal-text-logo {
        font-size: 1.15rem;
    }
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Problem Cards */
.problem-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}
.problem-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.card-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* VS Comparison Table */
.vs-container {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}
.vs-column {
    padding: 35px;
    background-color: var(--bg-card);
}
.vs-column.new-way {
    background-color: rgba(0, 212, 200, 0.015);
    border-top: 1px solid var(--border-color);
}
.vs-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.vs-title.text-cyan {
    color: var(--accent-cyan);
}
.vs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.vs-list li {
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.icon-bad {
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background-color: #ff6b6b;
    margin-top: 8px;
}
.icon-good {
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    margin-top: 8px;
}
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    padding: 10px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.vs-badge {
    font-size: 0.75rem;
    font-weight: 800;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .vs-container { grid-template-columns: 1fr auto 1fr; }
    .vs-column.new-way { border-top: none; border-left: none; }
    .vs-divider { border-top: none; border-bottom: none; border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color); width: 60px; }
}

/* Pilar Cards */
.pilar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.pilar-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.pilar-icon-wrapper {
    font-size: 2rem;
    margin-bottom: 20px;
}
.pilar-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.pilar-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.pilar-visual-box {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
}
.pilar-visual-img {
    width: 100%;
    display: block;
    height: auto;
}

/* Quem Atendemos Cards */
.atendemos-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
}
.atendemos-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.atendemos-icon-wrapper {
    font-size: 2rem;
    margin-bottom: 15px;
}
.atendemos-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.atendemos-card-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Calculator Container & Grid */
.calc-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    gap: 0;
}
.calc-inputs-panel {
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
}
.calc-outputs-panel {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.01);
}
@media (min-width: 768px) {
    .calc-inputs-panel { border-bottom: none; border-right: 1px solid var(--border-color); }
}

.calc-panel-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
}
.calc-input-group {
    margin-bottom: 30px;
}
.calc-input-group:last-child {
    margin-bottom: 0;
}
.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.calc-input-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.calc-val-display {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-cyan);
}
.calc-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-cyan);
    cursor: pointer;
    transition: transform 0.1s;
}
.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.calc-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}
.calc-ticks span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.calc-pills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}
.calc-pill {
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.calc-pill:hover {
    border-color: var(--border-hover);
}
.calc-pill.active {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background-color: rgba(0, 212, 200, 0.05);
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.output-panel-title {
    font-size: 1.25rem;
    font-weight: 800;
}
.output-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.2);
    background-color: rgba(255, 107, 107, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
}
.outputs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.output-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}
.output-box.highlight-neon {
    border-color: rgba(255, 107, 107, 0.3);
    background-color: rgba(255, 107, 107, 0.01);
}
.output-box-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 6px;
}
.output-box-value {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}
.output-box-value.text-red { color: #ff6b6b; }
.output-box-value.text-glow-red { color: #ff6b6b; }
.output-box-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.calc-cta-wrapper {
    margin-top: 25px;
}
.calc-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.4;
}

/* Plan Cards */
.plan-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}
.plan-card.recommended {
    border-color: var(--accent-cyan);
}
.plan-badge-ghost {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.recommended-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.plan-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 25px;
}
.plan-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 25px;
}
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
    margin-top: auto;
    flex-grow: 1;
}
.plan-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.feature-icon {
    color: var(--text-muted);
    font-weight: bold;
    flex-shrink: 0;
}
.feature-icon.text-cyan {
    color: var(--accent-cyan);
}
.plan-features li div strong {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}
.plan-features li div span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: block;
}

/* Socios Section */
.socio-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.socio-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}
.socio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.socio-content {
    padding: 35px;
}
.socio-badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.socio-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.socio-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .socio-card { flex-direction: row; }
    .socio-image-wrapper { width: 40%; height: auto; min-height: 350px; }
    .socio-content { width: 60%; padding: 40px; }
}

/* Diagnostic Form Section */
.diagnostic-container {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}
.progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 20%;
    background-color: var(--accent-cyan);
    border-radius: 3px;
    transition: width 0.3s ease;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.step-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 25px;
}
.radio-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}
.radio-option {
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.radio-option:hover {
    border-color: var(--border-hover);
    background-color: rgba(255, 255, 255, 0.01);
}
.radio-option.selected {
    border-color: var(--accent-cyan);
    background-color: rgba(0, 212, 200, 0.05);
}
.radio-option input[type="radio"] {
    display: none;
}
.radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.radio-option.selected .radio-circle {
    border-color: var(--accent-cyan);
}
.radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    display: none;
}
.radio-option.selected .radio-circle::after {
    display: block;
}
.option-text {
    font-size: 0.95rem;
    font-weight: 700;
}

.input-text-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.input-text-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.form-input-text {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}
.form-input-text:focus {
    border-color: var(--accent-cyan);
}

.form-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}
.faq-trigger {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}
.faq-trigger:hover {
    color: var(--accent-cyan);
}
.faq-icon-plus {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}
.faq-item.active .faq-icon-plus {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}
.faq-content p {
    padding: 0 28px 22px 28px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-link:hover {
    color: var(--text-primary);
}
.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-container { flex-direction: row; justify-content: space-between; }
    .footer-links { gap: 30px; }
}

/* ==========================================================================
   Diferenciais da Voxe Section
   ========================================================================== */
.diferenciais-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.diferencial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    transition: border-color var(--transition-fast), transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.diferencial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.diferencial-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    display: inline-block;
}
.diferencial-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.diferencial-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Utilities to prevent inline styling */
.mb-25 {
    margin-bottom: 25px;
}
.mb-35 {
    margin-bottom: 35px;
}
.d-none {
    display: none;
}

/* ==========================================================================
   Hero Form & Path Styles
   ========================================================================== */
.hero-form-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
}
.hero-form-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.3;
}
.form-input-select {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
    cursor: pointer;
}
.form-input-select:focus {
    border-color: var(--accent-cyan);
}
.path-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
    margin-bottom: 16px;
}
@media (max-width: 991px) {
    .tag-badge {
        margin-bottom: 10px;
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.15;
        margin-bottom: 8px;
    }
    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .path-steps {
        gap: 10px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
}
.path-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.path-step-icon {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.2;
}
.path-step-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.path-step-text strong {
    color: var(--text-primary);
}

/* ==========================================================================
   Modal Respondi overlay and content
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 17, 26, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active {
    display: flex;
}
.modal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 90%;
    max-width: 650px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.modal-overlay.active .modal-card {
    transform: translateY(0);
}
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1010;
    transition: var(--transition-fast);
}
.modal-close-btn:hover {
    color: var(--accent-cyan);
}
.modal-body {
    padding: 20px;
    padding-top: 40px;
    height: 620px;
}

/* ==========================================================================
   Value Stack Section
   ========================================================================== */
.value-stack-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .value-stack-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.value-stack-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.value-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}
.value-item-num {
    font-family: var(--font-family-title);
    font-size: 1.1rem;
    color: var(--text-muted);
}
.value-item-price {
    font-family: var(--font-family-title);
    font-size: 1.1rem;
    color: #ff4b4b;
    text-decoration: line-through;
    text-shadow: 0 0 8px rgba(255, 75, 75, 0.3);
}
.value-item-title {
    font-family: var(--font-family-title);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.value-item-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.value-stack-total-card {
    background-color: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
}
.total-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.total-price-slashed {
    font-family: var(--font-family-title);
    font-size: 2.2rem;
    color: #ff4b4b;
    text-decoration: line-through;
    text-shadow: 0 0 10px rgba(255, 75, 75, 0.4);
    margin-right: 15px;
}
.total-price-free {
    font-family: var(--font-family-title);
    font-size: 3.5rem;
    color: var(--accent-cyan);
    font-weight: 900;
}
.total-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 500px;
}

/* ==========================================================================
   Guarantee Section
   ========================================================================== */
.garantia-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    gap: 40px;
}
.garantia-seal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.garantia-badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px dashed var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateDashed 20s linear infinite;
    margin-bottom: 20px;
}
.garantia-badge-text {
    font-family: var(--font-family-title);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-align: center;
    line-height: 1.2;
}
.garantia-seal-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}
@keyframes rotateDashed {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   CPU Architecture Animation Styles
   ========================================================================== */
.cpu-animation-container {
    max-width: 500px;
    width: 100%;
    margin: 20px auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpu-svg {
    display: block;
    width: 100%;
    height: auto;
}

.cpu-architecture {
  offset-anchor: 10px 0px;
  animation: animation-path;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.75, -0.01, 0, 0.99);
}

.cpu-line-1 {
  offset-path: path("M 10 20 h 79.5 q 5 0 5 5 v 30");
  animation-duration: 5s;
  animation-delay: 1s;
}

.cpu-line-2 {
  offset-path: path("M 180 10 h -69.7 q -5 0 -5 5 v 30");
  animation-delay: 6s;
  animation-duration: 2s;
}

.cpu-line-3 {
  offset-path: path("M 130 20 v 21.8 q 0 5 -5 5 h -10");
  animation-delay: 4s;
  animation-duration: 6s;
}

.cpu-line-4 {
  offset-path: path("M 170 80 v -21.8 q 0 -5 -5 -5 h -50");
  animation-delay: 3s;
  animation-duration: 3s;
}

.cpu-line-5 {
  offset-path: path(
    "M 135 65 h 15 q 5 0 5 5 v 10 q 0 5 -5 5 h -39.8 q -5 0 -5 -5 v -20"
  );
  animation-delay: 9s;
  animation-duration: 4s;
}

.cpu-line-6 {
  offset-path: path("M 94.8 95 v -36");
  animation-delay: 3s;
  animation-duration: 7s;
}

.cpu-line-7 {
  offset-path: path(
    "M 88 88 v -15 q 0 -5 -5 -5 h -10 q -5 0 -5 -5 v -5 q 0 -5 5 -5 h 14"
  );
  animation-delay: 4s;
  animation-duration: 4s;
}

.cpu-line-8 {
  offset-path: path("M 30 30 h 25 q 5 0 5 5 v 6.5 q 0 5 5 5 h 20");
  animation-delay: 3s;
  animation-duration: 3s;
}

@keyframes animation-path {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

/* ==========================================================================
   CPU Results Stats Bar Styles
   ========================================================================== */
.cpu-results-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 20px auto 50px auto;
    max-width: var(--container-max-width);
    width: 100%;
}

@media (min-width: 768px) {
    .cpu-results-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.cpu-result-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cpu-result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.cpu-result-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.cpu-result-item:hover::before {
    opacity: 1;
}

.cpu-result-number-row {
    display: flex;
    align-items: baseline;
    font-family: var(--font-family-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.cpu-result-number,
.cpu-result-prefix,
.cpu-result-suffix {
    background: linear-gradient(45deg, var(--accent-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cpu-result-label {
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cpu-result-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
/* ==========================================================================
   Problem Copy Stack Styles
   ========================================================================== */
.problem-copy-stack {
    max-width: 900px;
    margin: 0 auto;
}
.problem-stack-title {
    font-size: 1.8rem;
    font-weight: 800;
    max-width: 700px;
    line-height: 1.25;
    margin-bottom: 15px;
}
.problem-stack-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.card-problem-title {
    font-family: var(--font-family-title);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.problem-card.border-cyan-subtle {
    border-color: rgba(0, 212, 200, 0.12);
}
.problem-card.border-cyan-subtle:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 20px rgba(0, 212, 200, 0.05);
}
.problem-stack-conclusion {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 750px;
    line-height: 1.6;
    margin-top: 30px;
    margin-bottom: 50px;
}
.problem-stack-conclusion strong {
    color: var(--accent-cyan);
}
.voxe-pillars-title {
    font-size: 2rem;
    font-weight: 800;
    max-width: 750px;
    line-height: 1.25;
    margin-bottom: 15px;
}
.voxe-pillars-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 750px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.mt-medium {
    margin-top: 50px;
}

/* ==========================================================================
   Mobile Tight Layout Adjustments (Requested for Better Proportions)
   ========================================================================== */
@media (max-width: 991px) {
    /* Reduce vertical padding of sections to make layouts compact */
    .py-large {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .py-medium {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    /* Tighten section headers margins and typography sizes */
    .section-header {
        margin-bottom: 24px !important;
    }

    .section-subtitle {
        margin-bottom: 6px !important;
    }

    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 12px !important;
    }

    .section-description {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
    }

    /* Bring CPU animation closer to the description */
    .cpu-animation-container {
        margin: 10px auto 25px auto !important;
    }

    /* Tighten CPU Stats bar on mobile */
    .cpu-results-bar {
        margin: 10px auto 30px auto !important;
        gap: 16px !important;
    }

    .cpu-result-item {
        padding: 20px !important;
    }

    .cpu-result-number-row {
        font-size: 2.4rem !important;
    }

    /* Tighten problem copy stack on mobile */
    .problem-stack-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    .problem-stack-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }

    .card-problem-title {
        font-size: 1.05rem !important;
    }

    .problem-stack-conclusion {
        font-size: 0.92rem !important;
        margin-top: 15px !important;
        margin-bottom: 35px !important;
    }

    .voxe-pillars-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .voxe-pillars-desc {
        font-size: 0.92rem !important;
    }

    .mt-medium {
        margin-top: 30px !important;
    }

    /* Tighten mockups row on mobile */
    .problem-mockups-row {
        margin: 20px auto !important;
        gap: 16px !important;
    }
    .mockup-item {
        padding: 10px !important;
    }
    .mockup-tag {
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
    }
}

/* ==========================================================================
   Problem Mockups Row Styles
   ========================================================================== */
.problem-mockups-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px auto;
    max-width: 900px;
    width: 100%;
}

@media (min-width: 768px) {
    .problem-mockups-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.mockup-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.mockup-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.mockup-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 6px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* ==========================================================================
   Partners Section Slider & Elite Mentors Showcase
   ========================================================================== */

.partners-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    width: 100%;
}

.partners-slider {
    position: relative;
    width: 100%;
}

.partner-slide {
    display: none;
    width: 100%;
    animation: fadeInSlide 0.5s ease-in-out forwards;
}

.partner-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .partner-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 50px;
    }
}

.partner-image-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.partner-img-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background-color: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.partner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.partner-img-frame:hover .partner-img {
    transform: scale(1.03);
}

.partner-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 200, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.partner-info-col {
    display: flex;
    flex-direction: column;
}

.partner-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-cyan);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.partner-name {
    font-family: var(--font-family-title);
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 6px 0;
    background: linear-gradient(45deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-role {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.badge-item {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.badge-item.link-badge {
    background-color: rgba(0, 212, 200, 0.04);
    border-color: rgba(0, 212, 200, 0.15);
    color: var(--accent-cyan);
}

.badge-item.link-badge:hover {
    background-color: var(--accent-cyan);
    color: #000000;
    box-shadow: 0 0 12px rgba(0, 212, 200, 0.4);
    border-color: var(--accent-cyan);
}

/* Trajectory Section inside Partner Slide */
.partner-trajectory {
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trajectory-heading {
    font-family: var(--font-family-title);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trajectory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trajectory-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trajectory-list li.mentor-highlight-item {
    flex-direction: column;
    gap: 12px;
}

.traj-icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 2px;
    display: inline-block;
}

.trajectory-list p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.trajectory-list p strong {
    color: var(--text-primary);
}

.traj-desc-container {
    width: 100%;
}

/* ==========================================================================
   Mentor Elite Showcase Cards
   ========================================================================== */
.mentors-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
    width: 100%;
}

.mentor-showcase-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 22px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mentor-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.mentor-showcase-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px) scale(1.005);
}

.mentor-badge-vip {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

/* Mentor card colors & borders */
.mentor-showcase-card:nth-child(1) {
    border-left: 3px solid var(--accent-cyan);
}
.mentor-showcase-card:nth-child(1) .mentor-badge-vip {
    background: rgba(0, 212, 200, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 200, 0.25);
}
.mentor-showcase-card:nth-child(1):hover {
    border-color: rgba(0, 212, 200, 0.4);
    box-shadow: 0 5px 20px rgba(0, 212, 200, 0.06);
}

.mentor-showcase-card:nth-child(2) {
    border-left: 3px solid #ff007f;
}
.mentor-showcase-card:nth-child(2) .mentor-badge-vip {
    background: rgba(255, 0, 127, 0.15);
    color: #ff007f;
    border: 1px solid rgba(255, 0, 127, 0.25);
}
.mentor-showcase-card:nth-child(2):hover {
    border-color: rgba(255, 0, 127, 0.4);
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.06);
}

.mentor-showcase-card:nth-child(3) {
    border-left: 3px solid #ffcc00;
}
.mentor-showcase-card:nth-child(3) .mentor-badge-vip {
    background: rgba(255, 204, 0, 0.15);
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.25);
}
.mentor-showcase-card:nth-child(3):hover {
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.06);
}

.mentor-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.mentor-avatar-circle {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentor-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.avatar-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.35;
    z-index: 0;
}

.avatar-bg-glow.cyan {
    background-color: var(--accent-cyan);
}
.avatar-bg-glow.magenta {
    background-color: #ff007f;
}
.avatar-bg-glow.yellow {
    background-color: #ffcc00;
}

.mentor-name-meta {
    display: flex;
    flex-direction: column;
}

.mentor-name-meta h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: var(--text-primary);
}

.mentor-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
}

.mentor-card-body {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary) !important;
    margin: 0 0 16px 0 !important;
    position: relative;
    z-index: 1;
}

.mentor-wiki-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.mentor-wiki-link:hover {
    color: var(--text-primary);
}

.mentor-showcase-card:nth-child(2) .mentor-wiki-link {
    color: #ff007f;
}
.mentor-showcase-card:nth-child(2) .mentor-wiki-link:hover {
    color: var(--text-primary);
}

.mentor-showcase-card:nth-child(3) .mentor-wiki-link {
    color: #ffcc00;
}
.mentor-showcase-card:nth-child(3) .mentor-wiki-link:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   Vithor Metrics & Testimonials Styles
   ========================================================================== */
.partner-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.partner-metric-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.partner-metric-val {
    font-family: var(--font-family-title);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 200, 0.25);
    margin-bottom: 4px;
}

.partner-metric-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.partner-testimonials {
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.testimonials-heading {
    font-family: var(--font-family-title);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partner-testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.quote-mark {
    font-family: var(--font-family-title);
    font-size: 2.5rem;
    color: rgba(0, 212, 200, 0.15);
    position: absolute;
    top: 5px;
    left: 15px;
    line-height: 1;
}

.quote-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 10px 0;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
}

/* ==========================================================================
   Slider Navigation Controls (Arrows & Dots)
   ========================================================================== */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    position: relative;
    z-index: 10;
}

.slider-arrow {
    background: none;
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 212, 200, 0.2);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    width: 24px;
    border-radius: 4px;
}

/* Responsive Styles for Mobile */
@media (max-width: 576px) {
    .mentor-badge-vip {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 12px;
        align-self: flex-start;
    }
    
    .mentor-showcase-card {
        padding: 16px;
    }
    
    .mentor-header-info {
        margin-bottom: 12px;
    }
}

/* Mobile Menu & Navigation Styling */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(8, 17, 26, 0.98);
        backdrop-filter: blur(10px);
        border-left: 1px solid var(--border-color);
        padding: 100px 40px 40px;
        gap: 32px;
        transition: right 0.3s ease;
        z-index: 99;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        font-size: 1.1rem;
    }
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

