/* =========================================================
   QBOTICK TECHNOLOGIES
   MAIN STYLESHEET
   ========================================================= */

/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --primary: #0d6efd;
    --primary-light: #2d8cff;
    --primary-dark: #0056d6;

    --body-bg: #02070d;
    --section-bg: #030a12;
    --card-bg: rgba(8, 20, 34, 0.78);
    --card-bg-solid: #071321;

    --text-primary: #f4f8ff;
    --text-secondary: #a9b8ca;
    --text-muted: #728196;

    --border: rgba(255, 255, 255, 0.08);
    --border-blue: rgba(13, 110, 253, 0.35);

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --blue-glow: 0 0 35px rgba(13, 110, 253, 0.18);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --transition: all 0.3s ease;
}


/* =========================================================
   LIGHT MODE VARIABLES
   ========================================================= */

[data-bs-theme="light"] {

    --body-bg: #ffffff;
    --section-bg: #f8fbff;

    --card-bg: rgba(255, 255, 255, 0.92);
    --card-bg-solid: #ffffff;

    --text-primary: #101828;
    --text-secondary: #475467;
    --text-muted: #667085;

    --border: rgba(16, 24, 40, 0.08);
    --border-blue: rgba(13, 110, 253, 0.22);

    --shadow: 0 15px 45px rgba(16, 24, 40, 0.08);
    --blue-glow: 0 0 35px rgba(13, 110, 253, 0.08);
}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;

    background:
        radial-gradient(
            circle at 80% 5%,
            rgba(13, 110, 253, 0.08),
            transparent 25%
        ),
        var(--body-bg);

    color: var(--text-primary);

    line-height: 1.7;

    overflow-x: hidden;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

::selection {
    background: var(--primary);
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    min-height: 76px;

    background: rgba(2, 7, 13, 0.78);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: var(--transition);
}

[data-bs-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.88);
}

.brand-logo {
    width: 155px;
    max-height: 48px;
    object-fit: contain;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    position: relative;

    padding: 10px 13px !important;

    color: var(--text-secondary) !important;

    font-size: 13px;
    font-weight: 500;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 3px;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   NAV CTA
   ========================================================= */

.nav-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 18px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;
}

.nav-cta i {
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(4px);
}


/* =========================================================
   THEME TOGGLE
   ========================================================= */

.theme-toggle {
    width: 38px;
    height: 38px;

    margin-right: 12px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: transparent;

    color: var(--text-primary);

    cursor: pointer;

    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary);
    border-color: var(--border-blue);

    transform: rotate(15deg);
}


/* =========================================================
   BOOTSTRAP BUTTON OVERRIDES
   ========================================================= */

.btn {
    border-radius: 8px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    border-color: var(--primary);

    box-shadow:
        0 8px 25px rgba(13, 110, 253, 0.22);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );

    border-color: var(--primary);

    box-shadow:
        0 12px 35px rgba(13, 110, 253, 0.3);
}

.btn-outline-light {
    color: var(--text-primary);

    border-color: var(--border);
}

.btn-outline-light:hover {
    color: var(--text-primary);

    background: rgba(255, 255, 255, 0.05);

    border-color: var(--border-blue);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    padding: 150px 0 100px;

    overflow: hidden;
}

.hero-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -220px;
    right: -180px;

    background: radial-gradient(
        circle,
        rgba(13, 110, 253, 0.16),
        transparent 68%
    );

    pointer-events: none;
}

.hero-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    bottom: -250px;
    left: -200px;

    background: radial-gradient(
        circle,
        rgba(13, 110, 253, 0.08),
        transparent 70%
    );

    pointer-events: none;
}

.section-badge {
    display: inline-flex;

    align-items: center;

    padding: 7px 14px;

    margin-bottom: 20px;

    border: 1px solid var(--border-blue);

    border-radius: 30px;

    background: rgba(13, 110, 253, 0.08);

    color: #4da3ff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.3px;
}

.hero-title {
    max-width: 700px;

    margin-bottom: 24px;

    color: var(--text-primary);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}

.hero-title span {
    display: block;

    color: var(--primary);

    background: linear-gradient(
        90deg,
        #1683ff,
        #56b1ff
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 620px;

    margin-bottom: 32px;

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;
}

.hero-actions .btn {
    padding: 13px 20px;
}

.hero-actions .btn i {
    margin-left: 6px;
}

.hero-trust-points {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}

.hero-trust-points span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 500;
}

.hero-trust-points i {
    color: var(--primary);

    font-size: 13px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

/* =========================================================
   HERO VISUAL IMAGE
   ========================================================= */

.hero-visual {
    position: relative;

    width: 100%;
    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: visible;
}


/* HERO IMAGE */

.hero-image {
    display: block;

    width: 100%;
    max-width: 720px;

    height: auto;

    object-fit: contain;

    border-radius: 20px;

    filter:
        drop-shadow(
            0 25px 45px rgba(0, 0, 0, 0.35)
        );

    transform: translateX(15px);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* SUBTLE HOVER */

.hero-image:hover {

    transform:
        translateX(15px)
        translateY(-5px);

    filter:
        drop-shadow(
            0 30px 55px rgba(13, 110, 253, 0.18)
        );
}


/* HERO IMAGE GLOW */

.hero-visual::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: 50%;
    right: 5%;

    transform:
        translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(13, 110, 253, 0.12),
            transparent 68%
        );

    filter: blur(15px);

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    position: relative;

    padding: 105px 0;

    border-top: 1px solid var(--border);
}

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-label {
    display: block;

    margin-bottom: 12px;

    color: #1683ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.section-title {
    margin-bottom: 18px;

    color: var(--text-primary);

    font-size: clamp(30px, 3.5vw, 44px);

    font-weight: 750;

    line-height: 1.15;

    letter-spacing: -1px;
}

.section-description {
    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(13, 110, 253, 0.025)
        );
}

.feature-card {
    height: 100%;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--card-bg);

    backdrop-filter: blur(10px);

    box-shadow: var(--shadow);

    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color: var(--border-blue);

    box-shadow: var(--blue-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: rgba(13, 110, 253, 0.1);

    color: #1683ff;

    font-size: 21px;
}

.feature-card h3 {
    margin-bottom: 10px;

    color: var(--text-primary);

    font-size: 15px;
    font-weight: 650;
}

.feature-card p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: var(--section-bg);
}

.service-card {
    height: 100%;

    padding: 28px 22px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--card-bg);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: var(--border-blue);

    box-shadow: var(--blue-glow);
}

.service-card-highlight {
    border-color: var(--border-blue);

    background:
        linear-gradient(
            145deg,
            rgba(13, 110, 253, 0.09),
            var(--card-bg)
        );
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: rgba(13, 110, 253, 0.09);

    color: #1683ff;

    font-size: 24px;
}

.service-card h3 {
    margin-bottom: 10px;

    color: var(--text-primary);

    font-size: 16px;
    font-weight: 650;
}

.service-card p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.solution-wrapper {
    padding: 55px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(13, 110, 253, 0.08),
            transparent 35%
        ),
        var(--card-bg);

    box-shadow: var(--shadow);
}

.solution-list {
    margin-top: 30px;
}

.solution-item {
    display: grid;

    grid-template-columns:
        20px
        1fr
        20px
        150px;

    align-items: center;

    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    color: var(--text-secondary);

    font-size: 13px;
}

.solution-item:last-child {
    border-bottom: none;
}

.solution-item > i:first-child {
    color: var(--primary);

    font-size: 14px;
}

.solution-item > i:nth-of-type(2) {
    color: var(--text-muted);
}

.solution-item strong {
    color: var(--text-primary);

    font-weight: 600;
}

.solution-visual {
    min-height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;
}

.solution-visual::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    border: 1px solid rgba(13, 110, 253, 0.25);

    box-shadow:
        0 0 70px rgba(13, 110, 253, 0.1);
}

.solution-node {
    position: relative;

    width: 110px;
    height: 110px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(13, 110, 253, 0.6);

    background:
        radial-gradient(
            circle,
            rgba(13, 110, 253, 0.2),
            rgba(13, 110, 253, 0.04)
        );

    color: #1683ff;

    font-size: 54px;
    font-weight: 800;

    box-shadow:
        0 0 35px rgba(13, 110, 253, 0.25);
}


/* =========================================================
   WHY QBOTICK
   ========================================================= */

.why-card {
    height: 100%;

    text-align: center;

    padding: 22px 12px;
}

.why-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: rgba(13, 110, 253, 0.08);

    border: 1px solid var(--border-blue);

    color: #1683ff;

    font-size: 21px;
}

.why-card h3 {
    margin-bottom: 8px;

    color: var(--text-primary);

    font-size: 14px;
    font-weight: 650;
}

.why-card p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
    background: var(--section-bg);
}

.process-card {
    position: relative;

    height: 100%;

    padding: 25px 20px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--card-bg);

    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);

    border-color: var(--border-blue);
}

.process-number {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.process-card h3 {
    margin-bottom: 8px;

    color: var(--text-primary);

    font-size: 15px;
    font-weight: 650;
}

.process-card p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industry-card {
    height: 100%;

    min-height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 18px 10px;

    text-align: center;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--card-bg);

    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);

    border-color: var(--border-blue);

    box-shadow: var(--blue-glow);
}

.industry-card i {
    margin-bottom: 12px;

    color: #1683ff;

    font-size: 28px;
}

.industry-card h3 {
    margin: 0;

    color: var(--text-primary);

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding: 35px 0;
}

.cta-wrapper {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 38px 45px;

    border: 1px solid var(--border-blue);

    border-radius: var(--radius-lg);

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(13, 110, 253, 0.1),
            transparent 35%
        ),
        var(--card-bg);

    box-shadow:
        0 0 50px rgba(13, 110, 253, 0.05);
}

.cta-content .section-label {
    margin-bottom: 8px;
}

.cta-content h2 {
    margin-bottom: 8px;

    color: var(--text-primary);

    font-size: clamp(25px, 3vw, 36px);

    font-weight: 750;
}

.cta-content p {
    margin: 0;

    color: var(--text-secondary);

    font-size: 13px;
}

.cta-actions {
    display: flex;

    flex-shrink: 0;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding-bottom: 85px;
}

.contact-card {
    height: 100%;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--card-bg);

    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-blue);

    transform: translateY(-4px);
}

.contact-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 12px;

    background: rgba(13, 110, 253, 0.09);

    color: #1683ff;

    font-size: 19px;
}

.contact-card > span {
    display: block;

    margin-bottom: 5px;

    color: var(--text-muted);

    font-size: 11px;
}

.contact-card a,
.contact-card p {
    margin: 0;

    color: var(--text-primary);

    font-size: 13px;
    font-weight: 600;

    word-break: break-word;
}

.contact-card a:hover {
    color: var(--primary-light);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 45px 0 20px;

    border-top: 1px solid var(--border);

    background: var(--section-bg);
}

.footer-brand img {
    width: 150px;
}

.footer-nav {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 18px;

    padding: 0;

    margin: 0;

    list-style: none;
}

.footer-nav a {
    color: var(--text-secondary);

    font-size: 11px;

    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;

    justify-content: flex-end;

    gap: 9px;
}

.social-links a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    color: var(--text-secondary);

    font-size: 14px;

    transition: var(--transition);
}

.social-links a:hover {
    color: #ffffff;

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 35px;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;

    gap: 10px;
}

.footer-bottom a:hover {
    color: var(--text-primary);
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--primary);

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(13, 110, 253, 0.25);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}


/* =========================================================
   LIGHT MODE ADJUSTMENTS
   ========================================================= */

[data-bs-theme="light"] body {
    background:
        radial-gradient(
            circle at 80% 5%,
            rgba(13, 110, 253, 0.06),
            transparent 25%
        ),
        var(--body-bg);
}

[data-bs-theme="light"] .hero-section::before {
    opacity: 0.55;
}

[data-bs-theme="light"] .hero-placeholder {
    background:
        radial-gradient(
            circle,
            rgba(13, 110, 253, 0.1),
            rgba(255, 255, 255, 0.8) 65%
        );

    box-shadow:
        0 0 35px rgba(13, 110, 253, 0.12),
        0 0 90px rgba(13, 110, 253, 0.06);
}

[data-bs-theme="light"] .btn-outline-light {
    color: var(--text-primary);

    border-color: rgba(16, 24, 40, 0.15);
}

[data-bs-theme="light"] .btn-outline-light:hover {
    color: var(--text-primary);

    background: rgba(13, 110, 253, 0.05);

    border-color: var(--primary);
}


/* =========================================================
   MOBILE NAVBAR
   ========================================================= */

.navbar-toggler {
    border-color: var(--border);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

[data-bs-theme="light"] .navbar-toggler-icon {
    filter: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-placeholder {
        width: 290px;
        height: 290px;
    }

    .solution-item {
        grid-template-columns:
            20px
            1fr
            20px
            125px;
    }

}


@media (max-width: 991px) {

    .navbar {
        min-height: 70px;
    }

    .navbar-collapse {
        margin-top: 15px;

        padding: 15px;

        border: 1px solid var(--border);

        border-radius: 14px;

        background: var(--card-bg-solid);

        box-shadow: var(--shadow);
    }

    .navbar-nav {
        margin-bottom: 15px !important;
    }

    .nav-link {
        padding: 10px !important;
    }

    .nav-link::after {
        display: none;
    }

    .theme-toggle {
        margin: 5px 10px 15px 0;
    }

    .nav-cta {
        margin-bottom: 5px;
    }

    .hero-section {
        padding-top: 125px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-visual {
        min-height: 420px;

        margin-top: 30px;
    }

    .solution-wrapper {
        padding: 35px;
    }

    .solution-visual {
        min-height: 250px;
    }

    .cta-wrapper {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-brand,
    .social-links {
        display: flex;

        justify-content: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 767px) {

    .section {
        padding: 75px 0;
    }

    .hero-section {
        min-height: auto;

        padding: 120px 0 75px;
    }

    .hero-title {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-points {
        gap: 10px 15px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-placeholder {
        width: 230px;
        height: 230px;
    }

    .hero-q-icon {
        font-size: 90px;
    }

    .hero-placeholder::before {
        inset: -20px;
    }

    .hero-placeholder::after {
        inset: -40px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 32px;
    }

    .solution-wrapper {
        padding: 25px 20px;
    }

    .solution-item {
        grid-template-columns:
            18px
            1fr;

        gap: 8px;
    }

    .solution-item > i:nth-of-type(2),
    .solution-item strong {
        display: none;
    }

    .solution-visual {
        min-height: 210px;
    }

    .solution-visual::before {
        width: 180px;
        height: 180px;
    }

    .solution-node {
        width: 85px;
        height: 85px;

        font-size: 42px;
    }

    .cta-wrapper {
        padding: 30px 25px;
    }

    .cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .footer-bottom div {
        flex-wrap: wrap;

        justify-content: center;
    }

}


@media (max-width: 575px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brand-logo {
        width: 135px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-trust-points {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .hero-q-icon {
        font-size: 75px;
    }

    .section-title {
        font-size: 29px;
    }

    .feature-card,
    .service-card,
    .contact-card {
        padding: 22px;
    }

    .footer-nav {
        gap: 12px;
    }

    .footer-nav a {
        font-size: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   QBOTICK FINAL HERO DESIGN
   ========================================================= */

.hero-section {
    position: relative;

    min-height: 720px;

    padding: 145px 0 80px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(13, 110, 253, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(13, 110, 253, 0.05),
            transparent 30%
        ),
        var(--body-bg);
}


/* =========================================================
   HERO ROW
   ========================================================= */

.hero-row {
    min-height: 560px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content-column {
    position: relative;

    z-index: 5;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-title {
    max-width: 680px;

    margin-bottom: 25px;

    color: var(--text-primary);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.hero-title span {
    display: block;

    color: var(--primary);

    background:
        linear-gradient(
            90deg,
            #1683ff,
            #50b4ff
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-description {
    max-width: 600px;

    margin-bottom: 30px;

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 28px;
}

.hero-actions .btn {
    padding: 13px 20px;
}

.hero-actions .btn i {
    margin-left: 6px;
}


/* =========================================================
   HERO TRUST POINTS
   ========================================================= */

.hero-trust-points {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 20px;
}

.hero-trust-points span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--text-muted);

    font-size: 11px;

    font-weight: 500;
}

.hero-trust-points i {
    color: var(--primary);

    font-size: 13px;
}


/* =========================================================
   HERO IMAGE COLUMN
   ========================================================= */

.hero-image-column {
    position: relative;

    z-index: 2;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: flex-end;
}


/* =========================================================
   HERO VISUAL WRAPPER
   ========================================================= */

.hero-visual {
    position: relative;

    width: 760px;

    max-width: none;

    height: 560px;

    overflow: hidden;

    margin-right: -170px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   HERO IMAGE

   IMPORTANT:
   We intentionally zoom the image because the generated
   visual has empty space on its left side.
========================================================= */

.hero-image {
    position: absolute;

    width: 1250px;

    max-width: none;

    height: auto;

    left: -250px;

    top: 50%;

    transform: translateY(-50%);

    display: block;

    object-fit: contain;

    border-radius: 0;

    filter:
        drop-shadow(
            0 25px 45px rgba(0, 0, 0, 0.35)
        );

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* =========================================================
   HERO IMAGE GLOW
   ========================================================= */

.hero-visual::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: 30px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(13, 110, 253, 0.12),
            transparent 68%
        );

    filter: blur(25px);

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   DESKTOP LARGE SCREEN
   ========================================================= */

@media (min-width: 1400px) {

    .hero-visual {
        width: 850px;

        height: 600px;

        margin-right: -220px;
    }

    .hero-image {
        width: 1400px;

        left: -280px;
    }

}


/* =========================================================
   TABLET / LAPTOP
   ========================================================= */

@media (max-width: 1199px) {

    .hero-section {
        padding-top: 130px;
    }

    .hero-title {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .hero-image-column {
        min-height: 480px;
    }

    .hero-visual {
        width: 650px;

        height: 500px;

        margin-right: -150px;
    }

    .hero-image {
        width: 1050px;

        left: -210px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .hero-section {
        min-height: auto;

        padding: 125px 0 75px;
    }

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

    .hero-content-column {
        text-align: center;
    }

    .hero-title {
        max-width: 800px;

        margin-left: auto;
        margin-right: auto;

        font-size: 50px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-trust-points {
        justify-content: center;
    }

    .hero-image-column {
        min-height: 480px;

        margin-top: 25px;

        justify-content: center;
    }

    .hero-visual {
        width: 100%;

        max-width: 800px;

        height: 480px;

        margin-right: 0;

        overflow: hidden;
    }

    .hero-image {
        width: 1000px;

        left: 50%;

        transform:
            translate(-50%, -50%);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-section {
        padding: 115px 0 60px;
    }

    .hero-title {
        font-size: 40px;

        line-height: 1.1;

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 380px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-points {
        flex-direction: column;

        align-items: center;

        gap: 9px;
    }

    .hero-image-column {
        min-height: 360px;

        margin-top: 15px;
    }

    .hero-visual {
        width: 100%;

        height: 360px;

        overflow: hidden;
    }

    .hero-image {
        width: 760px;

        max-width: none;

        left: 50%;

        transform:
            translate(-50%, -50%);
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .hero-section {
        padding-top: 105px;
    }

    .hero-title {
        font-size: 35px;

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-image-column {
        min-height: 300px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-image {
        width: 650px;
    }

}

/* =========================================================
   HERO VISUAL - FINAL POSITION
   ========================================================= */

.hero-image {
    width: 1120px !important;

    max-width: none !important;

    left: -150px !important;

    top: 50% !important;

    transform: translateY(-50%) !important;

    transition: none !important;

    animation: none !important;

    pointer-events: none;
}


/* Remove hover movement */

.hero-image:hover {
    transform: translateY(-50%) !important;

    filter:
        drop-shadow(
            0 25px 45px rgba(0, 0, 0, 0.35)
        );
}


/* Desktop */

@media (min-width: 1200px) {

    .hero-visual {
        width: 720px;

        height: 540px;

        margin-right: -80px;

        overflow: hidden;
    }

    .hero-image {
        width: 1120px !important;

        left: -130px !important;
    }

}


/* Large desktop */

@media (min-width: 1400px) {

    .hero-visual {
        width: 760px;

        height: 560px;

        margin-right: -60px;
    }

    .hero-image {
        width: 1180px !important;

        left: -145px !important;
    }

}


/* Tablet */

@media (max-width: 1199px) {

    .hero-visual {
        width: 650px;

        height: 500px;

        margin-right: -80px;
    }

    .hero-image {
        width: 980px !important;

        left: -120px !important;
    }

}


/* Mobile */

@media (max-width: 991px) {

    .hero-image-column {
        min-height: 430px;

        margin-top: 30px;

        justify-content: center;
    }

    .hero-visual {
        width: 100%;

        height: 430px;

        margin-right: 0;

        overflow: hidden;
    }

    .hero-image {
        width: 900px !important;

        left: 50% !important;

        transform:
            translate(-50%, -50%) !important;
    }

}


/* Small mobile */

@media (max-width: 767px) {

    .hero-image-column {
        min-height: 350px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-image {
        width: 760px !important;
    }

}


/* Very small mobile */

@media (max-width: 575px) {

    .hero-image-column {
        min-height: 300px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-image {
        width: 680px !important;
    }

}

/* =========================================================
   HERO IMAGE - FINAL FIT ADJUSTMENT
   ========================================================= */

@media (min-width: 1200px) {

    .hero-visual {
        width: 760px;
        height: 560px;

        margin-right: -40px;

        overflow: hidden;
    }

    .hero-image {
        width: 1180px !important;

        max-width: none !important;

        left: -420px !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        pointer-events: none;

        transition: none !important;

        animation: none !important;
    }

}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .hero-visual {
        width: 800px;
        height: 570px;

        margin-right: -30px;
    }

    .hero-image {
        width: 1200px !important;

        left: -425px !important;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) and (min-width: 992px) {

    .hero-visual {
        width: 650px;
        height: 500px;

        margin-right: -50px;

        overflow: hidden;
    }

    .hero-image {
        width: 1000px !important;

        left: -350px !important;

        top: 50% !important;

        transform: translateY(-50%) !important;
    }

}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 991px) {

    .hero-image-column {
        min-height: 430px;

        margin-top: 30px;

        justify-content: center;
    }

    .hero-visual {
        width: 100%;

        height: 430px;

        margin-right: 0;

        overflow: hidden;
    }

    .hero-image {
        width: 900px !important;

        max-width: none !important;

        left: 50% !important;

        top: 50% !important;

        transform:
            translate(-50%, -50%) !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-image-column {
        min-height: 350px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-image {
        width: 760px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .hero-image-column {
        min-height: 300px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-image {
        width: 680px !important;
    }

}