*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #163047;
    background: #f5f9fc;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.vx-container {
    width: min(1700px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.vx-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #d9e6ef;
}

.vx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 60px;
}

.vx-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.vx-brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.vx-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.vx-brand-text strong {
    font-size: 22px;
    font-weight: 800;
    color: #0c2740;
}

.vx-brand-text span {
    font-size: 13px;
    color: #6b8497;
}

.vx-main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.vx-main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #35556b;
    transition: color 0.2s ease;
}

.vx-main-nav a:hover {
    color: #0e75b5;
}

/* =========================
   BUTTONS
========================= */

.vx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.vx-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0d89ff 0%, #18d0d0 100%);
    box-shadow: 0 14px 30px rgba(0, 153, 255, 0.26);
}

.vx-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.34);
}

.vx-btn-secondary {
    color: #e2f5ff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(138, 215, 255, 0.18);
    backdrop-filter: blur(10px);
}

.vx-btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(138, 215, 255, 0.28);
}

.vx-btn-light {
    color: #0f4f77;
    background: #ffffff;
}

.vx-btn-light:hover {
    background: #eef7fc;
}

.vx-btn-full {
    width: 100%;
}

/* =========================
   HERO
========================= */

.vx-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 72px;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 149, 255, 0.16), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(0, 214, 255, 0.13), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(0, 98, 255, 0.10), transparent 30%),
        linear-gradient(135deg, #08111d 0%, #0b1728 38%, #0e2035 68%, #0a1324 100%);
    isolation: isolate;
}

.vx-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
}

.vx-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.vx-hero-glow-1 {
    width: 360px;
    height: 360px;
    left: -80px;
    top: 40px;
    background: rgba(0, 157, 255, 0.18);
}

.vx-hero-glow-2 {
    width: 420px;
    height: 420px;
    right: -80px;
    top: 20px;
    background: rgba(0, 230, 255, 0.14);
}

.vx-hero-grid-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.vx-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.vx-hero-content {
    max-width: 800px;
}

.vx-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(146, 220, 255, 0.18);
    color: #cceeff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    margin-bottom: 22px;
}

.vx-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(32px, 2vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.vx-hero-text {
    margin: 0 0 28px;
    max-width: 730px;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(223, 236, 247, 0.88);
}

.vx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.vx-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vx-hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(137, 212, 255, 0.16);
    color: rgba(232, 242, 250, 0.92);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.vx-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vx-visual-card {
    width: 100%;
    max-width: 520px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(147, 215, 255, 0.16);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    overflow: hidden;
}
.vx-visual-card {
    transform-style: preserve-3d;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vx-visual-card-top {
    display: flex;
    gap: 8px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

 

.vx-visual-card-body {
    padding: 30px 28px 34px;
}

.vx-visual-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    margin-bottom: 24px;
}

.vx-visual-logo-wrap {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.vx-visual-logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(120, 211, 255, 0.18);
    box-shadow: 0 0 30px rgba(0, 174, 255, 0.08);
}

.vx-visual-logo-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.vx-visual-logo-ring-inner {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(87, 186, 255, 0.20);
    box-shadow:
        0 0 0 1px rgba(87, 186, 255, 0.05) inset,
        0 0 30px rgba(0, 153, 255, 0.10);
}

.vx-visual-logo-ring-outer {
    width: 320px;
    height: 320px;
    border: 1px dashed rgb(87 186 255 / 48%);
    box-shadow:
        0 0 0 1px rgba(87, 186, 255, 0.05) inset, 0 0 30px rgba(0, 153, 255, 0.10);
    animation: vxSpin 24s linear infinite;
}

.vx-hero-logo {
    position: relative;
    z-index: 2;
    width: 200px;
    max-width: 70%;
    filter: drop-shadow(0 0 26px rgba(0, 180, 255, 0.20));
}

.vx-visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vx-visual-stat {
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(149, 216, 255, 0.12);
    text-align: center;
}

.vx-visual-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    color: #ffffff;
}

.vx-visual-stat span {
    font-size: 13px;
    color: rgba(219, 234, 244, 0.82);
}

/* =========================
   CONTENT SECTIONS
========================= */

.vx-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(180deg, #f3f8fc 0%, #edf4f9 100%);
}

.vx-section:first-of-type {
    margin-top: -10px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.vx-section-alt {
    background: #eef6fb;
}

.vx-section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.vx-section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    color: #0c2740;
}

.vx-section-head p {
    margin: 0;
    font-size: 17px;
    color: #537082;
}

.vx-badge,
.vx-section-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #e7f6fc;
    color: #0c7aaa;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* =========================
   FEATURE CARDS
========================= */

.vx-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.vx-feature-card {
    position: relative;
    padding: 30px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(185, 210, 226, 0.75);
    box-shadow: 0 18px 40px rgba(17, 59, 87, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.vx-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.06), rgba(0, 200, 255, 0.02));
    pointer-events: none;
}

.vx-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(17, 59, 87, 0.14);
    border-color: rgba(80, 170, 220, 0.55);
}

.vx-feature-card h3 {
    position: relative;
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.3;
    color: #0e2b43;
}

.vx-feature-card p {
    position: relative;
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #5a7485;
}

.vx-feature-card p:last-child {
    margin-bottom: 0;
}

.vx-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0e75b5, #10a4d9);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* =========================
   OTHER CONTENT BLOCKS
========================= */

.vx-strip {
    padding: 18px 0;
    background: #0f2942;
}

.vx-strip p {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.vx-function-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.vx-function-list {
    display: grid;
    gap: 18px;
}

.vx-function-item {
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #d7e5ee;
    box-shadow: 0 14px 32px rgba(18, 58, 84, 0.07);
}

.vx-function-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #0e2d45;
}

.vx-function-item p {
    margin: 0;
    color: #5c7586;
}

.vx-highlight-card {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #103754 0%, #0e2942 100%);
    color: #ffffff;
    box-shadow: 0 26px 50px rgba(16, 49, 74, 0.20);
}

.vx-highlight-card h3 {
    margin: 0 0 14px;
    font-size: 28px;
}

.vx-highlight-card p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
}

.vx-check-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.vx-check-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.92);
}

.vx-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #6fe0ba;
    font-weight: 800;
}

.vx-target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vx-target-card {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #d8e6ef;
    box-shadow: 0 18px 38px rgba(16, 55, 81, 0.07);
}

.vx-target-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0d2b44;
}

.vx-target-card p {
    margin: 0;
    color: #5c7586;
}

.vx-cta-section {
    background: linear-gradient(135deg, #103754 0%, #0d2942 100%);
}

.vx-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vx-cta-text h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
}

.vx-cta-text p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

/* =========================
   CONTACT
========================= */

.vx-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vx-contact-info h2 {
    font-size: clamp(26px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #0d2b44;
}

.vx-contact-info p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #4f6b7c;
}

.vx-contact-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.vx-contact-list li {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.7;
    color: #4f6b7c;
}

.vx-contact-note {
    margin-top: 26px;
    font-size: 18px;
    font-weight: 700;
    color: #0d2b44;
}

.vx-contact-form {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(185, 210, 226, 0.75);
    box-shadow: 0 18px 40px rgba(17, 59, 87, 0.08);
    backdrop-filter: blur(10px);
}

.vx-contact-form h3 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #0d2b44;
}

.vx-form-hint {
    margin: 0 0 20px;
    font-size: 14px;
    color: #6c8796;
}

.vx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.vx-form-group {
    margin: 0;
}

.vx-form-row input,
.vx-form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid #d6e3ec;
    background: #ffffff;
    font-size: 14px;
    color: #163047;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vx-form-row input::placeholder,
.vx-form-group textarea::placeholder {
    color: #7c92a2;
}

.vx-form-row input:focus,
.vx-form-group textarea:focus {
    border-color: #2aa4df;
    box-shadow: 0 0 0 3px rgba(42, 164, 223, 0.15);
}

.vx-form-group textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 14px;
}

.vx-captcha-box {
    width: 100%;
}

.vx-captcha-image {
    width: auto;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #d6e3ec;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.vx-captcha-image:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* =========================
   LEGACY CONTACT BLOCKS
========================= */

.vx-contact-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.vx-contact-content,
.vx-contact-card {
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #d7e6ef;
    box-shadow: 0 20px 42px rgba(18, 57, 82, 0.08);
}

.vx-contact-content h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    color: #0c2740;
}

.vx-contact-content p {
    margin: 0 0 24px;
    color: #597283;
    font-size: 17px;
}

.vx-contact-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: #f6fafc;
    border: 1px solid #dce8f0;
}

.vx-contact-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #6a8393;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vx-contact-item a {
    font-size: 20px;
    font-weight: 800;
    color: #0f5a89;
    word-break: break-word;
}

.vx-contact-side {
    display: flex;
}

.vx-contact-card {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vx-contact-logo {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.vx-contact-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #0d2942;
}

.vx-contact-card p {
    margin: 0 0 24px;
    color: #5b7484;
    font-size: 16px;
}

/* =========================
   FOOTER
========================= */

.vx-site-footer {
    margin-top: 40px;
    background: linear-gradient(135deg, #0d2942 0%, #123a5a 100%);
    color: #ffffff;
}

.vx-footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0 32px;
    align-items: start;
}

.vx-footer-col h3,
.vx-footer-col h4 {
    margin: 0 0 14px;
    color: #ffffff;
}

.vx-footer-col h3 {
    font-size: 28px;
}

.vx-footer-col h4 {
    font-size: 18px;
}

.vx-footer-col p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.vx-footer-col a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vx-footer-col a:hover {
    color: #ffffff;
}

.vx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
}

.vx-footer-bottom p {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

/* =========================
   DASHBOARD / PREVIEW
========================= */

.vx-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.vx-hero-card-wrap {
    position: relative;
}

.vx-hero-card {
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(201, 220, 231, 0.85);
    box-shadow: 0 28px 70px rgba(28, 73, 101, 0.15);
}

.vx-hero-card-top {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding-left: 4px;
}

.vx-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bfd7e5;
}

.vx-dashboard {
    display: grid;
    grid-template-columns: 76px 1fr;
    min-height: 480px;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #deebf3;
}

.vx-dashboard-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 24px 0;
    background: linear-gradient(180deg, #103c5b 0%, #0f2942 100%);
}

.vx-dashboard-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #17a7d9;
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
}

.vx-dashboard-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vx-dashboard-menu span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
}

.vx-dashboard-menu span.active {
    background: #ffffff;
}

.vx-dashboard-main {
    padding: 26px;
}

.vx-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.vx-dashboard-header strong {
    display: block;
    font-size: 24px;
    color: #0d2d44;
    margin-bottom: 4px;
}

.vx-dashboard-header p {
    margin: 0;
    color: #6b8497;
    font-size: 14px;
}

.vx-dashboard-pill {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eaf9ef;
    color: #23804e;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.vx-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.vx-stat-card {
    padding: 16px;
    border-radius: 18px;
    background: #f7fbfe;
    border: 1px solid #dbe9f1;
}

.vx-stat-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #6a8192;
}

.vx-stat-card strong {
    font-size: 22px;
    color: #0f324b;
}

.vx-calendar-preview {
    display: grid;
    gap: 12px;
}

.vx-calendar-row {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
}

.vx-calendar-row > span {
    font-size: 13px;
    font-weight: 700;
    color: #5c7788;
}

.vx-appt {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(20, 66, 96, 0.12);
}

.vx-appt-blue {
    background: linear-gradient(135deg, #0f79bb, #16b2de);
}

.vx-appt-green {
    background: linear-gradient(135deg, #139f72, #3bc78f);
}

.vx-appt-orange {
    background: linear-gradient(135deg, #f08b22, #ffb347);
}

.vx-appt-purple {
    background: linear-gradient(135deg, #6957d3, #9f7cff);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes vxSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes vxSpinReverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .vx-hero-inner,
    .vx-function-grid,
    .vx-contact-box {
        grid-template-columns: 1fr;
    }

    .vx-hero-inner {
        gap: 34px;
        text-align: center;
    }

    .vx-hero-content {
        max-width: 100%;
    }

    .vx-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .vx-hero-actions,
    .vx-hero-points {
        justify-content: center;
    }

    .vx-feature-grid,
    .vx-target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vx-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .vx-contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .vx-contact-form {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 860px) {
    .vx-header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .vx-main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .vx-feature-grid,
    .vx-target-grid,
    .vx-footer-main {
        grid-template-columns: 1fr;
    }

    .vx-stats-grid {
        grid-template-columns: 1fr;
    }

    .vx-dashboard {
        grid-template-columns: 1fr;
    }

    .vx-dashboard-sidebar {
        flex-direction: row;
        justify-content: center;
        padding: 16px;
    }

    .vx-dashboard-menu {
        flex-direction: row;
    }
}

@media (max-width: 760px) {
    .vx-hero {
        padding: 68px 0 50px;
    }

    .vx-hero h1 {
        font-size: 30px;
    }

    .vx-hero-text,
    .vx-section-head p,
    .vx-cta-text p,
    .vx-contact-content p {
        font-size: 16px;
    }

    .vx-visual-card-body {
        padding: 22px 18px 24px;
    }

    .vx-visual-logo-wrap {
        min-height: 210px;
    }

.vx-visual-logo-ring-inner {
    width: 180px;
    height: 180px;
}

.vx-visual-logo-ring-outer {
    width: 230px;
    height: 230px;
}

    .vx-hero-logo {
        width: 170px;
    }

    .vx-visual-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .vx-form-row {
        grid-template-columns: 1fr;
    }

    .vx-contact-info h2 {
        font-size: 30px;
    }

    .vx-contact-form {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .vx-container {
        width: min(100% - 24px, 1200px);
    }

    .vx-contact-item a {
        font-size: 17px;
    }

    .vx-feature-card,
    .vx-function-item,
    .vx-target-card,
    .vx-contact-content,
    .vx-contact-card,
    .vx-highlight-card {
        padding: 24px;
    }
}

.vx-visual-wave {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.22) 0%, rgba(0, 183, 255, 0.10) 35%, rgba(0, 183, 255, 0.00) 72%);
    filter: blur(18px);
    animation: vxWavePulse 4.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.vx-visual-wave-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 230, 255, 0.12) 0%, rgba(0, 230, 255, 0.05) 40%, rgba(0, 230, 255, 0.00) 75%);
    animation-delay: 1.2s;
}

@keyframes vxWavePulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.95;
    }
}

 
.vx-hero-logo {
    animation: vxLogoFloat 6s ease-in-out infinite,
               vxLogoPulse 4s ease-in-out infinite;
}

@keyframes vxLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0,180,255,0.2));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0,180,255,0.5));
    }
}

.vx-hero-logo {
    position: relative;
    z-index: 2;

    animation: vxLogoFloat 6s ease-in-out infinite;
}
.vx-hero-logo {
    will-change: transform;
}
 

@keyframes vxLogoFloat {
    0% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) scale(1.02) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) scale(1.03) rotate(-1deg);
    }
    75% {
        transform: translateY(-6px) scale(1.02) rotate(1deg);
    }
    100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
}


.vx-feature-card {
    position: relative;
    overflow: hidden;
}

.vx-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0,150,255,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.vx-feature-card:hover::after {
    opacity: 1;
}
.vx-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}
.vx-feature-card:first-child {
    border: 1px solid rgba(0,150,255,0.4);
    box-shadow: 0 20px 60px rgba(0,150,255,0.2);
}

.vx-feature-grid {
    position: relative;
}

.vx-feature-grid::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,150,255,0.15), transparent);
    top: -100px;
    left: -100px;
    z-index: 0;
}


.vx-contact-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(13, 137, 255, 0.10);
    color: #0d89ff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.vx-contact-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.vx-contact-mini-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(185, 210, 226, 0.75);
    box-shadow: 0 12px 28px rgba(17, 59, 87, 0.06);
}

.vx-contact-mini-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #0d2b44;
}

.vx-contact-mini-card span {
    font-size: 14px;
    line-height: 1.6;
    color: #5a7485;
}


@media (max-width: 700px) {
    .vx-contact-mini-cards {
        grid-template-columns: 1fr;
    }
}

.vx-contact-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 20% 30%, rgba(0,150,255,0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,200,255,0.10), transparent 45%),
        linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.vx-contact-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,150,255,0.15), transparent 70%);
    top: -150px;
    left: -150px;
    filter: blur(80px);
    z-index: 0;
}

.vx-contact-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,200,255,0.12), transparent 70%);
    bottom: -120px;
    right: -120px;
    filter: blur(70px);
    z-index: 0;
}
.vx-contact-grid {
    position: relative;
    z-index: 2;
}

.vx-journey-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
    text-align: center;
}

.vx-section-title {
    font-size: 30px;
    margin-bottom: 10px;
    color: #0d2b44;
}

.vx-section-sub {
    font-size: 16px;
    color: #5a7485;
    margin-bottom: 50px;
}

.vx-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vx-journey-card {
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e3edf5;
    box-shadow: 0 10px 30px rgba(0, 40, 80, 0.06);
    transition: 0.3s;
}

.vx-journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 80, 150, 0.15);
}

.vx-step {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d89ff, #00c6ff);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   JOURNEY SECTION MOBILE
========================= */

@media (max-width: 900px) {

    .vx-journey-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .vx-journey-card {
        padding: 22px;
    }

}

@media (max-width: 600px) {

    .vx-journey-section {
        padding: 60px 0;
    }

    .vx-section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .vx-section-sub {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .vx-journey-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vx-journey-card {
        padding: 20px;
        border-radius: 16px;
    }

    .vx-journey-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .vx-journey-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .vx-step {
        width: 38px;
        height: 38px;
        font-size: 14px;
        margin-bottom: 12px;
    }

}

 .vx-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e6eef5;
}

.vx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.vx-brand strong {
    font-size: 16px;
    color: #0d2b44;
}

.vx-header-actions {
    display: flex;
    gap: 10px;
}
/* =========================
   HEADER MOBILE (VX)
========================= */

@media (max-width: 700px) {

    .vx-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0;
    }

    .vx-brand strong {
        font-size: 14px;
        line-height: 1.4;
    }

    .vx-header-actions {
        width: 100%;
        display: flex;
        gap: 8px;
    }

    .vx-header-actions .vx-btn {
        flex: 1;
        padding: 10px;
        font-size: 13px;
        text-align: center;
        border-radius: 10px;
    }

}

.vx-site-header {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
}
@media (max-width: 500px) {
    .vx-brand strong {
        font-size: 13px;
    }
}
/* Badge Grundstil */
.vx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 137, 255, 0.10);
    font-size: 13px;
    font-weight: 600;
    color: #0d2b44;
    position: relative;
    overflow: hidden;
}

/* KI Highlight */
.vx-badge-ai {
    position: relative;
    font-weight: 700;
    color: #0d89ff;
}

/* Glow */
.vx-badge-ai::after {
    content: "";
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(0,150,255,0.6), transparent 70%);
    opacity: 0.6;
    filter: blur(6px);
    z-index: -1;
}

/* Shine Animation */
.vx-hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    animation: vxBadgeShine 3.5s infinite;
}

/* Animation */
@keyframes vxBadgeShine {
    0% { left: -100%; }
    60% { left: 120%; }
    100% { left: 120%; }
}

.vx-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.vx-brand-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.4;
}

.vx-brand-voxivo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;

    /* Fallback Farbe */
    color: #0d89ff;

    /* Gradient */
    background: linear-gradient(90deg, #0d89ff 0%, #18d0d0 100%);

    /* Gradient Text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Glow */
    text-shadow: 0 0 14px rgba(13, 137, 255, 0.16);
}

.vx-brand-sep {
    font-size: 20px;
    font-weight: 700;
    color: #0d89ff;
}

.vx-brand-text {
    font-size: 15px;
    font-weight: 600;
    color: #0d2b44;
    letter-spacing: 0.1px;
}

/* Tablet */
@media (max-width: 900px) {
    .vx-brand-voxivo {
        font-size: 22px;
    }

    .vx-brand-sep {
        font-size: 18px;
    }

    .vx-brand-text {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .vx-brand {
        width: 100%;
    }

    .vx-brand-inline {
        gap: 6px;
        width: 100%;
    }

    .vx-brand-voxivo {
        font-size: 20px;
    }

    .vx-brand-sep {
        font-size: 16px;
    }

    .vx-brand-text {
        font-size: 13px;
        line-height: 1.45;
    }
}

/* Sehr kleine Handys */
@media (max-width: 480px) {
    .vx-brand-voxivo {
        font-size: 18px;
    }

    .vx-brand-text {
        font-size: 12.5px;
    }
}

@keyframes vxPulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.75);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.25);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
        box-shadow: 0 0 0 35px rgba(0, 150, 255, 0);
    }
    100% {
        opacity: 0;
    }
}
.vx-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    z-index: 0;

    animation: vxPulseRing 2.8s ease-out infinite;
}
.vx-visual-logo-wrap {
    position: relative;
}

.vx-hero-logo {
    position: relative;
    z-index: 3;
}

.vx-visual-logo-ring {
    z-index: 2;
}

.vx-pulse-ring {
    z-index: 1;
}




.vx-visual-card-top {
    position: relative;
    overflow: hidden;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.vx-ticker {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.vx-ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: vxTickerMove 30s linear infinite;
}

.vx-ticker-copy {
    display: inline-block;
    white-space: nowrap;
    padding-right: 80px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(200, 230, 255, 0.78);
    text-shadow: 0 0 10px rgba(0,150,255,0.10);
}

.vx-ticker-brand {
    margin-right: 6px;
    font-size:20px;
    font-weight: 800;
    color: #0d89ff;
    background: linear-gradient(90deg, #0d89ff 0%, #18d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes vxTickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .vx-ticker {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .vx-ticker-track {
        display: inline-flex;
        align-items: center;
        width: max-content;
    }

    .vx-ticker-copy {
        padding-right: 28px;
        font-size: 12px;
    }

    .vx-ticker-brand {
        font-size: 17px;
    }

    .vx-visual-card-top,
    .vx-visual-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}
.vx-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.vx-footer-madeby {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}

.vx-footer-madeby a {
    color: #18d0d0;
    text-decoration: none;
    font-weight: 600;
}

.vx-footer-madeby a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .vx-footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.vx-footer-motto {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}


 .vx-footer-motto {
    max-width: 260px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vx-hero-grid,
    .vx-hero-section,
    .vx-hero-visual {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }
}
