:root {
    --primary: #0a66ff;
    --primary-dark: #064ec2;
    --brand-teal: #0b7f83;
    --brand-teal-dark: #055e63;
    --brand-gold: #f2b94b;
    --brand-gold-soft: #ffe7ae;
    --brand-charcoal: #1f2933;
    --ink: #0e1c39;
    --muted: #5d6f92;
    --bg: #f7faff;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: box-shadow 0.3s ease;
}

.site-main {
    padding-top: 0;
}

html {
    scroll-behavior: smooth;
}

#site-loader {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 35% 24%, rgba(242, 185, 75, 0.22), transparent 32%),
        radial-gradient(circle at 68% 72%, rgba(11, 127, 131, 0.18), transparent 34%),
        rgba(247, 250, 250, 0.96);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    backdrop-filter: blur(14px);
}

#site-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-card {
    width: min(320px, calc(100vw - 40px));
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(11, 127, 131, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 70px rgba(5, 94, 99, 0.18);
}

.loader-logo-wrap {
    position: relative;
    width: 118px;
    height: 92px;
    display: grid;
    place-items: center;
}

.loader-orbit {
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 3px solid rgba(11, 127, 131, 0.16);
    border-top-color: var(--brand-gold);
    border-right-color: var(--brand-teal);
    animation: spin 0.9s linear infinite;
}

.loader-logo {
    position: relative;
    z-index: 1;
    width: 112px;
    height: 76px;
    object-fit: contain;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-copy {
    text-align: center;
}

.loader-copy strong,
.loader-copy span {
    display: block;
}

.loader-copy strong {
    color: var(--brand-charcoal);
    font-size: 1.05rem;
    font-weight: 900;
}

.loader-copy span {
    margin-top: 3px;
    color: #607679;
    font-size: 0.86rem;
    font-weight: 800;
}

.loader-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: #e2f0f0;
}

.loader-progress span {
    display: block;
    width: 45%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-gold));
    animation: loaderSlide 1.1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 8px 12px rgba(5, 94, 99, 0.12)); }
    50% { transform: scale(1.04); filter: drop-shadow(0 12px 18px rgba(242, 185, 75, 0.18)); }
}

@keyframes loaderSlide {
    0% { transform: translateX(-110%); }
    55%, 100% { transform: translateX(230%); }
}

.topbar {
    background: linear-gradient(90deg, var(--brand-teal-dark), var(--brand-teal));
    color: #fff;
    padding: 9px 0;
    font-size: 14px;
    max-height: 54px;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.25s ease, transform 0.32s ease;
}

.site-header.is-scrolled .topbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.sales-enquiry {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 6px 12px;
    border: 1px solid rgba(242, 185, 75, 0.65);
    border-radius: 999px;
    transition: all 0.25s ease;
}

.sales-enquiry:hover {
    color: var(--brand-charcoal);
    background: var(--brand-gold);
    box-shadow: 0 0 18px rgba(242, 185, 75, 0.38);
}

.topbar-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.topbar-link i {
    margin-right: 6px;
}

.topbar-social span {
    font-weight: 600;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.28s ease;
}

.topbar-social a:hover {
    transform: scale(1.1) translateY(-1px);
    box-shadow: 0 0 12px rgba(242, 185, 75, 0.45);
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-charcoal);
}

#mainNav {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(11, 127, 131, 0.12);
    transition: all 0.35s ease;
}

.site-header.is-scrolled #mainNav,
#mainNav.is-scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 22px rgba(5, 94, 99, 0.12);
}

.nav-shell {
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 118px;
    height: 72px;
    object-fit: contain;
    border-radius: 6px;
    /* box-shadow: 0 8px 16px rgba(10, 102, 255, 0.2); */
}

.brand-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-charcoal);
}

.navbar-nav .nav-link {
    color: var(--brand-charcoal);
    font-weight: 650;
    position: relative;
    padding: 10px 14px !important;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 28px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-teal-dark);
}

.navbar-nav .nav-link.active {
    background: rgba(11, 127, 131, 0.08);
    border-radius: 999px;
}

.mega-menu {
    border: 1px solid rgba(11, 127, 131, 0.16);
    border-radius: 12px;
    padding: 8px;
    min-width: 250px;
    box-shadow: 0 16px 28px rgba(5, 94, 99, 0.16);
    animation: menuIn 0.3s ease;
}

@keyframes menuIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-menu .dropdown-item {
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--brand-charcoal);
}

.mega-menu .dropdown-item:hover {
    background: rgba(11, 127, 131, 0.08);
    color: var(--brand-teal-dark);
}

.btn-contact {
    background: linear-gradient(130deg, var(--brand-teal), var(--brand-teal-dark));
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 11px 24px;
    box-shadow: 0 10px 16px rgba(11, 127, 131, 0.24);
}

.btn-contact:hover {
    color: var(--brand-charcoal);
    background: linear-gradient(130deg, var(--brand-gold), #e0a936);
    transform: translateY(-1px);
}

.btn-contact.active {
    color: var(--brand-charcoal);
    background: linear-gradient(130deg, var(--brand-gold), #e0a936);
    box-shadow: 0 12px 22px rgba(242, 185, 75, 0.26);
}

.hero-section {
    padding: 96px 0 70px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 14%, rgba(242, 185, 75, 0.16), transparent 30%),
        radial-gradient(circle at 86% 20%, rgba(11, 127, 131, 0.18), transparent 34%),
        linear-gradient(180deg, #f7fafa 0%, #eef8f8 100%);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
}

.hero-bg-one {
    width: 300px;
    height: 300px;
    right: -80px;
    top: 20px;
    background: rgba(11, 127, 131, 0.18);
    animation: softDrift 9s ease-in-out infinite;
}

.hero-bg-two {
    width: 240px;
    height: 240px;
    left: -60px;
    bottom: 20px;
    background: rgba(242, 185, 75, 0.16);
    animation: softDrift 11s ease-in-out infinite reverse;
}

@keyframes softDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(14px, -12px, 0) scale(1.06); }
}

.eyebrow {
    font-weight: 700;
    color: var(--brand-teal-dark);
    margin-bottom: 16px;
    letter-spacing: 0;
}

.hero-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 127, 131, 0.14);
    box-shadow: 0 10px 22px rgba(5, 94, 99, 0.07);
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.45rem);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0;
    color: var(--brand-charcoal);
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 820px;
    line-height: 1.75;
    text-align: center;
}

.hero-cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-meta span {
    color: #34595c;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-meta i {
    color: var(--brand-teal);
    margin-right: 6px;
}

.btn-hero,
.btn-hero-outline {
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero {
    background: linear-gradient(130deg, var(--brand-teal), var(--brand-teal-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 22px rgba(11, 127, 131, 0.22);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(11, 127, 131, 0.35);
    color: var(--brand-teal-dark);
}

.btn-hero:hover {
    color: var(--brand-charcoal);
    background: linear-gradient(130deg, var(--brand-gold), #e0a936);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 30px rgba(242, 185, 75, 0.28), 0 0 22px rgba(11, 127, 131, 0.16);
}

.btn-hero-outline:hover {
    color: #fff;
    border-color: var(--brand-teal);
    background: var(--brand-teal);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 24px rgba(5, 94, 99, 0.14);
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 500px;
    margin-top: 24px;
}

.hero-trust-row div {
    padding: 14px 12px;
    border: 1px solid rgba(11, 127, 131, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 24px rgba(5, 94, 99, 0.08);
    backdrop-filter: blur(10px);
}

.hero-trust-row strong,
.hero-trust-row span {
    display: block;
}

.hero-trust-row strong {
    color: var(--brand-teal-dark);
    font-size: 1.25rem;
    font-weight: 900;
}

.hero-trust-row span {
    color: #5d6f92;
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-dashboard {
    position: relative;
    animation: floating 5.2s ease-in-out infinite;
    perspective: 900px;
    padding: 18px 0;
}

.dashboard-window {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(202, 229, 229, 0.9);
    border-radius: 22px;
    box-shadow: 0 28px 54px rgba(5, 94, 99, 0.18);
    overflow: hidden;
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-dashboard:hover .dashboard-window {
    transform: rotateX(2deg) rotateY(-3deg) translateY(-4px);
    box-shadow: 0 34px 70px rgba(5, 94, 99, 0.24);
}

.dash-top {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #edfafa;
    border-bottom: 1px solid #d6ecec;
}

.dash-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a9d7d7;
}

.dash-top p {
    margin: 0 0 0 6px;
    font-size: 0.86rem;
    color: #315f62;
    font-weight: 700;
}

.dash-body {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dash-stat {
    background: linear-gradient(180deg, #fbfefe, #edf8f8);
    border: 1px solid #d7ecec;
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dash-stat:hover,
.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(5, 94, 99, 0.1);
}

.dash-stat h4 {
    margin: 0;
    font-weight: 800;
    color: var(--brand-teal-dark);
}

.dash-stat p {
    margin: 3px 0;
    color: #567274;
    font-size: 0.88rem;
}

.dash-stat .up {
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 0.8rem;
}

.dash-card {
    grid-column: span 2;
    background: #fdfefe;
    border: 1px solid #dbeeee;
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dash-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.dash-card-head h6 {
    margin: 0;
    color: #2f575a;
    font-weight: 700;
}

.dash-card-head strong {
    color: var(--brand-teal);
    font-size: 0.9rem;
}

.hero-progress {
    height: 9px;
    border-radius: 999px;
    background: #e5f2f2;
}

.hero-progress .progress-bar {
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-gold));
    animation: progressPulse 3s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.74; }
}

.mini-bars {
    height: 56px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.mini-bars span {
    flex: 1;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, var(--brand-gold), var(--brand-teal));
    animation: barDance 2.8s ease-in-out infinite;
}

.mini-bars span:nth-child(2) { animation-delay: 0.25s; }
.mini-bars span:nth-child(3) { animation-delay: 0.45s; }
.mini-bars span:nth-child(4) { animation-delay: 0.65s; }
.mini-bars span:nth-child(5) { animation-delay: 0.85s; }

@keyframes barDance {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-widget {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #d7ecec;
    border-radius: 12px;
    padding: 9px 10px;
    box-shadow: 0 14px 24px rgba(5, 94, 99, 0.16);
    min-width: 190px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-widget:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 30px rgba(5, 94, 99, 0.2), 0 0 18px rgba(242, 185, 75, 0.16);
}

.hero-widget i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edfafa;
    color: var(--brand-teal);
}

.hero-widget strong {
    display: block;
    font-size: 0.86rem;
    color: var(--brand-charcoal);
}

.hero-widget span {
    font-size: 0.75rem;
    color: #597375;
}

.hero-widget-a {
    left: -164px;
    top: 28%;
    animation: widgetFloat 4.2s ease-in-out infinite;
}

.hero-widget-b {
    right: -40px;
    bottom: -4%;
    animation: widgetFloat 4.8s ease-in-out infinite;
}

.hero-widget-c {
    right: -20px;
    top: -20px;
    animation: widgetFloat 4.5s ease-in-out infinite;
}

@keyframes widgetFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 25px rgba(12, 34, 77, 0.18);
    padding: 10px 14px;
    min-width: 124px;
}

.float-card strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.float-card span {
    font-size: 0.82rem;
    color: var(--muted);
}

.float-card-a { left: -18px; top: 22px; }
.float-card-b { right: -18px; bottom: 20px; }

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--brand-charcoal);
}

.section-subtitle {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    padding: 28px 20px;
    border: 1px solid rgba(210, 234, 234, 0.9);
    height: 100%;
    box-shadow: 0 10px 24px rgba(5, 94, 99, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 24px 22px, rgba(242, 185, 75, 0.2), transparent 36%),
                linear-gradient(135deg, rgba(11, 127, 131, 0.1), transparent);
    transition: opacity 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-9px) scale(1.02);
    border-color: rgba(11, 127, 131, 0.28);
    box-shadow: 0 22px 42px rgba(5, 94, 99, 0.16), 0 0 26px rgba(242, 185, 75, 0.12);
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card > * {
    position: relative;
    z-index: 1;
}

.premium-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-gold));
    box-shadow: 0 14px 24px rgba(11, 127, 131, 0.22);
    transition: transform 0.3s ease;
}

.premium-card:hover .premium-icon {
    transform: rotate(-7deg) scale(1.12);
}

.premium-card h5 {
    font-weight: 800;
    margin-bottom: 10px;
}

.premium-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.lead-orbit-section {
    position: relative;
}

.lead-orbit-wrap {
    position: relative;
    background:
        radial-gradient(circle at 85% 18%, rgba(242, 185, 75, 0.14), transparent 32%),
        linear-gradient(145deg, #eef8f8 0%, #f8fbfb 100%);
    border: 1px solid rgba(208, 232, 232, 0.94);
    border-radius: 24px;
    padding: clamp(22px, 4vw, 40px);
    box-shadow: 0 20px 35px rgba(5, 94, 99, 0.1);
    overflow: hidden;
}

.lead-orbit-wrap::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(11, 127, 131, 0.08);
    pointer-events: none;
}

.lead-kicker {
    color: var(--brand-teal);
    font-weight: 800;
    letter-spacing: 0;
    font-size: 1rem;
}

.lead-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
}

.lead-desc {
    color: #3d5a5d;
    font-size: 1.08rem;
    line-height: 1.7;
}

.orbit-stage {
    width: min(540px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    position: relative;
    display: grid;
    place-items: center;
}

.orbit-ring {
    position: absolute;
    border: 1px solid #c9e2e2;
    border-radius: 50%;
    inset: 0;
}

.orbit-ring-outer {
    animation: spinOrbit 24s linear infinite;
}

.orbit-ring-inner {
    width: 67%;
    height: 67%;
    inset: 16.5%;
    animation: spinOrbitReverse 17s linear infinite;
}

.orbit-core {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d7ecec;
    box-shadow: 0 16px 26px rgba(5, 94, 99, 0.16);
    display: grid;
    place-items: center;
    text-align: center;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-core:hover {
    transform: scale(1.05);
    box-shadow: 0 22px 36px rgba(5, 94, 99, 0.22);
}

.orbit-core img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 11px;
}

.orbit-core p {
    /* margin: 4px 0 0; */
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-teal-dark);
}

.orbit-node {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 10px 16px rgba(5, 94, 99, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.8);
    animation: counterSpin 24s linear infinite;
}

.orbit-node:hover {
    filter: brightness(1.12);
}

.command-section {
    position: relative;
    background: linear-gradient(180deg, #f7fafa 0%, #eef8f8 100%);
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.command-tile {
    position: relative;
    min-height: 154px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(211, 233, 233, 0.95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 30px rgba(5, 94, 99, 0.09);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.command-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(11, 127, 131, 0.12), rgba(242, 185, 75, 0.1));
    transition: opacity 0.3s ease;
}

.command-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(5, 94, 99, 0.16);
}

.command-tile:hover::after {
    opacity: 1;
}

.command-tile > * {
    position: relative;
    z-index: 1;
}

.command-tile-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 322px;
    background:
        radial-gradient(circle at 84% 16%, rgba(242, 185, 75, 0.24), transparent 30%),
        linear-gradient(135deg, var(--brand-charcoal), var(--brand-teal));
    color: #fff;
}

.command-tile span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-gold));
    box-shadow: 0 14px 22px rgba(11, 127, 131, 0.18);
    margin-bottom: 20px;
}

.command-tile-large span {
    color: var(--brand-teal-dark);
    background: #fff;
}

.command-tile small {
    display: block;
    color: #607679;
    font-weight: 800;
}

.command-tile-large small {
    color: rgba(255, 255, 255, 0.78);
}

.command-tile strong {
    display: block;
    margin-top: 6px;
    color: var(--brand-charcoal);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 900;
}

.command-tile-large strong {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.command-meter {
    height: 10px;
    margin-top: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    overflow: hidden;
}

.command-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #fff, var(--brand-gold-soft));
    animation: progressPulse 3s ease-in-out infinite;
}

.orbit-ring-inner .orbit-node {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
    animation: counterSpinReverse 17s linear infinite;
}

.n1 { top: -2%; left: 48%; }
.n2 { top: 18%; right: -3%; }
.n3 { top: 49%; right: -4%; }
.n4 { bottom: 15%; right: 6%; }
.n5 { bottom: -2%; left: 46%; }
.n6 { top: 22%; left: -4%; }

.m1 { left: -6%; top: 44%; }
.m2 { top: -6%; left: 44%; }
.m3 { right: -6%; top: 44%; }
.m4 { bottom: -6%; left: 44%; }

.bg-facebook { background: #1877f2; }
.bg-linkedin { background: #0a66c2; }
.bg-google { background: #ea4335; }
.bg-youtube { background: #ff0000; }
.bg-web { background: #f59e0b; }
.bg-message { background: #0084ff; }
.bg-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.bg-mail { background: #38bdf8; }
.bg-whatsapp { background: #25d366; }
.bg-chat { background: #94a3b8; }

@keyframes spinOrbit {
    to { transform: rotate(360deg); }
}

@keyframes spinOrbitReverse {
    to { transform: rotate(-360deg); }
}

@keyframes counterSpin {
    to { transform: rotate(-360deg); }
}

@keyframes counterSpinReverse {
    to { transform: rotate(360deg); }
}

.why-erp-section {
    position: relative;
}

.why-kicker {
    color: var(--brand-teal);
    font-weight: 800;
    letter-spacing: 0;
}

.why-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
    border: 1px solid #d7ecec;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 12px 25px rgba(5, 94, 99, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(11, 127, 131, 0.1), rgba(242, 185, 75, 0.08));
    transition: opacity 0.28s ease;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(11, 127, 131, 0.28);
    box-shadow: 0 24px 40px rgba(5, 94, 99, 0.16);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.why-card h5 {
    font-weight: 800;
    margin-bottom: 10px;
}

.why-card p {
    color: #465f62;
    margin: 0;
    line-height: 1.65;
}

.why-stats {
    background: #ffffff;
    border: 1px solid #d7ecec;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(5, 94, 99, 0.08);
}

.stat-item {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid #e2f0f0;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item h3 {
    margin: 0 0 6px;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--brand-teal-dark);
}

.stat-item p {
    margin: 0;
    color: #566f72;
    font-weight: 600;
    font-size: 0.95rem;
}

.connect-box {
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 18%, rgba(242, 185, 75, 0.24), transparent 30%),
        linear-gradient(115deg, var(--brand-teal-dark), var(--brand-teal));
    color: #fff;
    padding: 34px;
    box-shadow: 0 20px 34px rgba(5, 94, 99, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 44px rgba(5, 94, 99, 0.28);
}

.connect-box h3 {
    font-weight: 800;
}

.reviews-section {
    background: linear-gradient(180deg, #f7fafa 0%, #eef8f8 100%);
}

.review-card {
    background: #fff;
    border: 1px solid #d7ecec;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 12px 24px rgba(5, 94, 99, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 22px 36px rgba(5, 94, 99, 0.16);
}

.review-stars {
    color: var(--brand-gold);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
}

.review-text {
    color: #3f5b5e;
    line-height: 1.75;
    margin-bottom: 18px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
}

.review-user h6 {
    font-weight: 800;
    color: var(--brand-charcoal);
}

.review-user small {
    color: #607679;
}

.site-footer {
    margin-top: 60px;
    background: linear-gradient(130deg, var(--brand-charcoal), var(--brand-teal-dark));
    color: #d7f2f2;
}

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-modal.is-open {
    display: flex;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 43, 0.66);
    backdrop-filter: blur(4px);
}

.demo-modal-dialog {
    position: relative;
    width: min(1040px, 100%);
    height: 85vh;
    max-height: 85vh;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    z-index: 2;
    box-shadow: 0 28px 60px rgba(4, 28, 76, 0.35);
    animation: modalRise 0.3s ease;
}

@keyframes modalRise {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.demo-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(10, 28, 68, 0.16);
    color: var(--brand-charcoal);
    font-size: 1.4rem;
    z-index: 5;
}

.demo-modal-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    height: 100%;
}

.demo-modal-visual {
    background: linear-gradient(140deg, #eef8f8, #fff8e6);
    padding: 34px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: auto;
}

.demo-modal-visual h3 {
    margin: 0 0 22px;
    font-size: clamp(1.6rem, 2.7vw, 2.2rem);
    font-weight: 800;
    color: #2d3543;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.demo-modal-visual h3 span,
.demo-modal-visual h4 span {
    color: var(--brand-teal);
}

.demo-modal-visual img {
    width: 100%;
    max-width: 430px;
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(5, 94, 99, 0.18);
    margin-bottom: 14px;
}

.demo-modal-visual h4 {
    font-weight: 800;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    margin: 4px 0 6px;
    color: #2d3543;
}

.demo-modal-visual p {
    margin: 0;
    color: #4a6366;
    font-size: 1.08rem;
}

.demo-modal-form-wrap {
    background: #f7fbfb;
    padding: 52px 22px 18px;
    overflow-y: auto;
}

.demo-form {
    padding-bottom: 8px;
}

.demo-form .form-control {
    border: 1px solid #d7ecec;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1.05rem;
    color: var(--brand-charcoal);
}

.demo-form .form-control:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.15rem rgba(11, 127, 131, 0.18);
}

.demo-submit-btn {
    background: linear-gradient(130deg, var(--brand-teal), var(--brand-teal-dark));
    border: 0;
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(11, 127, 131, 0.22);
}

.demo-submit-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.footer-title {
    font-weight: 800;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo {
    width: 60px;
    height: 57px;
    object-fit: cover;
    border-radius: 8px;
}

.footer-copy {
    color: #b7d8d8;
    max-width: 340px;
    line-height: 1.7;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brand-gold);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    color: #d7f2f2;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--brand-gold);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d7f2f2;
    border: 1px solid rgba(215, 242, 242, 0.28);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-charcoal);
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 0 14px rgba(242, 185, 75, 0.34);
}

.footer-contact {
    color: #c8e3e3;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--brand-gold);
}

.footer-contact i {
    color: var(--brand-gold);
}

.footer-divider {
    margin: 24px 0 18px;
    border-color: rgba(255, 231, 174, 0.2);
}

.footer-bottom {
    color: #b7d8d8;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.reveal-slide-left {
    transform: translateX(-34px);
}

.reveal-slide-right {
    transform: translateX(34px);
}

.reveal-zoom {
    transform: translateY(20px) scale(0.94);
}

.row > div:nth-child(1) > .reveal-stagger { --reveal-delay: 0.04s; }
.row > div:nth-child(2) > .reveal-stagger { --reveal-delay: 0.1s; }
.row > div:nth-child(3) > .reveal-stagger { --reveal-delay: 0.16s; }
.row > div:nth-child(4) > .reveal-stagger { --reveal-delay: 0.22s; }

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .topbar {
        display: none;
    }

    .site-main {
        padding-top: 0;
    }

    .topbar-social {
        width: 100%;
        justify-content: flex-start;
    }

    .navbar-nav .nav-link {
        padding-left: 0 !important;
    }

    .btn-contact {
        margin-top: 14px;
        display: inline-block;
    }

    .hero-dashboard {
        display: grid;
        gap: 10px;
        animation: none;
        padding: 0;
    }

    .hero-widget {
        position: static;
        width: 100%;
    }

    .lead-orbit-wrap {
        border-radius: 18px;
    }

    .orbit-stage {
        width: min(440px, 100%);
        margin-top: 12px;
    }

    .why-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-item:nth-child(2n) {
        border-right: 0;
    }

    .demo-modal-grid {
        grid-template-columns: 1fr;
        height: 100%;
    }

    .demo-modal-form-wrap {
        padding-top: 26px;
    }

    .demo-modal-visual {
        padding: 34px 20px 22px;
    }

    .dash-body {
        grid-template-columns: 1fr;
    }

    .dash-card {
        grid-column: span 1;
    }

    .command-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .command-tile-large {
        min-height: 240px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 72px;
    }

    .hero-trust-row {
        grid-template-columns: 1fr;
    }

    .orbit-stage {
        width: min(340px, 100%);
    }

    .orbit-node {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .orbit-ring-inner .orbit-node {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .orbit-core {
        width: 108px;
        height: 108px;
    }

    .orbit-core img {
        width: 44px;
        height: 44px;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid #e2f0f0;
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .demo-modal {
        padding: 10px;
    }

    .demo-modal-dialog {
        height: auto;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }

    .demo-modal-close {
        width: 40px;
        height: 40px;
        right: 8px;
        top: 8px;
    }

    .demo-form .form-control {
        font-size: 1.05rem;
    }

    .demo-submit-btn {
        font-size: 1.15rem;
    }

    .hero-widget {
        margin-top: 0;
    }

    .command-grid {
        grid-template-columns: 1fr;
    }

    .command-tile-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Site-wide responsive hardening */
img,
svg,
video,
iframe {
    max-width: 100%;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .hero-widget {
        min-width: 168px;
        padding: 8px 9px;
    }

    .hero-widget-a {
        left: -48px;
    }

    .hero-widget-b {
        right: -48px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-shell {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .brand-logo {
        width: 96px;
        height: 58px;
    }

    .navbar-collapse {
        margin-top: 10px;
        padding: 12px 14px 16px;
        border: 1px solid rgba(11, 127, 131, 0.12);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 16px 30px rgba(5, 94, 99, 0.1);
    }

    .hero-section,
    .about-hero,
    .contact-hero {
        padding-top: 58px;
        padding-bottom: 46px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .hero-subtitle,
    .section-subtitle,
    .lead-desc {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .hero-cta .btn,
    .connect-box .btn,
    .btn-contact {
        width: 100%;
        justify-content: center;
    }

    .hero-meta {
        display: grid;
        gap: 10px;
    }

    .dashboard-window,
    .premium-card,
    .why-card,
    .review-card,
    .connect-box,
    .lead-orbit-wrap {
        border-radius: 16px;
    }

    .premium-card,
    .why-card,
    .review-card {
        padding: 22px 18px;
    }

    .connect-box {
        padding: 24px 20px;
        text-align: center;
    }

    .command-section,
    .why-erp-section,
    .reviews-section,
    .lead-orbit-section,
    .connect-section {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }

    .command-tile {
        min-height: auto;
        padding: 18px;
    }

    .site-footer {
        margin-top: 36px;
    }

    .site-footer .container {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }
}

@media (max-width: 420px) {
    .hero-title,
    .section-title,
    .lead-title {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .dash-body,
    .dashboard-window,
    .lead-orbit-wrap,
    .stats-wrap {
        min-width: 0;
    }
}
