* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: auto;
    /* allow page scrolling */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--topbar-height);
    /* header height only */
    background: #141519;
    color: #ffffff;
}

/* Ensure main content stretches to push footer down when content is short */
.banner,
.content,
.services-container,
.contact-page {
    flex: 1;
}

/* Footer should stay at bottom when page content is short */
.site-footer {
    margin-top: auto;
}

/* Site banner (build notice) */
.site-banner {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    height: var(--banner-height);
    min-height: var(--banner-height);
    background: linear-gradient(90deg, rgba(5, 185, 216, 0.12), rgba(255, 194, 58, 0.06));
    color: #fff;
    padding: 8px 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1101;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}

.site-banner.scrolled {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.site-banner .banner-close {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
}

/* when banner is dismissed, reduce padding to topbar only */
body.banner-hidden {
    padding-top: var(--topbar-height);
}

/* Toast / small in-page confirmation */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: rgba(5, 185, 216, 0.96);
    color: #071a1c;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    min-width: 200px;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

:root {
    --topbar-height: 64px;
    --banner-height: 36px;
    --bg: #141519;
    --card: #202127;
    --primary: #05b9d8;
    --secondary: #007e94;
    --accent: #ffc23a;
    /* brand yellow (used sparingly) */
    --accent-muted: rgba(255, 194, 58, 0.72);
    --accent-subtle: rgba(255, 194, 58, 0.04);
}

/* improved focus-visible for keyboard users */
.btn:focus-visible,
.nav-link:focus,
.nav-toggle:focus,
.primary-cta:focus-visible {
    outline: 3px solid rgba(5, 185, 216, 0.12);
    outline-offset: 3px;
    border-radius: 10px;
}


/* Banner Container */
.banner {
    position: relative;
    width: 100%;
    /* allow content to grow while keeping full-screen feel */
    background: #141519;
    /* Solid background as requested */
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 20px 0 40px;
    /* add breathing room for stacked content */
}


/* Circuit Board Background */
.circuit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    /* very subtle */
    pointer-events: none;
    filter: blur(0.6px);
}


/* Circuit Lines */
.circuit-line {
    position: absolute;
    background: rgba(255, 194, 58, 0.08);
    box-shadow: none;
    height: 1px;
    opacity: 0.9;
}

.line-1 {
    width: 200px;
    height: 2px;
    top: 15%;
    left: 5%;
    transform: rotate(-35deg);
}

.line-2 {
    width: 150px;
    height: 2px;
    top: 25%;
    right: 10%;
    transform: rotate(45deg);
}

.line-3 {
    width: 180px;
    height: 2px;
    bottom: 20%;
    left: 8%;
    transform: rotate(25deg);
}

.line-4 {
    width: 120px;
    height: 2px;
    top: 40%;
    left: 15%;
    transform: rotate(-15deg);
}

.line-5 {
    width: 160px;
    height: 2px;
    bottom: 30%;
    right: 15%;
    transform: rotate(-40deg);
}

.line-6 {
    width: 100px;
    height: 2px;
    top: 60%;
    right: 25%;
    transform: rotate(20deg);
}

.line-7 {
    width: 140px;
    height: 2px;
    top: 35%;
    right: 30%;
    transform: rotate(-25deg);
}

.line-8 {
    width: 110px;
    height: 2px;
    bottom: 15%;
    right: 20%;
    transform: rotate(35deg);
}

.line-9 {
    width: 130px;
    height: 2px;
    top: 50%;
    left: 10%;
    transform: rotate(-30deg);
}

.line-10 {
    width: 95px;
    height: 2px;
    bottom: 25%;
    left: 30%;
    transform: rotate(15deg);
}

.line-11 {
    width: 170px;
    height: 2px;
    top: 20%;
    left: 40%;
    transform: rotate(-45deg);
}

.line-12 {
    width: 125px;
    height: 2px;
    bottom: 35%;
    right: 40%;
    transform: rotate(40deg);
}

/* Nodes (circles at line intersections) */
.node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 194, 58, 0.12);
    border-radius: 50%;
    box-shadow: none;
    animation: none;
}

.node-1 {
    top: 15%;
    left: 5%;
}

.node-2 {
    top: 15%;
    left: 17%;
}

.node-3 {
    top: 25%;
    right: 10%;
}

.node-4 {
    top: 25%;
    right: 21%;
}

.node-5 {
    bottom: 20%;
    left: 8%;
}

.node-6 {
    bottom: 20%;
    left: 20%;
}

.node-7 {
    top: 40%;
    left: 15%;
}

.node-8 {
    top: 40%;
    left: 26%;
}

.node-9 {
    bottom: 30%;
    right: 15%;
}

.node-10 {
    top: 60%;
    right: 25%;
}

.node-11 {
    top: 35%;
    right: 30%;
}

.node-12 {
    top: 35%;
    right: 41%;
}

.node-13 {
    bottom: 15%;
    right: 20%;
}

.node-14 {
    bottom: 15%;
    right: 31%;
}

.node-15 {
    top: 50%;
    left: 10%;
}

.node-16 {
    bottom: 25%;
    left: 30%;
}

.node-17 {
    top: 20%;
    left: 40%;
}

.node-18 {
    bottom: 35%;
    right: 40%;
}

/* Floating Dots */
.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}


.dot-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.dot-2 {
    top: 20%;
    left: 80%;
    animation-delay: 0.5s;
}

.dot-3 {
    top: 30%;
    left: 15%;
    animation-delay: 1s;
}

.dot-4 {
    top: 40%;
    left: 70%;
    animation-delay: 1.5s;
}

.dot-5 {
    top: 50%;
    left: 25%;
    animation-delay: 2s;
}

.dot-6 {
    top: 60%;
    left: 85%;
    animation-delay: 2.5s;
}

.dot-7 {
    top: 70%;
    left: 30%;
    animation-delay: 3s;
}

.dot-8 {
    top: 80%;
    left: 60%;
    animation-delay: 3.5s;
}

.dot-9 {
    top: 15%;
    right: 15%;
    animation-delay: 0.8s;
}

.dot-10 {
    top: 35%;
    right: 25%;
    animation-delay: 1.3s;
}

.dot-11 {
    top: 55%;
    right: 35%;
    animation-delay: 1.8s;
}

.dot-12 {
    top: 75%;
    right: 20%;
    animation-delay: 2.3s;
}

.dot-13 {
    top: 45%;
    left: 50%;
    animation-delay: 2.8s;
}

.dot-14 {
    top: 65%;
    left: 45%;
    animation-delay: 3.3s;
}

.dot-15 {
    top: 85%;
    left: 75%;
    animation-delay: 3.8s;
}

.dot-16 {
    top: 12%;
    left: 60%;
    animation-delay: 0.3s;
}

.dot-17 {
    top: 28%;
    left: 40%;
    animation-delay: 1.1s;
}

.dot-18 {
    top: 42%;
    left: 90%;
    animation-delay: 1.9s;
}

.dot-19 {
    top: 58%;
    left: 10%;
    animation-delay: 2.4s;
}

.dot-20 {
    top: 72%;
    left: 55%;
    animation-delay: 3.1s;
}

.dot-21 {
    top: 18%;
    right: 10%;
    animation-delay: 0.6s;
}

.dot-22 {
    top: 48%;
    right: 12%;
    animation-delay: 1.6s;
}

.dot-23 {
    top: 68%;
    right: 28%;
    animation-delay: 2.6s;
}

.dot-24 {
    top: 88%;
    right: 15%;
    animation-delay: 3.6s;
}

.dot-25 {
    top: 52%;
    left: 35%;
    animation-delay: 2.1s;
}

/* Content, Topbar & Hero */
.content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 8px 20px;
    /* reduced top padding so hero sits closer to the header */
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
}

.topbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #141519;
    /* solid - avoids white showing through */
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* topbar-inner now stretches the full viewport width so the nav reaches the screen edges */
.topbar-fixed .topbar-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 64px;
}


/* remove dev-badge (no longer used) */
.dev-badge {
    display: none !important;
}



.nav {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 0 1 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 8px;
    border-radius: 8px;
}

.nav-link:focus {
    outline: 2px solid rgba(5, 185, 216, 0.12);
    outline-offset: 2px;
}

.nav-cta {
    padding: 8px 14px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.logo {
    display: flex;
    gap: 12px;
    align-items: center;
}

.logo-circle {
    width: 44px;
    height: 44px;
    background: #ffc23a;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(255, 194, 58, 0.12);
}

/* Compact logo variant (logo-compact) */
.logo-compact {
    gap: 10px;
}

.logo-compact .logo-circle {
    width: 36px;
    height: 36px;
    box-shadow: 0 6px 12px rgba(255, 194, 58, 0.10);
}

.logo-compact .company-name {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-left: 4px;
}

@media (max-width:680px) {
    .logo-compact .company-name {
        display: none;
    }

    .logo-img {
        width: 36px;
        height: auto;
    }
}

/* Logo image */
.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.logo-img[alt] {
    display: block;
}

/* Hide the old subtitle when logo-compact is used */
.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.company-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.hero-left,
.hero-center {
    text-align: left;
}

.hero-minimal .hero-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-notice {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 194, 58, 0.1);
    border: 1px solid rgba(255, 194, 58, 0.2);
    color: #ffc23a;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.main-title {
    font-weight: 800;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.02;
    margin: 0 0 12px 0;
    color: #fff;
    letter-spacing: -0.4px;
}

.lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}

/* Trust row */
.trust-row {
    display: flex;
    gap: 20px;
    margin: 12px 0 18px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.trust-item strong {
    color: #fff;
    font-size: 16px;
}

.trust-item.accent strong {
    color: var(--accent-muted);
    font-size: 14px;
    letter-spacing: 0.2px;
}

.trust-item.accent span {
    color: rgba(255, 194, 58, 0.62);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Subtle yellow underline under the title */
.main-title {
    position: relative;
}

.main-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-muted), rgba(255, 194, 58, 0.66));
    border-radius: 3px;
    margin-top: 10px;
    opacity: 0.86;
    box-shadow: 0 6px 14px rgba(255, 194, 58, 0.04);
}

.main-title:hover::after {
    transform: translateY(-1px);
    transition: transform 160ms ease;
}

/* CTA styles */
.primary-cta {
    background: var(--primary);
    color: #141519;
    border: 2px solid var(--primary);
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(5, 185, 216, 0.06);
    transition: transform 180ms ease, box-shadow 220ms ease;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 185, 216, 0.10), 0 0 0 4px rgba(255, 194, 58, 0.02) inset;
}

.primary-cta:focus-visible {
    box-shadow: 0 10px 30px rgba(5, 185, 216, 0.12), 0 0 0 6px rgba(255, 194, 58, 0.06) inset;
}

.outline-cta {
    background: transparent;
    color: #05b9d8;
    border: 2px solid rgba(5, 185, 216, 0.14);
    padding: 10px 16px;
    border-radius: 40px;
    font-weight: 700;
}

.outline-cta:hover {
    background: rgba(5, 185, 216, 0.06);
}

/* Small yellow accent bar on compact cards */
.card.compact {
    position: relative;
    padding-left: 20px;
}

.card.compact::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 22px;
    width: 3px;
    height: 18px;
    background: rgba(255, 194, 58, 0.62);
    border-radius: 2px;
    opacity: 0.88;
    box-shadow: 0 6px 12px rgba(255, 194, 58, 0.03);
}

.card.compact.accent-teal::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 22px;
    width: 3px;
    height: 18px;
    background: rgba(0, 126, 148, 0.78);
    border-radius: 2px;
    opacity: 0.95;
    box-shadow: 0 6px 12px rgba(0, 126, 148, 0.03);
}

/* Remove colored accent bars for cards in the hero right column */
.hero-right .card.compact::before {
    display: none !important;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 6px;
}

.micro-trust {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-size: 13px;
}

/* Compact cards on right */
.card.compact {
    background: #202127;
    padding: 16px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.32);
}

.card.compact h4 {
    margin: 0 0 8px 0;
    color: #05b9d8;
}

.card.compact p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.btn.small {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 10px;
}

/* Entrance animations */
.fade-up {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 520ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.fade-up.delay {
    animation-delay: 100ms;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: 2;
    }

    .hero-left {
        order: 1;
        text-align: center;
    }

    .trust-row {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }
}

/* Cards (right column) */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.card {
    background: #202127;
    padding: 18px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 12px rgba(2, 6, 23, 0.35);
}

.card h4 {
    margin: 0 0 8px 0;
    color: #05b9d8;
    font-size: 15px;
}

.card p {
    margin: 0;
    font-size: 13px;
    opacity: 0.92;
    line-height: 1.45;
}

/* Reduce highlight density */
.highlight-card {
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(5, 185, 216, 0.08);
}

/* Make feature list compact */
.feature-list {
    margin-top: 8px;
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #05b9d8, #007e94);
    color: #fff;
    margin-bottom: 12px;
}

.highlight-card {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #05b9d8, #007e94);
    padding: 14px 18px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 8px 26px rgba(5, 185, 216, 0.12);
}

.highlight-left h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 700;
}

/* Adjustments to subscription to fit left column */
.subscribe-form {
    justify-content: flex-start;
}

/* Responsiveness */
@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: 2;
    }

    .hero-left {
        order: 1;
    }

    .main-title {
        text-align: center;
    }

    .topbar {
        padding: 10px;
    }

    .logo-text {
        display: none;
    }
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        background: #141519;
        width: 100%;
        max-width: none;
        flex-direction: column;
        padding: 12px 20px;
        gap: 10px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        border-radius: 0;
        transform: translateY(-6px) scale(0.98);
        transition: transform 220ms cubic-bezier(.2, .9, .2, 1), opacity 200ms ease;
        opacity: 0;
    }

    .nav.open {
        display: flex;
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .nav-link {
        font-size: 15px;
        padding: 8px 6px;
    }

    .nav-cta {
        width: 100%;
    }

    .topbar-fixed {
        height: 64px;
    }
}

/* Close mobile nav when resizing up */
@media (min-width: 921px) {
    .nav {
        display: flex !important;
        position: static;
        background: transparent;
        width: auto;
        flex-direction: row;
        gap: 18px;
        padding: 0;
        box-shadow: none;
    }

    .nav-toggle {
        display: none;
    }
}

/* Main Title - duplicate removed (styles consolidated above) */

.sub-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}



/* Subscribe form */
.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.subscribe-input {
    padding: 12px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    min-width: 260px;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
    background: #ffc23a;
    color: #141519;
    border: 2px solid #ffc23a;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 194, 58, 0.2);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 194, 58, 0.25);
}


/* Buttons Container */
.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

/* Button Base Styles */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid transparent;
}

/* Services Button */
.services-btn {
    background: #007e94;
    color: #ffffff;
    border: 2px solid #007e94;
    box-shadow: none;
}


.services-btn:hover {
    background: #007e94;
    color: #ffffff;
    border-color: #007e94;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 126, 148, 0.25);
}

/* Contact Button */
.contact-btn {
    background: transparent;
    color: #ffc23a;
    border: 2px solid rgba(255, 194, 58, 0.18);
    box-shadow: none;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffc23a;
    border-color: rgba(255, 194, 58, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}



/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 0;
    /* reduced: no extra white gap above footer */
    padding: 12px 0;
    /* tighter vertical padding */
    color: rgba(255, 255, 255, 0.72);
    background: #141519;
    /* solid footer background to avoid white showing through */
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 600px) {
    .site-footer .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

.site-footer .footer-left {
    font-size: 14px;
}

.site-footer .footer-right {
    display: flex;
    gap: 12px;
}

.site-footer .footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
}

.site-footer .footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.footer-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.54);
    margin-top: 4px;
}

/* dev-badge removed - header badge was removed for a cleaner, professional hero */
.dev-badge {
    display: none !important;
}

/* Small nav refinements */
.nav-link:hover {
    color: #fff;
}

.nav-cta {
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Hero CTAs and trust */
.micro-trust {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 14px;
}

.hero-ctas {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-btn {
    background: #05b9d8;
    color: #141519;
    border: 2px solid #05b9d8;
    padding: 10px 16px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 14px;
}

.chat-btn:hover {
    background: #007e94;
    border-color: #007e94;
    color: #fff;
    transform: translateY(-2px);
}

/* Services / secondary CTA */
.services-btn {
    background: #007e94;
    color: #ffffff;
    border: 2px solid #007e94;
    padding: 10px 16px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: none;
}

.services-btn:hover {
    background: #006a7f;
    border-color: #006a7f;
}

/* Feature list */
.feature-list {
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 6px;
}

.services-overview {
    padding: 80px 20px;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card-mini {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card-mini:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.service-card-mini .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card-mini h4 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
}

.service-card-mini p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Scroll Fade-up Utility */
.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay {
    animation-delay: 0.2s;
}

.delay-large {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Section */
.contact-section {
    padding: 48px 20px;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cards {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 200px;
}

.chat-reminder {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
}

/* Minimal contact layout used on contact page */
.contact-minimal .contact-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
}

.contact-minimal .contact-left {
    padding-right: 10px;
}

.contact-minimal .contact-right {
    padding-left: 10px;
}

.contact-minimal .contact-form input,
.contact-minimal .contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    margin-bottom: 8px;
}

@media (max-width:920px) {
    .contact-minimal .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-minimal .contact-right {
        order: 2;
    }

    .contact-minimal .contact-left {
        order: 1;
        text-align: center;
    }
}

/* Modal (minimal) */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(4, 6, 10, 0.6);
    z-index: 2000;
}

.modal-panel {
    background: var(--bg);
    padding: 18px;
    border-radius: 10px;
    width: 420px;
    max-width: 92%;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.45);
    position: relative;
}

.modal-panel h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.modal-panel input,
.modal-panel textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 20px;
}

.modal-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 8px;
}

.audit-note {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

/* Buttons in modal */
.modal-panel .primary-cta {
    padding: 10px 16px;
}

.modal-panel .outline-cta {
    padding: 10px 14px;
}

/* In-modal success status */
.audit-status {
    display: none;
    margin-top: 12px;
    border-radius: 8px;
    padding: 10px 12px;
    color: #0f2b2f;
    background: rgba(5, 185, 216, 0.14);
}

/* Screen-reader only helper (global live region) */
.sr-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}




/* Services Section */

.services-section {
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px 80px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.services-section .container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}



.service-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.service-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
    /* Alignment aid */
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 18px rgba(255, 194, 58, 0.25);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 12px 30px rgba(255, 194, 58, 0.4);
        transform: translateY(-4px);
    }

    100% {
        box-shadow: 0 0 18px rgba(255, 194, 58, 0.25);
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    background: rgba(245, 176, 65, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: #F5B041;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(245, 176, 65, 0.3);
}

.service-content {
    flex: 1;
    text-align: left;
}

.service-content h3 {
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}

.service-card.featured {
    border: 1px solid rgba(245, 176, 65, 0.3);
    background: linear-gradient(145deg, rgba(255, 194, 58, 0.03), rgba(255, 255, 255, 0.02));
}

.free-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: #F5B041;
    color: #0d7377;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(245, 176, 65, 0.5);
    }

    to {
        text-shadow: 0 0 40px rgba(245, 176, 65, 0.8);
    }
}

@keyframes pulse-white {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 255, 255, 0.8);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(245, 176, 65, 0.4);
        background: #F5B041;
    }

    50% {
        box-shadow: 0 0 40px rgba(245, 176, 65, 0.7);
        background: #FFC870;
    }
}

/* Zoho Floating Button */
.zoho-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #05b9d8;
    color: #141519;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(5, 185, 216, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.zoho-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(5, 185, 216, 0.7);
    background: #007e94;
    color: #ffffff;
}

.zoho-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Mobile Nav & Layout Refinements */
@media (max-width: 920px) {
    .nav {
        background: rgba(20, 21, 25, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 24px 20px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding: 40px 0;
    }

    .hero-left,
    .hero-right {
        order: initial;
        text-align: center;
    }

    .main-title::after {
        margin: 10px auto;
    }

    .trust-row {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .services-grid-mini {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .contact-cards {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 32px;
    }

    .lead {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .service-card-mini,
    .service-card {
        padding: 30px 20px;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto 15px;
    }

    .site-footer .footer-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-unified {
        gap: 30px 40px;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .services-container {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .services-unified {
        padding: 30px 25px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .service-content {
        text-align: center;
    }
}