:root {
    --voneo-neon: #ccff00;
    --voneo-neon-dark: #bce600;
    --voneo-dark: #121212;
    --voneo-text: #333333;
    --voneo-muted: #6f7682;
    --voneo-gray: #f5f6f8;
    --voneo-border: #eceef1;
}

* {
    letter-spacing: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--voneo-text);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

body.admin-toolbar-active {
    padding-top: 42px;
}

a {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-neon {
    background-color: var(--voneo-neon);
    color: var(--voneo-dark);
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 28px;
    border: none;
}

.btn-neon:hover,
.btn-neon:focus {
    background-color: var(--voneo-neon-dark);
    color: var(--voneo-dark);
    transform: translateY(-2px);
}

.topbar {
    background-color: var(--voneo-dark);
    padding: 8px 0;
    font-size: 13px;
}

.topbar .social-icons a,
.topbar-link {
    color: #ffffff;
    margin-right: 18px;
    text-decoration: none;
    opacity: .82;
}

.topbar .social-icons a:hover,
.topbar-link:hover {
    opacity: 1;
    color: var(--voneo-neon);
}

.topbar-btn {
    background-color: var(--voneo-neon);
    color: var(--voneo-dark);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, .98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(18, 18, 18, .04);
}

.navbar-brand {
    font-weight: 800;
    font-size: 26px;
    color: var(--voneo-dark);
}

.site-logo {
    width: auto;
    height: 38px;
    max-width: 170px;
    object-fit: contain;
}

.site-logo-footer {
    height: 42px;
}

.site-logo-admin {
    height: 34px;
    max-width: 120px;
}

.nav-link {
    font-weight: 700;
    color: var(--voneo-dark) !important;
    margin: 0 12px;
    font-size: 15px;
}

.nav-link:hover {
    color: #555 !important;
}

.nav-panel-btn,
.mobile-outline-btn {
    border-radius: 12px;
    border-width: 2px;
    font-weight: 800;
}

.custom-dropdown-menu {
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    padding: 24px;
    width: 320px;
    margin-top: 20px;
    border-top: 3px solid var(--voneo-neon) !important;
}

.custom-dropdown-header {
    font-weight: 800;
    font-size: 16px;
    color: var(--voneo-dark);
    margin-bottom: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.custom-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--voneo-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.custom-dropdown-item:hover {
    color: var(--voneo-dark);
    padding-left: 5px;
}

.offcanvas {
    border-left: none;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .1);
}

.offcanvas-title {
    font-weight: 800;
    font-size: 24px;
}

.mobile-menu-list {
    margin-top: 20px;
}

.mobile-menu-list > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-list > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: var(--voneo-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.mobile-arc-banner {
    position: relative;
    text-align: center;
    padding: 60px 20px 20px;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.arc-shape {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 120px;
    background: linear-gradient(180deg, rgba(204, 255, 0, .2) 0%, rgba(204, 255, 0, 0) 100%);
    border-radius: 50%;
    border-top: 4px solid var(--voneo-neon);
    z-index: 0;
}

.mobile-arc-banner p,
.mobile-arc-banner a {
    position: relative;
    z-index: 1;
}

.hero-section {
    padding: 105px 0 78px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--voneo-dark);
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-highlight {
    background: var(--voneo-neon);
    padding: 0 10px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #606772;
    max-width: 660px;
    line-height: 1.65;
}

.hero-visual {
    min-height: 420px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(18, 18, 18, .86), rgba(18, 18, 18, .68)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80') center/cover;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 34px;
}

.hero-metric {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(8px);
}

.hero-metric strong {
    color: var(--voneo-neon);
    display: block;
    font-size: 26px;
}

.hero-service-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-self: stretch;
}

.hero-service-panel-title {
    grid-column: 1 / -1;
    color: var(--voneo-neon);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-service-pill {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 12px 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-service-pill:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .2);
    border-color: rgba(204, 255, 0, .72);
}

.hero-service-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--voneo-neon);
    color: var(--voneo-dark);
    font-size: 18px;
}

.hero-service-copy {
    min-width: 0;
}

.hero-service-copy strong,
.hero-service-copy small {
    display: block;
}

.hero-service-copy strong {
    font-size: 15px;
    font-weight: 800;
}

.hero-service-copy small {
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    line-height: 1.35;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 42px 0;
    background: #ffffff;
    border-block: 1px solid #f0f0f0;
}

.logo-marquee {
    padding: 44px 0;
}

.logo-marquee-row {
    overflow: hidden;
    padding: 0 0 28px;
}

.logo-marquee-row:last-child {
    padding-bottom: 0;
}

.logo-marquee-track {
    display: inline-flex;
    gap: 24px;
    min-width: max-content;
    animation: logoMarquee 38s linear infinite;
}

.logo-marquee-row-reverse .logo-marquee-track {
    animation-name: logoMarqueeReverse;
}

.logo-marquee-item {
    width: clamp(190px, 18vw, 290px);
    height: 104px;
    border: 1px solid var(--voneo-border);
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 34px;
    flex: 0 0 auto;
}

.logo-marquee-item img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.logo-marquee-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.03);
}

@keyframes logoMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes logoMarqueeReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 52px;
    margin: 0 30px;
    border: 1px solid var(--voneo-border);
    border-radius: 16px;
    color: #8a919c;
    font-weight: 800;
    background: #fff;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-pad {
    padding: 88px 0;
}

.section-eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 12px;
    border-radius: 99px;
    background: var(--voneo-gray);
    color: var(--voneo-dark);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title {
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin-bottom: 20px;
    color: var(--voneo-dark);
}

.section-lead {
    color: var(--voneo-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card,
.product-card,
.blog-card,
.reference-card,
.package-card {
    border: 1px solid var(--voneo-border);
    border-radius: 18px;
    background: #ffffff;
    height: 100%;
    transition: all .25s ease;
}

.panel-card {
    border: 1px solid var(--voneo-border);
    border-radius: 18px;
    background: #ffffff;
    transition: all .25s ease;
}

.service-card,
.product-card,
.reference-card,
.package-card {
    padding: 34px 28px;
}

.service-card:hover,
.product-card:hover,
.blog-card:hover,
.reference-card:hover,
.package-card:hover {
    box-shadow: 0 20px 44px rgba(0, 0, 0, .055);
    transform: translateY(-5px);
    border-color: transparent;
}

.service-icon,
.product-icon {
    width: 70px;
    height: 70px;
    background-color: var(--voneo-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--voneo-dark);
    margin-bottom: 24px;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--voneo-dark);
}

.product-card ul,
.package-card ul {
    padding-left: 0;
    list-style: none;
    color: var(--voneo-muted);
}

.product-card li,
.package-card li {
    margin-bottom: 9px;
}

.product-card li::before,
.package-card li::before {
    content: "✓";
    color: var(--voneo-dark);
    background: var(--voneo-neon);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    margin-right: 9px;
}

.about-img {
    min-height: 440px;
    object-fit: cover;
    width: 100%;
    border-radius: 24px;
}

.why-band {
    background: var(--voneo-dark);
    color: #fff;
}

.why-band .section-lead,
.why-band p {
    color: rgba(255, 255, 255, .72);
}

.why-item {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 22px;
}

.why-item i {
    color: var(--voneo-neon);
}

.blog-card {
    overflow: hidden;
}

.blog-img-large,
.blog-img-small {
    background: var(--voneo-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--voneo-neon);
}

.blog-img-large {
    height: 270px;
    font-size: 40px;
}

.blog-img-small {
    width: 160px;
    min-width: 160px;
    font-size: 30px;
}

.blog-badge {
    background-color: var(--voneo-gray);
    color: var(--voneo-dark);
    font-weight: 800;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 6px;
}

.cta-section {
    padding: 84px 0;
    background-color: #ffffff;
}

.cta-box {
    background-color: var(--voneo-dark);
    border-radius: 24px;
    padding: 58px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.cta-circle {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--voneo-neon) 0%, rgba(204, 255, 0, 0) 60%);
    opacity: .16;
    z-index: 0;
    border-radius: 50%;
}

.page-hero {
    padding: 78px 0 48px;
    background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
    border-bottom: 1px solid var(--voneo-border);
}

.panel-shell {
    background: #f6f7f9;
    min-height: 100vh;
}

@media (min-width: 1200px) {
    .panel-shell {
        background: linear-gradient(90deg, var(--voneo-dark) 0, var(--voneo-dark) 16.6667%, #f6f7f9 16.6667%, #f6f7f9 100%);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .panel-shell {
        background: linear-gradient(90deg, var(--voneo-dark) 0, var(--voneo-dark) 25%, #f6f7f9 25%, #f6f7f9 100%);
    }
}

.panel-shell > .container-fluid > .row {
    align-items: stretch;
    min-height: 100vh;
}

.panel-sidebar {
    background: var(--voneo-dark);
    min-height: auto;
    color: #fff;
    padding: 24px;
}

.panel-sidebar a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 5px;
    font-weight: 700;
}

.panel-sidebar a:hover,
.panel-sidebar a.active {
    background: rgba(204, 255, 0, .14);
    color: #fff;
}

.admin-accordion-menu {
    display: block;
}

.admin-menu-section {
    margin-bottom: 8px;
}

.admin-menu-toggle {
    width: 100%;
    border: 0;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .88);
    border-radius: 12px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
}

.admin-menu-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-menu-toggle .fa-chevron-down {
    transition: transform .2s ease;
}

.admin-menu-toggle:not(.collapsed) .fa-chevron-down {
    transform: rotate(180deg);
}

.admin-menu-links {
    padding: 6px 0 2px 10px;
}

.admin-menu-links a {
    font-size: 14px;
    padding: 10px 12px;
}

.panel-main {
    padding: 30px;
    min-width: 0;
}

.panel-card {
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .035);
}

.admin-editor-stack {
    display: grid;
    gap: 24px;
}

.admin-editor-stack > .row {
    margin: 0;
}

.admin-editor-stack form.row > [class*="col-md-"],
.admin-editor-stack form.row > [class*="col-lg-"] {
    width: 100%;
    flex: 0 0 100%;
}

.rich-editor-source {
    display: none !important;
}

.rich-editor {
    border: 1px solid var(--voneo-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.rich-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
    background: #f7f8fa;
    border-bottom: 1px solid var(--voneo-border);
}

.rich-editor-toolbar button {
    width: 36px;
    height: 34px;
    border: 1px solid var(--voneo-border);
    border-radius: 8px;
    background: #fff;
    color: var(--voneo-dark);
    font-weight: 800;
}

.rich-editor-toolbar button:hover {
    border-color: var(--voneo-dark);
}

.rich-editor-surface {
    padding: 16px;
    outline: none;
    line-height: 1.7;
}

.rich-editor-surface h2,
.rich-editor-surface h3,
.rich-editor-surface h4 {
    font-weight: 800;
    margin: 18px 0 10px;
}

.settings-brand-preview {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    border: 1px solid var(--voneo-border);
    border-radius: 8px;
    padding: 8px;
}

.settings-favicon-preview {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border: 1px solid var(--voneo-border);
    border-radius: 8px;
    padding: 6px;
}

.dashboard-metric span {
    color: var(--voneo-muted);
    font-weight: 800;
}

.dashboard-metric h2 {
    margin: 8px 0 2px;
    font-weight: 800;
}

.dashboard-metric small {
    color: var(--voneo-muted);
}

.admin-public-toolbar {
    position: fixed;
    top: 0;
    inset-inline: 0;
    height: 42px;
    z-index: 2000;
    background: #111;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
}

.admin-public-toolbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    overflow-x: auto;
}

.admin-public-toolbar a,
.admin-public-toolbar button {
    color: rgba(255, 255, 255, .86);
    border: 0;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    white-space: nowrap;
}

.admin-public-toolbar a:hover,
.admin-public-toolbar button:hover {
    color: var(--voneo-neon);
}

.admin-public-brand {
    color: #fff !important;
}

.live-editor-floating {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    background: var(--voneo-neon);
    color: var(--voneo-dark);
    z-index: 1900;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.live-editor-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    z-index: 1990;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.live-editor-panel {
    position: fixed;
    top: 42px;
    right: 0;
    bottom: 0;
    width: min(430px, 100vw);
    background: #fff;
    z-index: 1995;
    transform: translateX(100%);
    transition: transform .22s ease;
    box-shadow: -18px 0 45px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
}

.live-editor-open .live-editor-panel {
    transform: translateX(0);
}

.live-editor-open .live-editor-backdrop {
    opacity: 1;
    visibility: visible;
}

.live-editor-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--voneo-border);
}

.live-editor-head small {
    display: block;
    color: var(--voneo-muted);
}

.live-editor-head button {
    border: 0;
    background: #f1f2f4;
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.live-editor-body {
    padding: 18px;
    overflow-y: auto;
}

.live-editor-body section {
    border-bottom: 1px solid var(--voneo-border);
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.live-editor-body h6 {
    font-weight: 800;
}

.live-editor-alert {
    min-height: 0;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
}

.live-editor-alert.is-ok {
    color: #198754;
}

.live-editor-alert.is-error {
    color: #dc3545;
}

.live-editor-links {
    display: grid;
    gap: 8px;
}

.live-editor-links a {
    color: var(--voneo-dark);
    font-weight: 800;
    text-decoration: none;
    border: 1px solid var(--voneo-border);
    border-radius: 10px;
    padding: 10px 12px;
}

[data-live-edit] {
    transition: outline-color .2s ease, background-color .2s ease;
}

.live-inline-active [data-live-edit] {
    outline: 2px dashed rgba(18, 18, 18, .28);
    outline-offset: 4px;
    background: rgba(204, 255, 0, .16);
    cursor: text;
}

.live-inline-active [data-live-edit]:focus {
    outline-color: var(--voneo-neon);
    background: rgba(204, 255, 0, .28);
}

.rich-content > :last-child {
    margin-bottom: 0;
}

.rich-content ul,
.rich-content ol {
    padding-left: 1.3rem;
}

.rich-content blockquote {
    border-left: 4px solid var(--voneo-neon);
    padding-left: 16px;
    color: var(--voneo-muted);
}

.admin-academy {
    align-items: flex-start !important;
}

.admin-academy .panel-card {
    height: auto !important;
    min-height: 0;
}

.admin-academy textarea {
    min-height: 92px;
}

.admin-academy .table-responsive {
    width: 100%;
}

.admin-academy .form-check {
    min-height: 24px;
}

.reference-logo {
    height: 46px;
    max-width: 150px;
    object-fit: contain;
}

.reference-logo-large {
    height: 54px;
    max-width: 170px;
}

.reference-detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: #fff;
}

.academy-detail iframe {
    border: 0;
}

.academy-detail .row {
    align-items: flex-start;
}

.lesson-card {
    overflow: hidden;
}

.lesson-head {
    align-items: flex-start;
}

.course-sidebar {
    position: sticky;
    top: 108px;
}

.table {
    vertical-align: middle;
}

.form-control,
.form-select {
    border-radius: 12px;
    border-color: #e3e6ea;
    padding: 12px 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--voneo-dark);
    box-shadow: 0 0 0 .2rem rgba(204, 255, 0, .25);
}

.voneo-flash {
    width: min(560px, calc(100% - 24px));
}

footer {
    background-color: var(--voneo-dark);
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-desc {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.65;
    opacity: .88;
}

.footer-title {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links a {
    color: #ffffff;
    opacity: .72;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--voneo-neon);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #ffffff;
    font-size: 13px;
    opacity: .86;
}

.whatsapp-fixed {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1070;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #202126;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .12);
}

.call-fixed {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 1070;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--voneo-dark);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
    border: 1px solid var(--voneo-border);
}

.whatsapp-fixed:hover {
    color: #fff;
    transform: translateY(-2px);
}

.call-fixed:hover {
    color: var(--voneo-dark);
    transform: translateY(-2px);
}

.whatsapp-fixed-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(204, 255, 0, .16);
    color: var(--voneo-neon);
    font-size: 21px;
}

.call-fixed-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--voneo-neon);
    color: var(--voneo-dark);
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 78px 0 58px;
        text-align: center;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

    .hero-visual {
        min-height: 320px;
        margin-top: 36px;
    }

    .hero-service-panel {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .section-pad {
        padding: 64px 0;
    }

    .panel-sidebar {
        min-height: auto;
        padding: 18px;
    }

    .panel-sidebar nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .panel-sidebar nav.admin-accordion-menu {
        display: block;
    }

    .panel-sidebar a {
        margin-bottom: 0;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .cta-box {
        padding: 36px 24px;
    }

    .blog-img-small {
        width: 100%;
        min-width: 100%;
        min-height: 140px;
    }

    .panel-main {
        padding: 18px;
    }

    .logo-marquee-item {
        width: 190px;
        height: 86px;
        padding: 16px 24px;
    }

    .logo-marquee-track {
        gap: 16px;
        animation-duration: 26s;
    }

    .hero-service-pill {
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 62px;
        text-align: left;
    }

    .whatsapp-fixed {
        right: 14px;
        bottom: 14px;
        min-height: 52px;
        padding: 9px 15px;
    }

    .call-fixed {
        right: 14px;
        bottom: 80px;
        min-height: 50px;
        padding: 9px 15px;
    }

    .panel-sidebar nav {
        grid-template-columns: 1fr;
    }

    .admin-academy .panel-card {
        padding: 18px;
    }

    .lesson-head {
        flex-direction: column;
    }

    .course-sidebar {
        position: static;
    }
}
