:root {
    --g1: #4f46e5;
    --g2: #06b6d4;
    --g3: #7c3aed;
    --g4: #0ea5e9;
    --primary: #0FA9DC;
    --primary-hover: #2f4fcc;
    --primary-active: #263fa8;
    --bg-main: #0f172a;
    --bg-alt: rgba(255, 255, 255, 0.12);
    --bg-card: #ffffff;
    --text-heading: #fff;
    --heading-text: #000;
    --text-body: #fff;
    --text-muted: #000;
    --text-inverse: #ffffff;
    --border-default: rgba(255, 255, 255, 0.2);
    --border-soft: rgba(255, 255, 255, 0.16);
    --success: #16a34a;
    --error: #dc2626;
    --warning: #d97706;
    --info: #3b82f6;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.16);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-body);
    background: linear-gradient(
        135deg,
        #0f2027,
        #203a43,
        #2c5364,
        #1c1c2b
    );
    background-size: 300% 300%;
    animation: darkFlow 20s ease infinite;
    min-height: 100vh;
}

@keyframes darkFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.bg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 0;
}

.page {
    position: relative;
    z-index: 1;
}

.blob {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: .35;
    z-index: 0;
    animation: floatBlob 10s ease-in-out infinite;
}

.blob.one { background: var(--g1); top: -120px; left: -120px; }
.blob.two { background: var(--g2); bottom: -140px; right: -140px; animation-delay: 1.5s; }
.blob.three { background: var(--g3); top: 30%; right: -180px; animation-delay: 2.5s; }

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

/* keep old animation name for compatibility */
@keyframes pageGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glass Theme Overrides */
.glass-nav {
    background: rgba(15, 23, 42, 0.35) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-nav .container {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-links-wrap .nav-link,
.footer-links a,
.footer-desc,
.footer-contact,
.text-muted,
.text-secondary {
    color: var(--text-heading) !important;
}

.brand-sub{
    color: var(--heading-text);
}

.nav-links-wrap .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-inverse);
}

h1, h2, h3, h4, h5, h6 {
    color: #f8fafc;
}

p,
li,
small,
label {
    color: var(--text-body);
}

.section-title,
.problem-card h6,
.solution-box h3,
.tour-card h6,
.testimonial-card h6,
.plan-card-neo h5,
.accordion-button,
.cta-support-info h3,
.cta-support-card h6 {
    color: var(--text-heading);
}

.lead,
.accordion-body,
.plan-feature-item span,
.solution-box p,
.cta-support-info p,
.hero-proof-item small {
    color: var(--text-body);
}

.small-muted {
    color: var(--text-muted);
}

.small-muted {
    color: #94a3b8;
}

.btn-brand,
.btn-primary {
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--g1), var(--g2));
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.35);
}

.btn-brand:hover,
.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    transition: 200ms ease;
    color: #fff;
}

.btn-portal,
.hero-secondary-btn,
.btn-plan-alt,
.btn-plan-main {
    border: 1px solid var(--glass-border);
}

.btn-portal:hover,
.hero-secondary-btn:hover,
.btn-plan-alt:hover,
.btn-plan-main:hover {
    color: #fff;
}

.hero,
.bg-alt,
.site-footer,
.footer-bottom,
.cta-support-info,
.contact-info-pane,
.final-cta-box {
    background: transparent !important;
}

.stat-card,
.module-card,
.step-card,
.pricing-card,
.faq-card,
.contact-shell,
.contact-info-card,
.plan-card-neo,
.problem-card,
.solution-box,
.tour-card,
.testimonial-card,
.cta-support-wrap,
.cta-support-card,
.hero-image-card,
.hero-floating-card,
.hero-proof-item {
    background: var(--glass) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.stat-card:hover,
.module-card:hover,
.step-card:hover,
.faq-card:hover,
.plan-card-neo:hover,
.problem-card:hover,
.solution-box:hover,
.tour-card:hover,
.testimonial-card:hover,
.cta-support-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.11) !important;
    transition: 250ms ease;
}

.site-footer {
    border-top: 1px solid var(--glass-border);
}

.footer-social a {
    border: 1px solid var(--glass-border);
    color: #e2e8f0;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cta-input,
.contact-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: #f8fafc;
}

.cta-input::placeholder,
.contact-input::placeholder {
    color: #cbd5e1;
}

.cta-input:focus,
.contact-input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.2);
    color: #fff;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.55;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0.55;
    }
}

@keyframes sheen {
    0% {
        transform: translateX(-130%);
    }
    100% {
        transform: translateX(130%);
    }
}

@keyframes dynamicBorder {
    0% {
        border-color: #0fa9dc;
        box-shadow: 0 0 0 1px rgba(15, 169, 220, 0.35), 0 12px 28px rgba(15, 169, 220, 0.2);
    }
    50% {
        border-color: #7c3aed;
        box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.35), 0 12px 28px rgba(124, 58, 237, 0.2);
    }
    100% {
        border-color: #06b6d4;
        box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.35), 0 12px 28px rgba(6, 182, 212, 0.2);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 700;
}

p,
li,
small {
    color: var(--text-body);
}

a {
    color: var(--primary);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
    /* text-decoration: underline; */
}

.container {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
}

.navbar {
    min-height: 72px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-default);
    backdrop-filter: blur(10px);
}

.site-nav {
    padding: 8px 0;
}

.site-nav .container {
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding-top: 8px;
    padding-bottom: 8px;
}

.brand-mark {
    line-height: 1.1;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    border: 1px solid var(--border-soft);
    background: #fff;
    padding: 3px;
}

.brand-sub {
    font-size: 11px;
    color: var(--heading-text);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.nav-links-wrap .nav-link {
    color: var(--heading-text) !important;
    border-radius: 10px;
    padding: 10px 14px !important;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-links-wrap .nav-link:hover {
    color: var(--primary);
    background: var(--bg-alt);
    text-decoration: none;
}

.btn-brand {
    background: var(--primary);
    color: var(--text-inverse);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.btn-brand:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--text-inverse);
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-brand:active {
    background: var(--primary-active);
    border-color: var(--primary-active);
}

.btn-portal {
    /* background: var(--bg-alt); */
    /* color: var(--primary); */
    /* border: 1px solid var(--bg-alt); */
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-portal:hover {
    /* background: #e0e7ff; */
    /* color: var(--primary-hover); */
    text-decoration: none;
}

.hero {
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    color: var(--primary);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 14px;
}

.hero h1 {
    font-size: clamp(32px, 4.2vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    max-width: 15ch;
}

.lead {
    color: var(--text-body);
    font-size: 18px;
    max-width: 58ch;
}

.hero-secondary-btn {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    min-height: 44px;
}

.hero-secondary-btn:hover {
    background: var(--bg-alt);
    color: var(--primary-hover);
    text-decoration: none;
}

.hero-feature-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-feature-chips span {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--heading-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-feature-chips i {
    color: black;
}

.hero-proof {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-proof-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 170px;
    box-shadow: var(--shadow-sm);
}

.hero-proof-item strong {
    color: var(--text-heading);
    display: block;
}

.hero-proof-item small {
    color: var(--text-muted);
}

.hero-images {
    min-height: 420px;
    position: relative;
}

.hero-stage {
    isolation: isolate;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.hero-glow.one {
    width: 180px;
    height: 180px;
    background: rgba(59, 91, 219, 0.18);
    top: -18px;
    left: -14px;
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-glow.two {
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.2);
    right: -20px;
    bottom: -20px;
    animation: pulseGlow 6.5s ease-in-out infinite;
}

.hero-image-card {
    min-height: 420px;
    position: relative;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-image-card.top {
    max-width: 460px;
}

.hero-image-card.bottom {
    position: absolute;
    right: 0;
    bottom: -24px;
    max-width: 320px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.image-tag {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 600;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px 12px;
    max-width: 245px;
    animation: floatY 4.6s ease-in-out infinite;
}

.hero-floating-card i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--bg-alt);
    color: var(--primary);
    display: grid;
    place-items: center;
}

.hero-floating-card strong {
    color: var(--text-heading);
    font-size: 13px;
    display: block;
}

.hero-floating-card small {
    color: var(--text-muted);
    font-size: 12px;
}

.float-a {
    left: -24px;
    top: 58%;
}

.float-b {
    right: -20px;
    top: 16%;
    animation-delay: .6s;
}

.section-title {
    font-size: clamp(30px, 2.8vw, 42px);
    letter-spacing: -0.02em;
}

.stat-card,
.module-card,
.step-card,
.pricing-card,
.faq-card,
.contact-shell,
.contact-info-card,
.plan-card-neo {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after,
.module-card::after,
.step-card::after,
.problem-card::after,
.tour-card::after,
.testimonial-card::after,
.plan-card-neo::after,
.cta-support-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-130%);
    pointer-events: none;
}

.stat-card {
    padding: 20px;
    text-align: center;
}

.stat-card h3 {
    color: var(--primary);
    font-size: 32px;
}

.module-card {
    height: 100%;
    padding: 24px;
    transition: all 0.2s ease;
}

.module-card:hover {
    background: linear-gradient(135deg, #eef2ff 0%, #e0ecff 100%);
    border-color: #c7d2fe;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-card:hover::after {
    animation: sheen .9s ease;
}

.bg-alt {
    background: var(--bg-alt);
}

.problem-card {
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.problem-card h6 {
    color: var(--text-heading);
}

.solution-box {
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.problem-card:hover,
.solution-box:hover {
    background: linear-gradient(140deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #c7d2fe;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-card:hover::after {
    animation: sheen .9s ease;
}

.solution-side-image {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-side-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.solution-side-image:hover {
    transform: translateY(-4px);
    animation: dynamicBorder 1.6s linear infinite;
}

.solution-box i {
    color: var(--primary);
}

.benefit-list li {
    margin-bottom: 12px;
    color: var(--text-body);
    font-weight: 500;
}

.benefit-list i {
    color: var(--success);
}

.tour-card {
    background: linear-gradient(160deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: linear-gradient(160deg, #16a34a 0%, #06b6d4 100%) !important;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.tour-card:hover,
.testimonial-card:hover,
.stat-card:hover,
.step-card:hover,
.faq-card:hover,
.contact-info-card:hover,
.cta-support-card:hover {
    background: linear-gradient(140deg, #eff4ff 0%, #eef6ff 100%);
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tour-card:hover::after,
.testimonial-card:hover::after,
.stat-card:hover::after,
.step-card:hover::after,
.plan-card-neo:hover::after,
.cta-support-card:hover::after {
    animation: sheen .85s ease;
}

.stat-card:hover,
.module-card:hover,
.step-card:hover,
.faq-card:hover,
.plan-card-neo:hover,
.problem-card:hover,
.solution-box:hover,
.tour-card:hover,
.testimonial-card:hover,
.cta-support-card:hover,
.contact-shell:hover,
.contact-info-card:hover,
.hero-image-card:hover,
.hero-floating-card:hover,
.hero-proof-item:hover,
.cta-support-wrap:hover {
    animation: dynamicBorder 1.6s linear infinite;
}

.quote-icon {
    color: var(--primary);
    font-size: 20px;
}

.module-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.step-line {
    position: relative;
}

.step-line::before {
    content: "";
    position: absolute;
    width: 2px;
    top: 38px;
    bottom: -24px;
    left: 20px;
    background: var(--border-soft);
}

.step-line:last-child::before {
    display: none;
}

.step-card {
    padding: 20px;
}

.step-badge {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    flex: 0 0 auto;
}

.plan-row {
    align-items: stretch;
}

.plan-card-neo {
    position: relative;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f7ff 100%);
}

.plan-card-neo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(145deg, #eef2ff 0%, #e7edff 100%);
    border-color: #c7d2fe;
}

.plan-card-neo.is-featured {
    background: linear-gradient(135deg, #3b5bdb, #6366f1);
    border-color: #4f65d9;
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: #eef2ff;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10000;
    overflow: visible !important;
}

.plan-head h5 {
    font-weight: 700;
}

.plan-sub {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-price {
    color: var(--text-heading);
    font-size: 28px;
    font-weight: 700;
}

.plan-price span {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-feature-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-body);
    padding: 5px 0;
}

.feature-icon {
    line-height: 1;
    margin-top: 2px;
}

.plan-feature-item.yes .feature-icon {
    color: var(--success);
}

.plan-feature-item.no .feature-icon {
    color: var(--error);
}

.plan-feature-item.value .feature-icon {
    color: var(--warning);
}

.btn-plan-main,
.btn-plan-alt {
    min-height: 44px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-plan-main {
    background: #fff;
    border: 1px solid #fff;
    color: var(--primary);
}

.btn-plan-main:hover {
    background: #f8fafc;
    color: var(--primary-hover);
    text-decoration: none;
}

.btn-plan-alt {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.btn-plan-alt:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    text-decoration: none;
}

.plan-card-neo.is-featured .plan-head h5,
.plan-card-neo.is-featured .plan-price,
.plan-card-neo.is-featured .plan-feature-item {
    color: #fff;
}

.plan-card-neo.is-featured .plan-sub,
.plan-card-neo.is-featured .plan-price span {
    color: #e0e7ff;
}

.plan-card-neo.is-featured .plan-feature-item.no .feature-icon {
    color: #fee2e2;
}

.plan-card-neo.is-featured .plan-feature-item.value .feature-icon {
    color: #fde68a;
}

.faq-card {
    border-radius: var(--radius-md);
}

.accordion-button {
    color: var(--heading-text);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--text-heading);
    background: var(--bg-alt);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(59, 91, 219, 0.15);
    border-color: var(--primary);
}

.contact-section {
    padding-top: 40px;
}

.contact-shell {
    overflow: hidden;
}

.contact-form-pane {
    background: #fff;
    padding: 28px;
}

.contact-kicker {
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.contact-info-pane {
    background: linear-gradient(135deg, #3b5bdb, #6366f1);
    padding: 28px;
}

.contact-info-pane h3,
.contact-info-pane h6,
.contact-info-pane p {
    color: #fff;
}

.contact-info-head p {
    color: #e0e7ff;
}

.contact-info-grid {
    display: grid;
    gap: 16px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    color: #fff;
    flex: 0 0 auto;
}

.contact-input {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text-heading);
    padding: 10px 12px;
    min-height: 44px;
}

.contact-input::placeholder {
    color: var(--text-muted);
}

.contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 91, 219, 0.15);
}

.contact-message {
    min-height: 130px;
    resize: vertical;
}

.btn-contact-submit {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 20px;
    min-height: 44px;
}

.btn-contact-submit:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.final-cta-box {
    background: #3b5bdb;
    border-radius: var(--radius-lg);
    padding: 100px 24px;
}

.cta-support-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-lg);
}

.cta-support-form {
    background: linear-gradient(165deg, #0f172a, #1e293b);
    padding: 28px 24px;
}

.cta-mini-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #c7d2fe;
    font-weight: 600;
    display: inline-flex;
    margin-bottom: 10px;
}

.cta-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 10px;
    color: #fff;
    min-height: 44px;
    padding: 10px 12px;
}

.cta-input::placeholder {
    color: #cbd5e1;
}

.cta-input:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.2);
}

.cta-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-cta-submit {
    background: linear-gradient(120deg, #14b8a6, #0ea5e9);
    border: 0;
    color: #fff;
    border-radius: 10px;
    min-height: 44px;
    font-weight: 600;
}

.btn-cta-submit:hover {
    color: #fff;
    filter: brightness(1.05);
}

.cta-support-info {
    background: linear-gradient(135deg, #eef2ff, #f0f9ff);
    padding: 32px 28px;
}

.cta-support-info p {
    color: var(--text-body);
}

.cta-support-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.cta-support-image {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cta-support-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 220px;
}

.cta-support-image:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 169, 220, 0.7);
    box-shadow: 0 14px 30px rgba(15, 169, 220, 0.2);
}

.cta-support-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    display: inline-grid;
    place-items: center;
    margin-bottom: 10px;

}

.site-footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.footer-brand-wrap {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 4px;
}

.footer-desc {
    color: #cbd5e1;
}

.footer-title {
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links .text-accent {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-contact {
    color: #cbd5e1;
}

.footer-contact i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #1e293b;
    color: #e2e8f0;
    display: grid;
    place-items: center;
    flex: 0 0 auto;

}

.footer-contact .location-line {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: transparent;
    color: #e2e8f0;
    text-decoration: none;
    display: grid;
    place-items: center;
}

.footer-social a:hover {
    background: #1e293b;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 20px;
    background: #0b1324;
    border-top: 1px solid #1e293b;
    padding: 14px 0;
}

.footer-bottom p {
    color: #cbd5e1;
}

.payment-badges span {
    background: #fff;
    border: 1px solid var(--border-soft);
    color: var(--text-body);
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 600;
}

.table-ui thead th {
    background: #f1f5f9;
    color: var(--text-heading);
    border-bottom: 1px solid var(--border-soft);
}

.table-ui tbody td {
    color: var(--text-body);
    border-bottom: 1px solid var(--border-soft);
}

.table-ui tbody tr:hover {
    background: #f8fafc;
}

.badge-primary-ui {
    background: #eef2ff;
    color: var(--primary);
}

.badge-success-ui {
    background: #dcfce7;
    color: var(--success);
}

.badge-warning-ui {
    background: #fef3c7;
    color: var(--warning);
}

.badge-error-ui {
    background: #fee2e2;
    color: var(--error);
}

.status-success {
    color: var(--success);
}

.status-error {
    color: var(--error);
}

.status-warning {
    color: var(--warning);
}

.status-info {
    color: var(--info);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: all 0.55s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* Hero 50/50 split improvements */
.hero-split {
    min-height: 72vh;
}

.hero-copy {
    padding-right: 18px;
}

.hero-copy h1 {
    max-width: 100%;
}

.hero-visual-col {
    display: flex;
    align-items: center;
}

.hero-main-visual {
    width: 100%;
}

.hero-main-visual .hero-image-card.top {
    max-width: 100%;
    min-height: 420px;
}

.hero-main-visual .hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 98px;
        padding-bottom: 64px;
    }

    .site-nav .container {
        border-radius: var(--radius-lg);
    }

    .nav-actions {
        margin-top: 8px;
    }

    .hero-images {
        min-height: auto;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-main-visual .hero-image-card.top {
        min-height: 280px;
    }

    .hero-image-card.bottom {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .hero-floating-card {
        position: static;
        max-width: none;
        margin-top: 10px;
    }

    .step-line::before {
        display: none;
    }

    .contact-form-pane,
    .contact-info-pane {
        padding: 20px;
    }

    .cta-support-info,
    .cta-support-form {
        padding: 22px;
    }

    .payment-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Header hover effects */
.nav-links-wrap .nav-link {
    transition: color .25s ease, text-shadow .25s ease, transform .25s ease, box-shadow .25s ease;
}

.nav-links-wrap .nav-link:hover {
    color: #0FA9DC !important;
    text-shadow: 0 0 10px rgba(15, 169, 220, 0.75);
    transform: translateY(-1px);
    /* box-shadow: inset 0 -2px 0 rgba(15, 169, 220, 0.8); */
}

.brand-mark,
.brand-mark span,
.brand-sub {
    transition: color .25s ease, text-shadow .25s ease;
}

.brand-mark:hover span,
.brand-mark:hover .brand-sub {
    color: #0FA9DC !important;
    text-shadow: 0 0 12px rgba(15, 169, 220, 0.8);
}

/* Testimonials carousel + avatar */
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.testimonial-carousel {
    padding: 0 42px;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    opacity: 1;
}

.testimonial-carousel .carousel-control-prev {
    left: 0;
}

.testimonial-carousel .carousel-control-next {
    right: 0;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 991.98px) {
    .testimonial-carousel {
        padding: 0;
    }

    .testimonial-carousel .carousel-control-prev,
    .testimonial-carousel .carousel-control-next {
        display: none;
    }
}


.book-demo:hover{
    background-color: whitesmoke;
    color:#06b6d4 !important;
}

.login:hover{
    color: whitesmoke;
}


.hero {
    min-height: 100vh;
}

.hero-image-col {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--bs-info),
        var(--bs-primary)
    );
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    max-height: 90vh;
    object-fit: contain;
}



.hero-feature-chips span:hover{
    background-color: #06b6d4;
    color: white;
}


.bg-hover:hover{
    background-color: goldenrod !important;
}

/* Pricing fixes: show recommended badge + golden featured card */
.plan-card-neo {
    /* overflow: visible ; */
}

/* .plan-badge {
    top: -14px;
    right: 14px;
    z-index: 8;
    background: #fff7d6;
    color: #8a5a00;
    border: 1px solid #f4c542;
    box-shadow: 0 8px 18px rgba(244, 197, 66, 0.35);
} */

.plan-card-neo.is-featured {
    background: linear-gradient(145deg, #ffd56a 0%, #f4b942 48%, #d68f1f 100%) !important;
    border-color: #f1b632 !important;
}

.plan-card-neo.is-featured:hover {
    background: linear-gradient(145deg, #ffe083 0%, #f7c354 48%, #de9b2a 100%) !important;
    border-color: #f6c34b !important;
}

.plan-card-neo.is-featured h5,
.plan-card-neo.is-featured .plan-price,
.plan-card-neo.is-featured .plan-price span,
.plan-card-neo.is-featured .plan-feature-item,
.plan-card-neo.is-featured .plan-sub {
    color: #1f2937 !important;
}

.plan-card-neo.is-featured .plan-feature-item.yes .feature-icon {
    color: #065f46 !important;
}

.plan-card-neo.is-featured .plan-feature-item.no .feature-icon {
    color: #991b1b !important;
}

.plan-card-neo.is-featured .plan-feature-item.value .feature-icon {
    color: #92400e !important;
}

.plan-card-neo.is-featured .btn-plan-main {
    background: #1f2937;
    border-color: #1f2937;
    color: #ffffff;
}

.plan-card-neo.is-featured .btn-plan-main:hover {
    background: #111827;
    border-color: #111827;
    color: #ffffff;
}
