
:root {
    --primary: #243b8f;
    --primary-dark: #192d73;
    --primary-light: #eef1ff;

    --accent: #20a66a;
    --accent-light: #eaf8f1;

    --dark: #171b2d;
    --text: #555b70;
    --muted: #858b9d;

    --background: #fbfcff;
    --white: #ffffff;
    --border: #e7e9f1;

    --shadow-sm: 0 5px 20px rgba(30, 42, 90, 0.06);
    --shadow-md: 0 15px 45px rgba(30, 42, 90, 0.10);
    --shadow-lg: 0 25px 70px rgba(30, 42, 90, 0.15);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
}


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    max-width: 1180px;
}


/* =====================================================
   NAVBAR
===================================================== */

.main-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid transparent;

    padding: 17px 0;

    transition: 0.3s ease;

    z-index: 1000;
}

.main-navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}


/* LOGO */

.logo-icon {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: white;

    border-radius: 11px;

    font-size: 17px;

    box-shadow: 0 7px 20px rgba(36, 59, 143, 0.22);
}

.logo-text {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}


/* NAV LINKS */

.navbar-nav {
    gap: 7px;
}

.nav-link {
    color: #5d6273 !important;

    font-size: 14px;
    font-weight: 500;

    padding: 9px 13px !important;

    transition: 0.2s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}


/* NAV ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);

    padding: 10px 15px;
}

.btn-login:hover {
    color: var(--primary);
}


/* PRIMARY BUTTON */

.btn-primary-custom {
    background: var(--primary);
    border: 1px solid var(--primary);

    color: white !important;

    font-weight: 600;
    font-size: 14px;

    padding: 11px 19px;

    border-radius: 10px;

    transition: all 0.25s ease;

    box-shadow: 0 8px 20px rgba(36, 59, 143, 0.16);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(36, 59, 143, 0.22);
}


/* =====================================================
   HERO
===================================================== */

.hero-section {
    position: relative;

    min-height: 760px;

    padding-top: 155px;
    padding-bottom: 100px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;

    width: 700px;
    height: 700px;

    right: -220px;
    top: 30px;

    background: radial-gradient(
        circle,
        rgba(36, 59, 143, 0.09) 0%,
        rgba(36, 59, 143, 0) 70%
    );

    pointer-events: none;
}


/* HERO BADGE */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 23px;
}

.hero-badge i {
    font-size: 13px;
}


/* HERO TITLE */

.hero-title {
    max-width: 650px;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 25px;
}

.hero-title span {
    display: block;
    color: var(--primary);
}


/* DESCRIPTION */

.hero-description {
    max-width: 590px;

    font-size: 17px;

    line-height: 1.8;

    color: var(--text);

    margin-bottom: 30px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons .btn {
    border-radius: 11px;
    padding: 13px 21px;
}

.btn-demo {
    background: white;

    border: 1px solid var(--border);

    color: var(--dark);

    font-weight: 600;

    box-shadow: var(--shadow-sm);
}

.btn-demo:hover {
    border-color: #ccd1e2;
    color: var(--primary);

    transform: translateY(-2px);
}


/* TRUST */

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 27px;
}

.hero-trust div {
    display: flex;
    align-items: center;

    gap: 6px;

    font-size: 12px;

    color: var(--text);

    font-weight: 500;
}

.hero-trust i {
    color: var(--accent);
}


/* =====================================================
   HERO APP MOCKUP
===================================================== */

.hero-app-wrapper {
    position: relative;

    max-width: 460px;

    margin: auto;

    padding: 20px;
}


/* PHONE */

.app-mockup {
    position: relative;

    width: 100%;

    background: #f6f7fb;

    border: 1px solid #e2e5ee;

    border-radius: 27px;

    padding: 17px;

    box-shadow: var(--shadow-lg);

    transform: rotate(1deg);

    z-index: 2;
}


/* APP HEADER */

.app-header {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 7px 5px 18px;
}

.app-header strong {
    display: block;

    font-size: 13px;

    color: var(--dark);
}

.app-header small {
    display: block;

    font-size: 9px;

    color: var(--muted);

    margin-top: 2px;
}

.app-logo {
    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: var(--primary);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
}

.live-status {
    display: flex;

    align-items: center;

    gap: 4px;

    background: var(--accent-light);

    color: var(--accent);

    font-size: 8px;

    font-weight: 700;

    padding: 5px 7px;

    border-radius: 20px;
}

.live-status i {
    font-size: 5px;
}


/* VOICE BOX */

.voice-box {
    display: flex;

    align-items: center;

    gap: 11px;

    background: white;

    border: 1px solid #e4e6ef;

    padding: 12px;

    border-radius: 14px;

    margin-bottom: 12px;
}

.voice-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    border-radius: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 14px;
}

.voice-box small {
    display: block;

    font-size: 8px;

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 3px;
}

.voice-box strong {
    font-size: 10px;

    font-weight: 600;

    color: var(--text);
}


/* BILL */

.bill-box {
    background: white;

    border: 1px solid #e4e6ef;

    border-radius: 14px;

    padding: 14px;

    margin-bottom: 12px;
}

.bill-heading {
    display: flex;

    justify-content: space-between;

    padding-bottom: 9px;

    border-bottom: 1px dashed #dfe2eb;

    margin-bottom: 8px;
}

.bill-heading span {
    font-size: 8px;

    color: var(--muted);

    font-weight: 700;
}

.bill-heading strong {
    font-size: 9px;

    color: var(--primary);
}


/* BILL ITEM */

.bill-item {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 7px 0;
}

.bill-item strong {
    display: block;

    font-size: 9px;

    font-weight: 600;
}

.bill-item small {
    display: block;

    color: var(--muted);

    font-size: 8px;

    margin-top: 1px;
}

.bill-item b {
    font-size: 9px;

    font-weight: 700;
}

.bill-box hr {
    margin: 7px 0;

    border-color: #eceef4;
}

.bill-total {
    display: flex;

    justify-content: space-between;

    align-items: center;
}

.bill-total span {
    font-size: 10px;

    color: var(--text);
}

.bill-total strong {
    font-size: 18px;

    color: var(--dark);
}


/* PAYMENT */

.payment-options {
    display: flex;

    gap: 8px;

    margin-bottom: 10px;
}

.payment-option {
    flex: 1;

    border: 1px solid var(--border);

    background: white;

    border-radius: 10px;

    padding: 9px;

    font-size: 9px;

    color: var(--text);

    font-weight: 600;

    transition: 0.2s ease;
}

.payment-option i {
    margin-right: 3px;
}

.payment-option.active {
    background: var(--primary-light);

    color: var(--primary);

    border-color: #cbd2fa;
}


/* PRINT */

.print-button {
    width: 100%;

    border: 0;

    border-radius: 11px;

    background: var(--primary);

    color: white;

    padding: 12px;

    font-size: 10px;

    font-weight: 700;

    box-shadow: 0 8px 20px rgba(36, 59, 143, 0.18);
}

.print-button i {
    margin-right: 5px;
}


/* FLOATING BADGES */

.floating-badge {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 7px;

    background: white;

    border: 1px solid var(--border);

    padding: 10px 13px;

    border-radius: 11px;

    font-size: 9px;

    font-weight: 700;

    box-shadow: var(--shadow-md);
}

.sync-badge {
    top: 3px;
    right: -15px;

    color: var(--accent);
}

.sync-badge i {
    color: var(--accent);
}

.printer-badge {
    bottom: 12px;
    left: -20px;

    color: var(--dark);
}

.printer-badge i {
    color: var(--primary);
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    background: white;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    padding: 27px 0;
}

.stats-section strong {
    display: block;

    color: var(--primary);

    font-size: 25px;

    font-weight: 800;
}

.stats-section span {
    display: block;

    font-size: 11px;

    color: var(--muted);

    margin-top: 2px;
}


/* =====================================================
   COMMON SECTION
===================================================== */

.section-padding {
    padding: 105px 0;
}

.section-heading {
    max-width: 720px;

    margin: auto;
}

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 13px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 47px);

    line-height: 1.15;

    letter-spacing: -1.7px;

    font-weight: 800;

    margin-bottom: 17px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--text);

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   PRODUCT CARDS
===================================================== */

.product-section {
    background: var(--background);
}

.product-card {
    position: relative;

    min-height: 570px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    padding: 38px;

    border: 1px solid var(--border);

    background: white;

    box-shadow: var(--shadow-sm);

    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.app-product-card {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f6ff 100%
        );
}

.dashboard-product-card {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5faf8 100%
        );
}

.product-card-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 19px;

    margin-bottom: 25px;
}

.dashboard-product-card .product-card-icon {
    background: var(--accent-light);
    color: var(--accent);
}

.product-label {
    display: block;

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

    margin-bottom: 8px;
}

.product-card h3 {
    font-size: 26px;

    letter-spacing: -0.8px;

    font-weight: 800;

    margin-bottom: 12px;
}

.product-card > p {
    max-width: 470px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* PRODUCT FEATURES */

.product-features {
    display: grid;

    gap: 9px;

    margin-bottom: 30px;
}

.product-features div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text);

    font-size: 11px;

    font-weight: 500;
}

.product-features i {
    color: var(--accent);

    font-size: 13px;
}


/* =====================================================
   MINI PHONE
===================================================== */

.mini-phone {
    position: absolute;

    width: 200px;

    height: 290px;

    right: 35px;
    bottom: -75px;

    background: #20243b;

    border-radius: 24px 24px 0 0;

    padding: 8px;

    box-shadow: var(--shadow-lg);
}

.mini-phone-screen {
    height: 100%;

    background: #fafbff;

    border-radius: 17px 17px 0 0;

    padding: 14px;
}

.mini-phone-header {
    display: flex;

    justify-content: space-between;

    font-size: 8px;

    font-weight: 700;

    margin-bottom: 18px;
}

.mini-phone-screen h5 {
    font-size: 17px;

    font-weight: 800;

    margin-bottom: 15px;
}

.mini-product {
    display: flex;

    justify-content: space-between;

    padding: 9px 0;

    border-bottom: 1px solid #e9ebf2;

    font-size: 8px;
}

.mini-product b {
    font-size: 8px;
}

.mini-total {
    text-align: right;

    font-size: 20px;

    font-weight: 800;

    margin-top: 15px;

    color: var(--primary);
}

.mini-mic {
    width: 42px;
    height: 42px;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 20px auto 0;

    box-shadow: 0 7px 18px rgba(36, 59, 143, 0.25);
}


/* =====================================================
   MINI DASHBOARD
===================================================== */

.dashboard-mini {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 16px;

    box-shadow: var(--shadow-md);
}

.dashboard-top {
    display: flex;

    justify-content: space-between;

    margin-bottom: 14px;
}

.dashboard-top strong {
    font-size: 11px;
}

.dashboard-top span {
    font-size: 8px;

    color: var(--muted);
}

.dashboard-metrics {
    display: flex;

    gap: 12px;
}

.dashboard-metrics > div {
    flex: 1;

    background: #f7f8fb;

    border-radius: 9px;

    padding: 10px;
}

.dashboard-metrics small {
    display: block;

    font-size: 7px;

    color: var(--muted);
}

.dashboard-metrics strong {
    display: block;

    font-size: 15px;

    margin: 3px 0;
}

.dashboard-metrics em {
    font-size: 7px;

    color: var(--accent);

    font-style: normal;
}

.fake-chart {
    height: 80px;

    display: flex;

    align-items: flex-end;

    gap: 7px;

    padding-top: 14px;
}

.fake-chart span {
    flex: 1;

    background: var(--primary);

    opacity: 0.75;

    border-radius: 4px 4px 0 0;
}

.live-sale {
    display: flex;

    align-items: center;

    gap: 5px;

    border-top: 1px solid var(--border);

    margin-top: 10px;

    padding-top: 9px;

    font-size: 7px;

    color: var(--muted);
}

.live-sale i {
    font-size: 5px;

    color: var(--accent);
}

.live-sale strong {
    margin-left: auto;

    color: var(--dark);

    font-size: 9px;
}


/* =====================================================
   CONNECTED FLOW
===================================================== */

.connected-section {
    background: white;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.connection-flow {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;
}

.flow-box {
    width: 210px;

    min-height: 180px;

    background: var(--background);

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 25px 18px;

    text-align: center;

    transition: 0.3s ease;
}

.flow-box:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: #cfd4e5;
}

.flow-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 13px;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 12px;

    font-size: 18px;
}

.flow-box h4 {
    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;
}

.flow-box p {
    font-size: 10px;

    line-height: 1.6;

    color: var(--muted);

    margin: 0;
}

.flow-line {
    color: #b8bdcd;

    font-size: 20px;
}


/* =====================================================
   FEATURES
===================================================== */

.feature-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 27px;

    min-height: 210px;

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 12px;

    margin-bottom: 18px;

    font-size: 17px;
}

.feature-card h4 {
    font-size: 16px;

    font-weight: 700;

    margin-bottom: 9px;
}

.feature-card p {
    color: var(--text);

    font-size: 11px;

    line-height: 1.7;

    margin: 0;
}

.btn-outline-custom {
    border: 1px solid #cfd4e1;

    color: var(--dark);

    font-size: 13px;

    font-weight: 600;

    padding: 11px 18px;

    border-radius: 10px;

    background: white;
}

.btn-outline-custom:hover {
    color: var(--primary);

    border-color: var(--primary);
}


/* =====================================================
   OFFLINE SECTION
===================================================== */

.offline-section {
    background: #f4f6ff;
}

.offline-section h2 {
    max-width: 570px;

    font-size: clamp(32px, 4vw, 47px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    font-weight: 800;

    margin-bottom: 18px;
}

.offline-section h2 span {
    color: var(--primary);
}

.offline-section > .container > .row > .col-lg-6 > p {
    max-width: 560px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* OFFLINE POINTS */

.offline-points {
    display: grid;

    gap: 17px;

    margin-top: 27px;
}

.offline-points > div {
    display: flex;

    gap: 11px;
}

.offline-points i {
    color: var(--accent);

    font-size: 17px;
}

.offline-points strong {
    display: block;

    font-size: 12px;
}

.offline-points small {
    display: block;

    font-size: 10px;

    color: var(--muted);

    margin-top: 2px;
}


/* OFFLINE CARD */

.offline-card {
    max-width: 430px;

    margin: auto;

    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;

    padding: 25px;

    box-shadow: var(--shadow-lg);
}

.offline-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid var(--border);

    padding-bottom: 15px;
}

.offline-header span {
    font-size: 11px;

    font-weight: 700;
}

.offline-header strong {
    display: flex;

    align-items: center;

    gap: 5px;

    font-size: 9px;

    color: #e17c42;

    background: #fff4ed;

    padding: 6px 8px;

    border-radius: 20px;
}

.offline-header i {
    font-size: 8px;
}

.offline-bill {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 30px 10px;
}

.offline-bill small {
    display: block;

    font-size: 9px;

    color: var(--muted);
}

.offline-bill strong {
    display: block;

    font-size: 27px;

    margin-top: 3px;
}

.sync-circle {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;

    animation: rotateSync 3s linear infinite;
}

@keyframes rotateSync {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.offline-message {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px;

    border-radius: 9px;

    background: var(--accent-light);

    color: #397c5b;

    font-size: 9px;

    font-weight: 600;
}

.sync-progress {
    height: 5px;

    background: #edf0f5;

    border-radius: 10px;

    overflow: hidden;

    margin-top: 25px;
}

.sync-progress div {
    width: 30%;

    height: 100%;

    background: var(--primary);

    border-radius: 10px;

    animation: syncProgress 2.5s infinite ease-in-out;
}

@keyframes syncProgress {

    0% {
        width: 10%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 10%;
    }

}

.sync-text {
    display: block;

    text-align: center;

    font-size: 8px;

    color: var(--muted);

    margin-top: 8px;
}


/* =====================================================
   STORE DASHBOARD
===================================================== */

.store-dashboard {
    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;

    padding: 27px;

    box-shadow: var(--shadow-sm);
}

.store-dashboard-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid var(--border);

    padding-bottom: 18px;
}

.store-dashboard-header small {
    font-size: 8px;

    color: var(--muted);

    font-weight: 700;

    letter-spacing: 1px;
}

.store-dashboard-header h4 {
    font-size: 18px;

    margin: 3px 0 0;

    font-weight: 800;
}


/* STORE CARD */

.store-card {
    background: #fafbfe;

    border: 1px solid var(--border);

    border-radius: 15px;

    padding: 18px;

    transition: 0.25s ease;
}

.store-card:hover {
    transform: translateY(-3px);

    background: white;

    box-shadow: var(--shadow-sm);
}

.store-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 15px;
}

.store-icon {
    width: 37px;
    height: 37px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 14px;
}

.online,
.offline {
    font-size: 8px;

    font-weight: 700;
}

.online {
    color: var(--accent);
}

.offline {
    color: #d87b48;
}

.online i,
.offline i {
    font-size: 5px;

    margin-right: 3px;
}

.store-card h5 {
    font-size: 12px;

    font-weight: 700;

    margin-bottom: 3px;
}

.store-card > small {
    font-size: 8px;

    color: var(--muted);
}

.store-sales {
    border-top: 1px solid var(--border);

    margin-top: 15px;

    padding-top: 12px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.store-sales span {
    font-size: 8px;

    color: var(--muted);
}

.store-sales strong {
    font-size: 14px;

    color: var(--dark);
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 40px 0 100px;
}

.cta-box {
    position: relative;

    overflow: hidden;

    background: var(--primary);

    border-radius: 26px;

    padding: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    color: white;
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -130px;
    top: -180px;

    border-radius: 50%;

    border: 70px solid rgba(255,255,255,0.05);
}

.cta-box .section-label {
    color: rgba(255,255,255,0.65);
}

.cta-box h2 {
    font-size: 37px;

    letter-spacing: -1px;

    font-weight: 800;

    margin-bottom: 8px;
}

.cta-box h2 span {
    color: #bfcaff;
}

.cta-box p {
    color: rgba(255,255,255,0.75);

    font-size: 13px;

    margin: 0;
}

.btn-white {
    background: white;

    color: var(--primary) !important;

    border: 1px solid white;

    border-radius: 10px;

    padding: 13px 19px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    z-index: 2;
}

.btn-white:hover {
    background: #f3f4ff;

    transform: translateY(-2px);
}


/* =====================================================
   FAQ
===================================================== */

.faq-section {
    background: white;
}

.faq-container {
    max-width: 800px;
}

.accordion-item {
    border: 1px solid var(--border) !important;

    border-radius: 12px !important;

    overflow: hidden;

    margin-bottom: 10px;

    background: white;
}

.accordion-button {
    font-size: 13px;

    font-weight: 600;

    color: var(--dark);

    padding: 18px;

    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);

    color: var(--primary);
}

.accordion-body {
    font-size: 12px;

    line-height: 1.7;

    color: var(--text);

    padding: 0 18px 18px;
}


/* =====================================================
   FOOTER
===================================================== */

.main-footer {
    background: #13172a;

    color: white;

    padding: 75px 0 25px;
}

.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 18px;
}

.footer-brand .logo-icon {
    background: white;

    color: var(--primary);
}

.footer-brand span span {
    color: #9eafff;
}

.footer-description {
    max-width: 350px;

    color: #969caf;

    font-size: 11px;

    line-height: 1.8;
}

.main-footer h6 {
    font-size: 11px;

    font-weight: 700;

    margin-bottom: 18px;
}

.main-footer .col-lg-2 > a {
    display: block;

    color: #9298aa;

    font-size: 10px;

    margin-bottom: 11px;

    transition: 0.2s ease;
}

.main-footer .col-lg-2 > a:hover {
    color: white;

    transform: translateX(2px);
}

.footer-small {
    color: #9298aa;

    font-size: 10px;

    line-height: 1.7;

    margin-bottom: 15px;
}


/* SOCIAL */

.social-links {
    display: flex;

    gap: 8px;

    margin-top: 20px;
}

.social-links a {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #30354b;

    border-radius: 8px;

    color: #a4a9b9;

    font-size: 12px;

    transition: 0.2s ease;
}

.social-links a:hover {
    color: white;

    border-color: #5e6783;

    transform: translateY(-2px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #282d42;

    margin-top: 55px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #73798c;

    font-size: 9px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .main-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        background: white;

        padding: 15px;

        margin-top: 12px;

        border: 1px solid var(--border);

        border-radius: 15px;

        box-shadow: var(--shadow-md);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-actions {
        margin-top: 12px;

        padding-top: 12px;

        border-top: 1px solid var(--border);

        justify-content: space-between;
    }

    .hero-section {
        padding-top: 135px;

        min-height: auto;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-app-wrapper {
        margin-top: 25px;
    }

    .connection-flow {
        flex-wrap: wrap;
    }

    .flow-line {
        transform: rotate(90deg);
    }

    .cta-box {
        padding: 40px;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 75px 0;
    }

    .hero-section {
        padding-top: 120px;

        padding-bottom: 65px;
    }

    .hero-title {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 10px;

        flex-direction: column;
    }

    .hero-app-wrapper {
        max-width: 390px;
    }

    .floating-badge {
        display: none;
    }

    .product-card {
        min-height: 540px;

        padding: 28px;
    }

    .mini-phone {
        right: 20px;
    }

    .dashboard-mini {
        left: 20px;
        right: 20px;
    }

    .connection-flow {
        flex-direction: column;
    }

    .flow-line {
        transform: rotate(90deg);
    }

    .flow-box {
        width: 100%;

        max-width: 300px;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .cta-box h2 {
        font-size: 31px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}


@media (max-width: 480px) {

    .hero-title {
        font-size: 38px;
    }

    .hero-app-wrapper {
        padding: 5px;
    }

    .app-mockup {
        transform: none;
    }

    .stats-section strong {
        font-size: 21px;
    }

    .product-card {
        min-height: 520px;

        padding: 24px;
    }

    .mini-phone {
        width: 175px;

        right: 15px;
    }

    .dashboard-mini {
        left: 15px;
        right: 15px;
    }

    .offline-card {
        padding: 18px;
    }

    .store-dashboard {
        padding: 18px;
    }

}


/* =====================================================
   SIMPLE ANIMATIONS
===================================================== */

.hero-title,
.hero-description,
.hero-buttons,
.hero-app-wrapper {
    animation: fadeUp 0.7s ease both;
}

.hero-description {
    animation-delay: 0.08s;
}

.hero-buttons {
    animation-delay: 0.16s;
}

.hero-app-wrapper {
    animation-delay: 0.22s;
}

@keyframes fadeUp {

    from {
        opacity: 0;

        transform: translateY(18px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}
