    /* =========================================================
      Design System
    ========================================================== */
    :root {
        --primary: #3bb2fb;
        --primary-dark: #1095e7;
        --primary-deep: #2563eb;
        --primary-soft: rgba(59, 178, 251, 0.11);

        --dark: #07111f;
        --dark-2: #0f172a;
        --text: #101828;
        --muted: #667085;

        --white: #ffffff;
        --soft: #f7fbff;
        --soft-2: #f1f8ff;
        --border: rgba(15, 23, 42, 0.09);

        --radius-sm: 14px;
        --radius-md: 22px;
        --radius-lg: 32px;
        --radius-xl: 42px;

        --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
        --shadow-md: 0 22px 65px rgba(15, 23, 42, 0.11);
        --shadow-lg: 0 36px 95px rgba(15, 23, 42, 0.14);
        --shadow-primary: 0 20px 55px rgba(59, 178, 251, 0.32);

        --transition: all 0.32s ease;
    }

    body.dark-mode {
        --text: #f8fafc;
        --muted: #a8b3c7;
        --white: #0b1220;
        --soft: #070b18;
        --soft-2: #0f172a;
        --border: rgba(255, 255, 255, 0.1);
        background: #070b18;
    }

    /* =========================================================
      Base
    ========================================================== */
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: "Inter", sans-serif;
        color: var(--text);
        background: #ffffff;
        overflow-x: hidden;
        font-size: 15.5px;
        line-height: 1.72;
    }

    a {
        text-decoration: none;
    }

    img {
        max-width: 100%;
    }

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

    .section-padding {
        padding: 96px 0;
    }

    .section-muted {
        background:
            radial-gradient(circle at top left, rgba(59, 178, 251, 0.1), transparent 30%),
            var(--soft);
    }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        background: var(--primary-soft);
        color: var(--primary-dark);
        border: 1px solid rgba(59, 178, 251, 0.18);
        font-size: 0.79rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(1.95rem, 4vw, 3.25rem);
        font-weight: 850;
        line-height: 1.08;
        letter-spacing: -0.055em;
        color: var(--text);
        margin-bottom: 16px;
    }

    .section-subtitle {
        max-width: 720px;
        margin: 0 auto 48px;
        color: var(--muted);
        font-size: 1rem;
        line-height: 1.8;
    }

    .text-gradient {
        background: linear-gradient(120deg, var(--primary), #7dd3fc, var(--primary-deep));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .soft-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(28px);
        opacity: 0.58;
        pointer-events: none;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border: 1px solid rgba(255, 255, 255, 0.55);
        box-shadow: var(--shadow-md);
    }

    body.dark-mode .glass-card {
        background: rgba(15, 23, 42, 0.74);
        border-color: rgba(255, 255, 255, 0.1);
    }

    /* =========================================================
      Buttons
    ========================================================== */
    .btn-ready {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 12px 25px;
        border-radius: 999px;
        color: #fff;
        border: 0;
        font-size: 0.94rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary), var(--primary-deep));
        box-shadow: var(--shadow-primary);
        position: relative;
        overflow: hidden;
        transition: var(--transition);
    }

    .btn-ready::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        transform: translateX(-120%);
        transition: 0.65s ease;
    }

    .btn-ready:hover::before {
        transform: translateX(120%);
    }

    .btn-ready:hover {
        color: #fff;
        transform: translateY(-3px) scale(1.015);
        box-shadow: 0 28px 70px rgba(59, 178, 251, 0.45);
    }

    .btn-soft {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 12px 25px;
        border-radius: 999px;
        color: var(--text);
        font-size: 0.94rem;
        font-weight: 800;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid var(--border);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
        transition: var(--transition);
    }

    body.dark-mode .btn-soft {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .btn-soft:hover {
        color: var(--primary-dark);
        border-color: rgba(59, 178, 251, 0.42);
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
    }

    .btn-white {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 13px 28px;
        border-radius: 999px;
        background: #fff;
        color: var(--primary-dark);
        font-weight: 850;
        transition: var(--transition);
    }

    .btn-white:hover {
        color: var(--primary-dark);
        background: #eef9ff;
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    }

/* =========================================================
  ReadyPOS Stable Navbar + Clickable Dropdown
========================================================== */
.rp-navbar {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: visible !important;
}

.rp-navbar.rp-scrolled {
    padding: 9px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.rp-navbar .container,
.rp-navbar .navbar-collapse {
    overflow: visible !important;
}

/* Brand */
.rp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #101828 !important;
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: -0.045em;
    padding: 0;
    line-height: 1;
}

.rp-brand:hover {
    color: #101828 !important;
}

.rp-brand-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #3bb2fb, #2563eb);
    box-shadow: 0 12px 28px rgba(59, 178, 251, 0.34);
}

/* Nav layout */
.rp-collapse {
    align-items: center;
}

.rp-nav {
    align-items: center;
    gap: 4px;
}

.rp-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 9px 13px !important;
    border-radius: 999px;
    color: #667085 !important;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1;
    transition: all 0.25s ease;
}

.rp-nav .nav-link:hover,
.rp-nav .nav-link.active,
.rp-nav .dropdown .nav-link.show {
    color: #1095e7 !important;
    background: rgba(59, 178, 251, 0.11);
}

/* Dropdown arrow */
.rp-navbar .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: 0;
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.rp-navbar .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Right actions */
.rp-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.rp-mode-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.85);
    color: #101828;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
}

.rp-mode-toggle:hover {
    color: #1095e7;
    transform: rotate(14deg) scale(1.06);
    border-color: rgba(59, 178, 251, 0.35);
}

.rp-nav-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff !important;
    font-size: 0.86rem;
    font-weight: 850;
    white-space: nowrap;
    background: linear-gradient(135deg, #3bb2fb, #2563eb);
    box-shadow: 0 14px 34px rgba(59, 178, 251, 0.30);
    border: 0;
    transition: all 0.28s ease;
    text-decoration: none;
}

.rp-nav-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(59, 178, 251, 0.42);
}

.rp-nav-btn i {
    transition: transform 0.28s ease;
}

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

/* =========================================================
  Dropdown
========================================================== */
.rp-dropdown {
    min-width: 320px;
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    margin-top: 12px !important;
    overflow: visible !important;
    z-index: 10000;
}

.rp-dropdown.show {
    animation: rpDropdownFade 0.22s ease forwards;
}

@keyframes rpDropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

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

.rp-dropdown .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px;
    border-radius: 18px;
    color: #101828 !important;
    background: transparent;
    white-space: normal;
    transition: all 0.25s ease;
    text-decoration: none;
}

.rp-dropdown .dropdown-item:hover,
.rp-dropdown .dropdown-item:focus {
    background: linear-gradient(135deg, rgba(59, 178, 251, 0.13), rgba(37, 99, 235, 0.06));
    color: #1095e7 !important;
}

.rp-dropdown-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    background: rgba(59, 178, 251, 0.12);
    color: #1095e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.rp-dropdown .dropdown-item:hover .rp-dropdown-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #3bb2fb, #2563eb);
    transform: scale(1.04) rotate(-4deg);
}

.rp-dropdown .dropdown-item strong {
    display: block;
    color: #101828;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 4px;
}

.rp-dropdown .dropdown-item small {
    display: block;
    color: #667085;
    font-size: 0.78rem;
    line-height: 1.45;
    font-weight: 600;
}

.rp-dropdown .dropdown-item:hover strong {
    color: #1095e7;
}

/* =========================================================
  Dark Mode Support
========================================================== */
body.dark-mode .rp-navbar {
    background: rgba(7, 11, 24, 0.92) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .rp-navbar.rp-scrolled {
    background: rgba(7, 11, 24, 0.98) !important;
}

body.dark-mode .rp-brand {
    color: #ffffff !important;
}

body.dark-mode .rp-brand:hover {
    color: #ffffff !important;
}

body.dark-mode .rp-nav .nav-link {
    color: #cbd5e1 !important;
}

body.dark-mode .rp-nav .nav-link:hover,
body.dark-mode .rp-nav .nav-link.active,
body.dark-mode .rp-nav .dropdown .nav-link.show {
    color: #7dd3fc !important;
    background: rgba(59, 178, 251, 0.14);
}

body.dark-mode .rp-mode-toggle {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .rp-dropdown {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

body.dark-mode .rp-dropdown .dropdown-item {
    color: #ffffff !important;
}

body.dark-mode .rp-dropdown .dropdown-item strong {
    color: #ffffff;
}

body.dark-mode .rp-dropdown .dropdown-item small {
    color: #a8b3c7;
}

body.dark-mode .rp-dropdown .dropdown-item:hover strong {
    color: #7dd3fc;
}

/* =========================================================
  Responsive
========================================================== */
@media (max-width: 1199px) and (min-width: 992px) {
    .rp-brand {
        font-size: 1.16rem;
    }

    .rp-brand-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .rp-nav .nav-link {
        font-size: 0.8rem;
        padding: 8px 9px !important;
    }

    .rp-nav-btn {
        padding: 9px 13px;
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) {
    .rp-navbar {
        padding: 12px 0;
    }

    .rp-navbar.rp-scrolled {
        padding: 9px 0;
    }

    .rp-brand {
        font-size: 1.2rem;
    }

    .rp-toggler {
        border: 1px solid rgba(15, 23, 42, 0.10);
        border-radius: 14px;
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: none !important;
    }

    .rp-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.09);
        box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    }

    body.dark-mode .rp-collapse {
        background: rgba(15, 23, 42, 0.98);
        border-color: rgba(255, 255, 255, 0.10);
    }

    body.dark-mode .rp-toggler {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .rp-nav {
        align-items: stretch;
        gap: 6px;
    }

    .rp-nav .nav-link {
        width: 100%;
        justify-content: space-between;
        min-height: 44px;
        padding: 12px 14px !important;
        border-radius: 16px;
        font-size: 0.92rem;
    }

    .rp-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
    }

    .rp-dropdown {
        width: 100%;
        min-width: 100%;
        margin-top: 8px !important;
        padding: 8px;
        border-radius: 18px;
        box-shadow: none;
        background: rgba(59, 178, 251, 0.055);
        border: 1px solid rgba(59, 178, 251, 0.12);
    }

    .rp-actions {
        margin-top: 14px;
        width: 100%;
    }

    .rp-nav-btn {
        flex: 1;
        min-height: 44px;
    }
}

/* =========================================================
  ReadyPOS Dropdown Click/Hover Stability Fix
  Paste this at the bottom of your CSS file
========================================================== */

/* Prevent dropdown from being clipped */
.rp-navbar,
.rp-navbar .container,
.rp-navbar .navbar-collapse,
.rp-navbar .navbar-nav,
.rp-navbar .nav-item {
    overflow: visible !important;
}

/* Keep navbar/dropdown above all sections */
.rp-navbar {
    z-index: 99999 !important;
}

.rp-navbar .dropdown-menu {
    z-index: 100000 !important;
    pointer-events: auto !important;
}

/* Desktop dropdown stability */
@media (min-width: 992px) {
    /* Invisible bridge between nav item and dropdown */
    .rp-navbar .nav-item.dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 16px;
        background: transparent;
        pointer-events: auto;
    }

    .rp-navbar .dropdown-menu {
        margin-top: 10px !important;
    }

    /* Keep dropdown open on hover/focus */
    .rp-navbar .nav-item.dropdown:hover > .dropdown-menu,
    .rp-navbar .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block;
    }
}

/* Bootstrap click-open state must work */
.rp-navbar .dropdown-menu.show {
    display: block !important;
    pointer-events: auto !important;
}

/* Dropdown items clickable */
.rp-dropdown .dropdown-item {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
}
    /* =========================================================
  Premium Hero Section - Final Upgraded
========================================================== */
    #heroTypedText {
        transition: opacity 0.28s ease;
    }

    .hero-premium {
        position: relative;
        min-height: 100vh;
        padding: 145px 0 96px;
        overflow: hidden;
        background:
            radial-gradient(circle at 8% 16%, rgba(59, 178, 251, 0.22), transparent 30%),
            radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.14), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    }

    body.dark-mode .hero-premium {
        background:
            radial-gradient(circle at 8% 16%, rgba(59, 178, 251, 0.18), transparent 30%),
            radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.18), transparent 28%),
            linear-gradient(180deg, #070b18 0%, #0b1220 100%);
    }

    .hero-grid-bg {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(to bottom, black 0%, transparent 84%);
        pointer-events: none;
    }

    body.dark-mode .hero-grid-bg {
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    }

    .hero-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(32px);
        opacity: 0.65;
        pointer-events: none;
        animation: heroGlowFloat 8s ease-in-out infinite;
    }

    .hero-glow-one {
        width: 180px;
        height: 180px;
        background: rgba(59, 178, 251, 0.38);
        left: 4%;
        top: 22%;
    }

    .hero-glow-two {
        width: 250px;
        height: 250px;
        background: rgba(37, 99, 235, 0.18);
        right: 5%;
        top: 18%;
        animation-delay: 1.8s;
    }

    .hero-glow-three {
        width: 150px;
        height: 150px;
        background: rgba(125, 211, 252, 0.34);
        right: 38%;
        bottom: 12%;
        animation-delay: 3s;
    }

    @keyframes heroGlowFloat {

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

        50% {
            transform: translateY(-24px) translateX(16px) scale(1.04);
        }
    }

    .hero-content {
        position: relative;
        z-index: 5;
    }

    /* Badge */
    .premium-badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 9px 15px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(59, 178, 251, 0.24);
        color: var(--primary-dark);
        font-size: 0.82rem;
        font-weight: 850;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
        backdrop-filter: blur(14px);
        margin-bottom: 22px;
    }

    body.dark-mode .premium-badge {
        background: rgba(255, 255, 255, 0.08);
        color: #7dd3fc;
    }

    /* Title small + stylish */
    .hero-title {
        max-width: 720px;
        font-size: clamp(2.25rem, 5.2vw, 4.8rem);
        line-height: 1.02;
        font-weight: 900;
        letter-spacing: -0.078em;
        color: var(--text);
        margin-bottom: 24px;
    }

    .hero-gradient-text {
        display: inline-block;
        background: linear-gradient(110deg, var(--primary), #7dd3fc, var(--primary-deep));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 4s ease-in-out infinite;
        background-size: 220% auto;
    }

    @keyframes gradientMove {

        0%,
        100% {
            background-position: 0% center;
        }

        50% {
            background-position: 100% center;
        }
    }

    .hero-dot {
        color: var(--primary-deep);
    }

    .hero-description {
        max-width: 640px;
        color: var(--muted);
        font-size: 1rem;
        line-height: 1.82;
        margin-bottom: 30px;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero-main-btn,
    .hero-secondary-btn {
        min-height: 52px;
    }

    .hero-main-btn i,
    .hero-secondary-btn i {
        transition: transform 0.3s ease;
    }

    .hero-main-btn:hover i {
        transform: translateX(5px);
    }

    .hero-secondary-btn:hover i {
        transform: scale(1.15);
    }

    .premium-hero-points {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 27px;
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 750;
    }

    .premium-hero-points span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .premium-hero-points i {
        color: var(--primary-dark);
    }

    /* Dashboard */
    .premium-dashboard-wrap {
        position: relative;
        transform-style: preserve-3d;
    }

    .premium-dashboard-shell {
        position: relative;
        padding: 16px;
        border-radius: 36px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(255, 255, 255, 0.62);
        box-shadow:
            0 35px 90px rgba(15, 23, 42, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(18px);
        transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
        transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    body.dark-mode .premium-dashboard-shell {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .premium-dashboard-shell:hover {
        box-shadow:
            0 45px 110px rgba(59, 178, 251, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.75);
    }

    .premium-dashboard-screen {
        overflow: hidden;
        border-radius: 27px;
        background: #07111f;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .premium-screen-header {
        padding: 17px 19px;
        background: rgba(255, 255, 255, 0.045);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .premium-screen-header small {
        color: rgba(255, 255, 255, 0.55);
        font-weight: 800;
    }

    .window-dots {
        display: flex;
        gap: 8px;
    }

    .window-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.23);
    }

    .premium-screen-body {
        padding: 22px;
        background:
            radial-gradient(circle at top right, rgba(59, 178, 251, 0.22), transparent 36%),
            linear-gradient(135deg, #07111f, #0f172a);
    }

    .premium-dash-card {
        height: 100%;
        padding: 17px;
        border-radius: 21px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.09);
        transition: all 0.3s ease;
    }

    .premium-dash-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-4px);
    }

    .premium-dash-card small {
        color: #94a3b8;
        font-weight: 750;
    }

    .premium-dash-card h4 {
        margin: 6px 0 0;
        font-size: 1.38rem;
        font-weight: 900;
        letter-spacing: -0.04em;
    }

    .premium-chart-panel {
        height: 198px;
        margin: 19px 0;
        padding: 17px;
        border-radius: 23px;
        background:
            linear-gradient(180deg, rgba(59, 178, 251, 0.18), rgba(59, 178, 251, 0.03)),
            rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: end;
        gap: 12px;
    }

    .premium-chart-panel span {
        flex: 1;
        border-radius: 13px 13px 5px 5px;
        background: linear-gradient(180deg, #9ee4ff, var(--primary));
        box-shadow: 0 10px 22px rgba(59, 178, 251, 0.22);
        animation: chartBarMove 2.8s ease-in-out infinite;
    }

    .premium-chart-panel span:nth-child(2) {
        animation-delay: .15s;
    }

    .premium-chart-panel span:nth-child(3) {
        animation-delay: .3s;
    }

    .premium-chart-panel span:nth-child(4) {
        animation-delay: .45s;
    }

    .premium-chart-panel span:nth-child(5) {
        animation-delay: .6s;
    }

    .premium-chart-panel span:nth-child(6) {
        animation-delay: .75s;
    }

    .premium-chart-panel span:nth-child(7) {
        animation-delay: .9s;
    }

    @keyframes chartBarMove {

        0%,
        100% {
            filter: brightness(1);
            transform: scaleY(1);
        }

        50% {
            filter: brightness(1.22);
            transform: scaleY(1.05);
        }
    }

    .premium-dash-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 0;
        color: #cbd5e1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.92rem;
    }

    .premium-dash-row:last-child {
        border-bottom: 0;
    }

    .premium-dash-row span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
    }

    .premium-dash-row i {
        color: var(--primary);
    }

    /* Floating Cards */
    .hero-floating-card {
        position: absolute;
        z-index: 8;
        min-width: 158px;
        padding: 15px 17px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
        animation: heroCardFloat 4.8s ease-in-out infinite;
    }

    body.dark-mode .hero-floating-card {
        background: rgba(15, 23, 42, 0.88);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .hero-floating-card small {
        display: block;
        color: var(--muted);
        font-size: 0.77rem;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .hero-floating-card h6 {
        color: var(--text);
        font-size: 0.96rem;
        font-weight: 900;
        margin: 0;
    }

    .hero-floating-card h6 span {
        color: #16a34a;
    }

    .hero-card-sales {
        left: -36px;
        bottom: 96px;
    }

    .hero-card-stock {
        right: -30px;
        top: 72px;
        animation-delay: 1.4s;
    }

    .hero-card-order {
        left: -18px;
        top: 48%;
        animation-delay: 2.4s;
    }

    @keyframes heroCardFloat {

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

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

    /* Responsive */
    @media (max-width: 991px) {
        .hero-premium {
            min-height: auto;
            padding: 130px 0 78px;
        }

        .premium-dashboard-shell {
            transform: none;
        }

        .hero-card-sales,
        .hero-card-stock,
        .hero-card-order {
            display: none;
        }

        .hero-title {
            max-width: 100%;
            font-size: clamp(2.15rem, 7vw, 3.6rem);
        }

        .hero-description {
            max-width: 100%;
        }
    }

    @media (max-width: 575px) {
        .hero-premium {
            padding: 118px 0 68px;
        }

        .hero-title {
            font-size: 2.45rem;
            letter-spacing: -0.065em;
        }

        .hero-description {
            font-size: 0.94rem;
        }

        .hero-actions {
            gap: 12px;
        }

        .hero-main-btn,
        .hero-secondary-btn {
            width: 100%;
        }

        .premium-dashboard-shell {
            padding: 10px;
            border-radius: 26px;
        }

        .premium-screen-body {
            padding: 16px;
        }

        .premium-chart-panel {
            height: 152px;
            gap: 8px;
        }

        .premium-dash-row {
            font-size: 0.84rem;
        }

        .premium-badge {
            font-size: 0.76rem;
        }
    }

    /* =========================================================
      Dashboard Mockup
    ========================================================== */
    .dashboard-wrap {
        position: relative;
        z-index: 3;
        transform-style: preserve-3d;
    }

    .dashboard-shell {
        padding: 16px;
        border-radius: 34px;
        position: relative;
        transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
        transition: 0.5s ease;
    }

    .dashboard-shell:hover {
        transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-8px);
    }

    .dashboard-screen {
        overflow: hidden;
        border-radius: 27px;
        background: #07111f;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .screen-header {
        padding: 17px 19px;
        background: rgba(255, 255, 255, 0.045);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .window-dots {
        display: flex;
        gap: 8px;
    }

    .window-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.24);
    }

    .screen-body {
        padding: 22px;
        background:
            radial-gradient(circle at top right, rgba(59, 178, 251, 0.21), transparent 36%),
            linear-gradient(135deg, #07111f, #0f172a);
    }

    .dash-card {
        height: 100%;
        padding: 17px;
        border-radius: 21px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .dash-card small {
        color: #94a3b8;
        font-weight: 700;
    }

    .dash-card h4 {
        margin: 6px 0 0;
        font-size: 1.38rem;
        font-weight: 900;
        letter-spacing: -0.04em;
    }

    .chart-panel {
        height: 198px;
        margin: 19px 0;
        padding: 17px;
        border-radius: 23px;
        background:
            linear-gradient(180deg, rgba(59, 178, 251, 0.17), rgba(59, 178, 251, 0.03)),
            rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: end;
        gap: 12px;
    }

    .chart-panel span {
        flex: 1;
        border-radius: 13px 13px 5px 5px;
        background: linear-gradient(180deg, #9ee4ff, var(--primary));
        box-shadow: 0 10px 22px rgba(59, 178, 251, 0.22);
        animation: barPulse 2.5s ease-in-out infinite;
    }

    .chart-panel span:nth-child(2) {
        animation-delay: .2s;
    }

    .chart-panel span:nth-child(3) {
        animation-delay: .4s;
    }

    .chart-panel span:nth-child(4) {
        animation-delay: .6s;
    }

    .chart-panel span:nth-child(5) {
        animation-delay: .8s;
    }

    .chart-panel span:nth-child(6) {
        animation-delay: 1s;
    }

    @keyframes barPulse {

        0%,
        100% {
            filter: brightness(1);
        }

        50% {
            filter: brightness(1.18);
        }
    }

    .dash-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 0;
        color: #cbd5e1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.92rem;
    }

    .dash-row:last-child {
        border-bottom: 0;
    }

    .floating-stat {
        position: absolute;
        z-index: 5;
        min-width: 160px;
        padding: 15px;
        border-radius: 21px;
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.54);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
        animation: floating 4.8s ease-in-out infinite;
    }

    body.dark-mode .floating-stat {
        background: rgba(15, 23, 42, 0.85);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .floating-stat small {
        color: var(--muted);
        font-weight: 750;
        font-size: 0.78rem;
    }

    .floating-stat h6 {
        color: var(--text);
        font-size: 0.96rem;
        font-weight: 900;
        margin: 4px 0 0;
    }

    .float-one {
        left: -30px;
        bottom: 82px;
    }

    .float-two {
        right: -24px;
        top: 82px;
        animation-delay: 1.4s;
    }

    @keyframes floating {

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

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

    /* =========================================================
      Logo Strip / Trusted
    ========================================================== */
    .trusted-strip {
        padding: 32px 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .trusted-title {
        color: var(--muted);
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .trusted-logo {
        height: 62px;
        border-radius: 18px;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-weight: 850;
        transition: var(--transition);
    }

    body.dark-mode .trusted-logo {
        background: rgba(255, 255, 255, 0.04);
    }

    .trusted-logo:hover {
        color: var(--primary-dark);
        transform: translateY(-4px);
        box-shadow: var(--shadow-sm);
        border-color: rgba(59, 178, 251, 0.34);
    }

    /* =========================================================
      Stats Counter
    ========================================================== */
    .stats-card {
        padding: 30px;
        border-radius: 30px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        height: 100%;
        transition: var(--transition);
    }

    .stats-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: rgba(59, 178, 251, 0.32);
    }

    .stats-icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--primary-deep));
        box-shadow: 0 16px 34px rgba(59, 178, 251, 0.28);
        margin-bottom: 18px;
    }

    .stats-number {
        font-size: 2.35rem;
        font-weight: 900;
        letter-spacing: -0.06em;
        color: var(--text);
        margin-bottom: 4px;
    }

    .stats-card p {
        margin: 0;
        color: var(--muted);
        font-weight: 600;
    }

    /* =========================================================
  License, Setup & Contact Upgrade Sections
========================================================== */

    .license-section,
    .setup-section {
        position: relative;
        overflow: hidden;
    }

    .license-card,
    .setup-card {
        height: 100%;
        border-radius: 24px;
        padding: 30px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 14px 38px rgba(15, 23, 42, 0.045);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .license-card:hover,
    .setup-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
        border-color: rgba(59, 178, 251, 0.35);
    }

    .license-card.featured-license,
    .setup-card.featured-setup {
        color: #fff;
        border: 0;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.20), transparent 34%),
            linear-gradient(135deg, #3bb2fb, #2563eb 48%, #07111f);
        box-shadow: 0 30px 90px rgba(59, 178, 251, 0.25);
    }

    .license-card h4,
    .setup-card h4 {
        font-size: 1.08rem;
        font-weight: 900;
        margin-bottom: 24px;
    }

    .license-price {
        display: flex;
        align-items: end;
        gap: 8px;
        margin-bottom: 16px;
    }

    .license-price .old-price,
    .setup-price .old-price {
        color: #e11d48;
        text-decoration: line-through;
        font-size: 1.05rem;
        font-weight: 700;
    }

    .featured-license .old-price {
        color: rgba(255, 255, 255, 0.75);
    }

    .license-price .current-price,
    .setup-price .current-price {
        font-size: 2.5rem;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -0.06em;
        color: #e11d48;
    }

    .featured-license .current-price,
    .featured-setup .current-price {
        color: #fff;
    }

    .license-price .price-type {
        color: var(--muted);
        font-weight: 600;
    }

    .featured-license .price-type,
    .featured-setup .price-type {
        color: rgba(255, 255, 255, 0.86);
    }

    .license-list,
    .setup-list {
        list-style: none;
        padding: 0;
        margin: 24px 0 28px;
    }

    .license-list li,
    .setup-list li {
        display: flex;
        gap: 10px;
        margin-bottom: 13px;
        color: var(--muted);
        font-size: 0.93rem;
        line-height: 1.45;
    }

    .featured-license .license-list li,
    .featured-setup .setup-list li {
        color: rgba(255, 255, 255, 0.92);
    }

    .license-list i,
    .setup-list i {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.62rem;
        margin-top: 2px;
    }

    .license-list .yes,
    .setup-list .yes {
        background: rgba(225, 29, 72, 0.10);
        color: #e11d48;
    }

    .featured-license .yes,
    .featured-setup .yes {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
    }

    .license-list .no,
    .setup-list .no {
        background: rgba(15, 23, 42, 0.08);
        color: #94a3b8;
    }

    .ribbon {
        position: absolute;
        top: 22px;
        right: -48px;
        width: 190px;
        padding: 7px 0;
        text-align: center;
        transform: rotate(45deg);
        background: #facc15;
        color: #111827;
        font-size: 0.76rem;
        font-weight: 900;
        z-index: 3;
    }

    .smart-arrow {
        font-size: 4rem;
        color: #f59e0b;
        transform: rotate(35deg);
        display: inline-block;
    }

    /* Setup Section */
    .setup-card {
        padding: 24px;
    }

    .setup-price {
        margin-bottom: 16px;
    }

    .setup-price .current-price {
        font-size: 2rem;
    }

    .setup-list li {
        font-size: 0.82rem;
        margin-bottom: 10px;
    }

    .setup-card .btn {
        margin-top: auto;
    }

    /* Left wrapper fix */
    .contact-left-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
    }

    /* Chat card height fix */
    .contact-side-card {
        padding: 28px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(18px);
    }

    /* Strategy card fixed */
    .strategy-card {
        position: relative;
        overflow: hidden;
        padding: 0;
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 32%),
            linear-gradient(135deg, #3bb2fb, #2563eb);
        box-shadow: 0 24px 65px rgba(59, 178, 251, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .strategy-card::before {
        content: "";
        position: absolute;
        width: 210px;
        height: 210px;
        right: -80px;
        top: -90px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.14);
    }

    .strategy-card::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        left: -70px;
        bottom: -80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.10);
    }

    .strategy-card-content {
        position: relative;
        z-index: 2;
        padding: 28px;
    }

    .strategy-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .strategy-card h4 {
        color: #fff;
        font-size: 1.25rem;
        font-weight: 900;
        letter-spacing: -0.035em;
        margin-bottom: 8px;
    }

    .strategy-card p {
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.94rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .strategy-btn {
        min-height: 52px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: #fff;
        font-weight: 850;
        transition: all 0.3s ease;
    }

    .strategy-btn:hover {
        background: #fff;
        color: #1095e7;
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    }

    .strategy-card small {
        display: block;
        margin-top: 16px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.82rem;
    }

    /* =========================================================
  Section 3: Premium Contact / Demo Form - Final Fixed Version
========================================================== */
    .readypos-contact-section {
        position: relative;
        padding: 96px 0;
        background:
            radial-gradient(circle at 15% 10%, rgba(59, 178, 251, 0.18), transparent 30%),
            radial-gradient(circle at 86% 85%, rgba(37, 99, 235, 0.15), transparent 30%),
            linear-gradient(135deg, #07111f, #0f172a);
        color: #fff;
        overflow: hidden;
    }

    /* Left column wrapper */
    .contact-left-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
    }

    /* Chat card */
    .contact-side-card {
        padding: 30px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
    }

    .contact-side-card h3 {
        color: #fff;
        font-size: 1.35rem;
        font-weight: 900;
        letter-spacing: -0.035em;
    }

    .contact-side-card p {
        font-size: 0.94rem;
    }

    /* Contact channel buttons */
    .contact-channel {
        display: flex;
        align-items: center;
        gap: 16px;
        min-height: 76px;
        padding: 18px;
        border-radius: 20px;
        color: #fff;
        margin-top: 16px;
        transition: all 0.32s ease;
        text-decoration: none;
        overflow: hidden;
        position: relative;
    }

    .contact-channel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.16), transparent);
        transform: translateX(-120%);
        transition: 0.6s ease;
    }

    .contact-channel:hover::before {
        transform: translateX(120%);
    }

    .contact-channel:hover {
        color: #fff;
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    }

    .contact-channel.green {
        background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    .contact-channel.blue {
        background: linear-gradient(135deg, #38bdf8, #0284c7);
    }

    .contact-channel.primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    }

    .contact-channel.pink {
        background: linear-gradient(135deg, #ef476f, #d62976);
    }

    .contact-channel-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        position: relative;
        z-index: 2;
    }

    .contact-channel div:not(.contact-channel-icon) {
        position: relative;
        z-index: 2;
    }

    .contact-channel h5 {
        color: #fff;
        font-size: 1rem;
        font-weight: 900;
        margin-bottom: 2px;
    }

    .contact-channel p {
        margin: 0;
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.9rem;
        line-height: 1.4;
        font-weight: 600;
    }

    /* Strategy meeting card - fixed */
    .strategy-card {
        position: relative;
        overflow: hidden;
        padding: 0;
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 32%),
            linear-gradient(135deg, var(--primary), var(--primary-deep));
        box-shadow: 0 24px 65px rgba(59, 178, 251, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .strategy-card::before {
        content: "";
        position: absolute;
        width: 210px;
        height: 210px;
        right: -80px;
        top: -90px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.14);
    }

    .strategy-card::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        left: -70px;
        bottom: -80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.10);
    }

    .strategy-card-content {
        position: relative;
        z-index: 2;
        padding: 28px;
    }

    .strategy-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 13px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .strategy-card h4 {
        color: #fff;
        font-size: 1.25rem;
        font-weight: 900;
        letter-spacing: -0.035em;
        margin-bottom: 8px;
    }

    .strategy-card p {
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.94rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .strategy-btn {
        min-height: 52px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: #fff;
        font-weight: 850;
        transition: all 0.3s ease;
    }

    .strategy-btn:hover {
        background: #fff;
        color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    }

    .strategy-card small {
        display: block;
        margin-top: 16px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.82rem;
    }

    /* Right form card */
    .contact-form-card {
        min-height: 100%;
        padding: 34px;
        border-radius: 30px;
        background: #fff;
        color: #101828;
        box-shadow: 0 30px 85px rgba(0, 0, 0, 0.18);
    }

    .contact-form-card h3 {
        font-size: 1.45rem;
        font-weight: 900;
        letter-spacing: -0.04em;
        color: var(--primary-dark);
        margin-bottom: 6px;
    }

    .contact-form-card .form-text-small {
        color: #667085;
        font-size: 0.92rem;
        margin-bottom: 22px;
    }

    /* Modern input */
    .modern-field {
        position: relative;
    }

    .modern-field .form-control,
    .modern-field .form-select {
        min-height: 54px;
        border-radius: 17px;
        border: 1px solid rgba(15, 23, 42, 0.12);
        padding: 17px 15px 8px;
        font-size: 0.94rem;
        color: #101828;
        background: #fff;
        transition: all 0.28s ease;
    }

    .modern-field textarea.form-control {
        min-height: 122px;
        padding-top: 26px;
        resize: vertical;
    }

    .modern-field label {
        position: absolute;
        top: 7px;
        left: 15px;
        z-index: 3;
        color: #667085;
        font-size: 0.74rem;
        font-weight: 800;
        pointer-events: none;
        transition: all 0.25s ease;
    }

    .modern-field .form-control:focus,
    .modern-field .form-select:focus {
        border-color: rgba(59, 178, 251, 0.7);
        box-shadow: 0 0 0 0.22rem rgba(59, 178, 251, 0.13);
    }

    /* Upload box */
    .upload-box {
        position: relative;
        display: block;
        border: 1.7px dashed rgba(15, 23, 42, 0.18);
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #fbfdff;
    }

    .upload-box:hover {
        border-color: var(--primary);
        background: rgba(59, 178, 251, 0.055);
    }

    .upload-box input {
        display: none;
    }

    .upload-box i {
        display: block;
        font-size: 1.55rem;
        color: var(--primary-dark);
        margin-bottom: 10px;
    }

    .upload-box strong {
        display: block;
        color: #101828;
        font-size: 0.92rem;
        margin-bottom: 4px;
    }

    .upload-box span {
        color: #667085;
        font-size: 0.82rem;
    }

    /* Responsive */
    @media (max-width: 991px) {

        .readypos-extra-section,
        .readypos-contact-section {
            padding: 78px 0;
        }

        .license-card,
        .setup-card,
        .contact-side-card,
        .contact-form-card {
            padding: 26px;
        }

        .contact-left-wrapper {
            gap: 18px;
        }

        .strategy-card-content {
            padding: 26px;
        }
    }

    @media (max-width: 575px) {

        .readypos-extra-section,
        .readypos-contact-section {
            padding: 68px 0;
        }

        .license-price strong {
            font-size: 2.45rem;
        }

        .contact-channel {
            align-items: flex-start;
            min-height: auto;
        }

        .contact-channel h5 {
            font-size: 0.95rem;
        }

        .contact-channel p {
            font-size: 0.84rem;
        }

        .contact-form-card,
        .contact-side-card,
        .strategy-card-content {
            padding: 22px;
            border-radius: 24px;
        }

        .strategy-card h4 {
            font-size: 1.12rem;
        }

        .strategy-card p {
            font-size: 0.9rem;
        }

        .strategy-btn {
            min-height: 50px;
        }
    }

    /* =========================================================
      Features
    ========================================================== */
    .feature-card {
        height: 100%;
        padding: 31px;
        border-radius: 30px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: "";
        position: absolute;
        width: 185px;
        height: 185px;
        right: -105px;
        top: -105px;
        border-radius: 50%;
        background: rgba(59, 178, 251, 0.11);
        transition: 0.45s ease;
    }

    .feature-card:hover {
        transform: translateY(-11px);
        border-color: rgba(59, 178, 251, 0.42);
        box-shadow: var(--shadow-md);
    }

    .feature-card:hover::before {
        transform: scale(1.45);
    }

    .feature-card:hover .feature-icon {
        transform: rotate(-5deg) scale(1.07);
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.28rem;
        background: linear-gradient(135deg, var(--primary), var(--primary-deep));
        box-shadow: 0 18px 38px rgba(59, 178, 251, 0.28);
        margin-bottom: 23px;
        position: relative;
        z-index: 2;
        transition: var(--transition);
    }

    .feature-card h5,
    .feature-card p {
        position: relative;
        z-index: 2;
    }

    .feature-card h5 {
        font-weight: 850;
        font-size: 1.08rem;
        letter-spacing: -0.025em;
        margin-bottom: 11px;
    }

    .feature-card p {
        color: var(--muted);
        font-size: 0.94rem;
        line-height: 1.75;
        margin-bottom: 0;
    }

    /* =========================================================
      How It Works
    ========================================================== */
    .step-card {
        position: relative;
        height: 100%;
        padding: 30px;
        border-radius: 30px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        overflow: hidden;
    }

    .step-card:hover {
        transform: translateY(-9px);
        box-shadow: var(--shadow-md);
        border-color: rgba(59, 178, 251, 0.34);
    }

    .step-number {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-soft);
        color: var(--primary-dark);
        font-weight: 900;
        margin-bottom: 20px;
    }

    .step-card h5 {
        font-size: 1.05rem;
        font-weight: 850;
        margin-bottom: 11px;
    }

    .step-card p {
        color: var(--muted);
        font-size: 0.94rem;
        margin-bottom: 0;
    }

    .step-arrow {
        position: absolute;
        top: 48px;
        right: -24px;
        color: rgba(59, 178, 251, 0.35);
        font-size: 2rem;
        z-index: 3;
    }

    /* =========================================================
      Product Mockup / Why ReadyPOS
    ========================================================== */
    .why-panel {
        padding: 31px;
        border-radius: 32px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .why-item {
        display: flex;
        gap: 16px;
        padding: 19px;
        border-radius: 22px;
        transition: var(--transition);
    }

    .why-item:hover {
        background: rgba(59, 178, 251, 0.08);
        transform: translateX(5px);
    }

    .why-number {
        flex: 0 0 43px;
        width: 43px;
        height: 43px;
        border-radius: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-soft);
        color: var(--primary-dark);
        font-weight: 900;
    }

    .why-item h6 {
        font-size: 0.98rem;
        font-weight: 850;
        margin-bottom: 6px;
    }

    .why-item p {
        color: var(--muted);
        font-size: 0.92rem;
        margin-bottom: 0;
        line-height: 1.72;
    }

    .terminal-card {
        position: relative;
        overflow: hidden;
        padding: 25px;
        border-radius: 34px;
        color: #fff;
        background:
            radial-gradient(circle at top right, rgba(59, 178, 251, 0.25), transparent 35%),
            linear-gradient(135deg, #07111f, #0f172a);
        box-shadow: var(--shadow-lg);
    }

    .terminal-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 36px 36px;
        opacity: 0.45;
    }

    .terminal-content {
        position: relative;
        z-index: 2;
    }

    .terminal-product {
        display: flex;
        justify-content: space-between;
        padding: 14px 0;
        color: #cbd5e1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.94rem;
    }

    /* =========================================================
      Integrations
    ========================================================== */
    .integration-card {
        height: 100%;
        min-height: 112px;
        padding: 24px;
        border-radius: 26px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
        display: flex;
        align-items: center;
        gap: 16px;
        transition: var(--transition);
    }

    .integration-card:hover {
        transform: translateY(-8px);
        border-color: rgba(59, 178, 251, 0.38);
        box-shadow: var(--shadow-md);
    }

    .integration-icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: var(--primary-soft);
        color: var(--primary-dark);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex: 0 0 52px;
        transition: var(--transition);
    }

    .integration-card:hover .integration-icon {
        background: linear-gradient(135deg, var(--primary), var(--primary-deep));
        color: #fff;
        transform: scale(1.05) rotate(-4deg);
    }

    .integration-card h6 {
        font-size: 0.98rem;
        font-weight: 850;
        margin-bottom: 3px;
    }

    .integration-card small {
        color: var(--muted);
        font-weight: 600;
    }

    /* =========================================================
  ReadyPOS Extra Premium Sections
  Section 1: License Cards
  Section 2: Setup & Publication
  Section 3: Premium Contact / Demo Form
========================================================== */

    /* Common */
    .readypos-extra-section {
        position: relative;
        padding: 96px 0;
        overflow: hidden;
    }

    .readypos-extra-section .section-subtitle {
        max-width: 760px;
    }

    .readypos-soft-bg {
        background:
            radial-gradient(circle at 12% 12%, rgba(59, 178, 251, 0.12), transparent 30%),
            radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.08), transparent 28%),
            var(--soft);
    }

    .readypos-card-glow {
        transition: all 0.35s ease;
    }

    .readypos-card-glow:hover {
        transform: translateY(-10px);
        border-color: rgba(59, 178, 251, 0.38) !important;
        box-shadow: 0 28px 75px rgba(15, 23, 42, 0.12);
    }

    .readypos-check-list {
        list-style: none;
        padding: 0;
        margin: 26px 0 0;
    }

    .readypos-check-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--muted);
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 14px;
        font-weight: 600;
    }

    .readypos-check-list li i {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
        font-size: 0.68rem;
    }

    .readypos-check-list li .check {
        color: var(--primary-dark);
        background: rgba(59, 178, 251, 0.13);
    }

    .readypos-check-list li .cross {
        color: #9ca3af;
        background: rgba(148, 163, 184, 0.14);
    }

    /* =========================================================
  Section 1: License Cards
========================================================== */
    .license-card {
        position: relative;
        height: 100%;
        padding: 34px;
        border-radius: 32px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 14px 42px rgba(15, 23, 42, 0.055);
        overflow: hidden;
    }

    .license-card.featured {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.14);
        background:
            radial-gradient(circle at 70% 20%, rgba(125, 211, 252, 0.32), transparent 28%),
            radial-gradient(circle at 20% 18%, rgba(59, 178, 251, 0.28), transparent 30%),
            linear-gradient(135deg, #07111f 0%, #0f172a 45%, #0b2540 100%);
        box-shadow: 0 32px 90px rgba(59, 178, 251, 0.22);
    }

    .license-card.featured::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
        background-size: 34px 34px;
        opacity: 0.45;
    }

    .license-card-content {
        position: relative;
        z-index: 2;
    }

    .license-card h4 {
        font-size: 1.12rem;
        font-weight: 900;
        letter-spacing: -0.035em;
        margin-bottom: 22px;
    }

    .license-price {
        display: flex;
        align-items: flex-end;
        gap: 7px;
        margin-bottom: 12px;
    }

    .license-price del {
        color: #ef476f;
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .license-card.featured .license-price del {
        color: rgba(255, 255, 255, 0.72);
    }

    .license-price strong {
        font-size: clamp(2.4rem, 5vw, 3.25rem);
        line-height: 1;
        font-weight: 950;
        letter-spacing: -0.08em;
        color: var(--primary-dark);
    }

    .license-card.featured .license-price strong {
        color: #fff;
    }

    .license-price span {
        color: var(--muted);
        font-weight: 700;
        margin-bottom: 9px;
    }

    .license-card.featured .license-price span,
    .license-card.featured .readypos-check-list li {
        color: rgba(255, 255, 255, 0.86);
    }

    .license-card.featured .readypos-check-list li .check {
        color: #fff;
        background: rgba(255, 255, 255, 0.16);
    }

    .license-ribbon {
        position: absolute;
        top: 22px;
        right: -52px;
        z-index: 4;
        width: 190px;
        padding: 8px 0;
        text-align: center;
        background: linear-gradient(135deg, var(--primary), var(--primary-deep));
        color: #fff;
        font-size: 0.75rem;
        font-weight: 900;
        transform: rotate(45deg);
        box-shadow: 0 12px 30px rgba(59, 178, 251, 0.35);
    }

    .license-btn {
        margin-top: 24px;
    }

    /* =========================================================
  Section 2: Setup & Publication Cards
========================================================== */
    .setup-card {
        position: relative;
        height: 100%;
        padding: 30px;
        border-radius: 30px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 14px 42px rgba(15, 23, 42, 0.05);
        overflow: hidden;
    }

    .setup-card.featured {
        color: #fff;
        border-color: transparent;
        background:
            radial-gradient(circle at top right, rgba(125, 211, 252, 0.28), transparent 32%),
            linear-gradient(135deg, var(--primary), var(--primary-deep));
        box-shadow: 0 30px 85px rgba(59, 178, 251, 0.26);
    }

    .setup-card.featured .readypos-check-list li {
        color: rgba(255, 255, 255, 0.9);
    }

    .setup-card.featured .readypos-check-list li .check {
        color: var(--primary-deep);
        background: #fff;
    }

    .setup-card h4 {
        font-size: 1.02rem;
        font-weight: 900;
        margin-bottom: 16px;
    }

    .setup-price {
        font-size: 2.35rem;
        line-height: 1;
        font-weight: 950;
        letter-spacing: -0.07em;
        color: var(--primary-dark);
        margin-bottom: 12px;
    }

    .setup-card.featured .setup-price {
        color: #fff;
    }

    .setup-card p {
        color: var(--muted);
        font-size: 0.92rem;
        margin-bottom: 0;
    }

    .setup-card.featured p {
        color: rgba(255, 255, 255, 0.82);
    }

    .setup-badge {
        position: absolute;
        top: 18px;
        right: -50px;
        width: 170px;
        padding: 7px 0;
        text-align: center;
        background: #fff;
        color: var(--primary-dark);
        font-size: 0.68rem;
        font-weight: 900;
        transform: rotate(45deg);
    }


    /* =========================================================
      Testimonials
    ========================================================== */
    .testimonial-section {
        overflow: hidden;
        color: #fff;
        background:
            radial-gradient(circle at top left, rgba(59, 178, 251, 0.2), transparent 31%),
            linear-gradient(135deg, #070b18, #0f172a);
    }

    .testimonial-card {
        min-height: 305px;
        padding: 32px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.11);
        transition: var(--transition);
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.09);
    }

    .stars {
        color: #facc15;
        margin-bottom: 16px;
        font-size: 0.92rem;
    }

    .testimonial-card p {
        color: #cbd5e1;
        line-height: 1.78;
        font-size: 0.96rem;
        margin-bottom: 0;
    }

    .client {
        display: flex;
        align-items: center;
        gap: 13px;
        margin-top: 24px;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    }

    .swiper {
        padding-bottom: 52px;
    }

    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.55);
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary);
    }

    /* =========================================================
      FAQ
    ========================================================== */
    .faq-wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .accordion-item {
        border: 1px solid var(--border);
        border-radius: 20px !important;
        margin-bottom: 14px;
        overflow: hidden;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
    }

    .accordion-button {
        padding: 20px 22px;
        font-weight: 800;
        font-size: 0.98rem;
        color: var(--text);
        background: var(--white);
    }

    .accordion-button:not(.collapsed) {
        color: var(--primary-dark);
        background: rgba(59, 178, 251, 0.07);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .accordion-body {
        color: var(--muted);
        font-size: 0.95rem;
        line-height: 1.78;
        padding: 0 22px 22px;
        background: var(--white);
    }

    /* =========================================================
      Contact / Demo
    ========================================================== */
    .demo-card {
        border-radius: 36px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        overflow: hidden;
    }

    .demo-info {
        height: 100%;
        padding: 42px;
        color: #fff;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 30%),
            linear-gradient(135deg, var(--primary), var(--primary-deep));
        position: relative;
        overflow: hidden;
    }

    .demo-info::before {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        left: -88px;
        bottom: -92px;
    }

    .demo-info-content {
        position: relative;
        z-index: 2;
    }

    .demo-info h3 {
        font-weight: 900;
        letter-spacing: -0.04em;
        margin-bottom: 16px;
    }

    .demo-info p {
        color: rgba(255, 255, 255, 0.86);
        line-height: 1.8;
    }

    .demo-info-list {
        list-style: none;
        padding: 0;
        margin: 28px 0 0;
    }

    .demo-info-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        color: rgba(255, 255, 255, 0.92);
        font-weight: 700;
        font-size: 0.94rem;
    }

    .demo-form {
        padding: 42px;
    }

    .form-control,
    .form-select {
        border-radius: 16px;
        padding: 13px 15px;
        border-color: var(--border);
        background: var(--white);
        color: var(--text);
        font-size: 0.94rem;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: rgba(59, 178, 251, 0.55);
        box-shadow: 0 0 0 0.2rem rgba(59, 178, 251, 0.12);
    }

    body.dark-mode .form-control,
    body.dark-mode .form-select {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    /* =========================================================
  CTA Section - Final Responsive Fixed Version
========================================================== */
    .readypos-cta-section {
        position: relative;
        padding: 110px 0;
        background:
            linear-gradient(180deg, var(--white) 0%, #f5fbff 100%);
        overflow: hidden;
        isolation: isolate;
        z-index: 2;
    }

    /* Dark mode support */
    body.dark-mode .readypos-cta-section {
        background:
            linear-gradient(180deg, #070b18 0%, #0b1220 100%);
    }

    /* Main CTA Box */
    .cta-box {
        position: relative;
        overflow: hidden;
        padding: 82px 42px;
        border-radius: 42px;
        text-align: center;
        color: #fff;
        background:
            radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
            radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.22), transparent 22%),
            linear-gradient(135deg, var(--primary), var(--primary-deep));
        box-shadow:
            0 34px 95px rgba(59, 178, 251, 0.34),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.22);
    }

    /* Content z-index */
    .cta-content {
        position: relative;
        z-index: 5;
        max-width: 980px;
        margin: 0 auto;
    }

    /* Badge */
    .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.24);
        color: #fff;
        font-size: 0.82rem;
        font-weight: 850;
        margin-bottom: 20px;
        backdrop-filter: blur(12px);
    }

    /* Text */
    .cta-box h2 {
        font-size: clamp(2rem, 4vw, 3.35rem);
        font-weight: 900;
        letter-spacing: -0.06em;
        line-height: 1.08;
        margin-bottom: 18px;
        color: #fff;
    }

    .cta-box p {
        max-width: 720px;
        margin: 0 auto 34px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.8;
        font-size: 1rem;
        font-weight: 500;
    }

    /* Button wrapper */
    .cta-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* Main button */
    .cta-main-btn {
        min-height: 54px;
        padding: 14px 30px;
        border-radius: 999px;
        background: #fff;
        color: var(--primary-dark);
        font-weight: 900;
        border: 0;
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
        transition: all 0.35s ease;
    }

    .cta-main-btn:hover {
        color: var(--primary-deep);
        background: #f4fbff;
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 24px 55px rgba(15, 23, 42, 0.2);
    }

    /* Outline button */
    .cta-outline-btn {
        min-height: 54px;
        padding: 14px 30px;
        border-radius: 999px;
        color: #fff;
        font-weight: 850;
        border: 1px solid rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        transition: all 0.35s ease;
    }

    .cta-outline-btn:hover {
        color: var(--primary-dark);
        background: #fff;
        border-color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
    }

    /* Animated Shapes */
    .cta-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.13);
        pointer-events: none;
        z-index: 1;
        animation: ctaFloat 7s ease-in-out infinite;
    }

    .cta-shape-one {
        width: 260px;
        height: 260px;
        left: -95px;
        bottom: -105px;
    }

    .cta-shape-two {
        width: 190px;
        height: 190px;
        right: -70px;
        top: -70px;
        animation-delay: 1.6s;
    }

    .cta-shape-three {
        width: 90px;
        height: 90px;
        right: 18%;
        bottom: 28px;
        background: rgba(255, 255, 255, 0.08);
        animation-delay: 2.8s;
    }

    @keyframes ctaFloat {

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

        50% {
            transform: translateY(-18px) translateX(12px) scale(1.04);
        }
    }

    /* Button icon animation */
    .cta-main-btn i,
    .cta-outline-btn i {
        transition: transform 0.3s ease;
    }

    .cta-main-btn:hover i {
        transform: translateX(5px);
    }

    .cta-outline-btn:hover i {
        transform: rotate(-12deg) scale(1.08);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .readypos-cta-section {
            padding: 86px 0;
        }

        .cta-box {
            padding: 68px 32px;
            border-radius: 34px;
        }
    }

    @media (max-width: 575px) {
        .readypos-cta-section {
            padding: 72px 0;
        }

        .cta-box {
            padding: 54px 22px;
            border-radius: 28px;
        }

        .cta-box h2 {
            font-size: 2rem;
            letter-spacing: -0.045em;
        }

        .cta-box p {
            font-size: 0.94rem;
            margin-bottom: 28px;
        }

        .cta-actions {
            gap: 12px;
        }

        .cta-main-btn,
        .cta-outline-btn {
            width: 100%;
            min-height: 52px;
        }

        .cta-shape-one {
            width: 190px;
            height: 190px;
            left: -90px;
            bottom: -90px;
        }

        .cta-shape-two {
            width: 140px;
            height: 140px;
            right: -65px;
            top: -60px;
        }

        .cta-shape-three {
            display: none;
        }
    }

    /* =========================================================
      Footer
    ========================================================== */
    .footer {
        padding: 80px 0 28px;
        background: #050814;
        color: #99a5ba;
    }

    .footer-brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 1.35rem;
        font-weight: 900;
        letter-spacing: -0.05em;
        margin-bottom: 16px;
    }

    .footer p {
        line-height: 1.78;
        font-size: 0.94rem;
    }

    .footer h6 {
        color: #fff;
        font-weight: 850;
        font-size: 0.96rem;
        margin-bottom: 18px;
    }

    .footer a {
        display: block;
        color: #99a5ba;
        font-size: 0.92rem;
        margin-bottom: 10px;
        transition: var(--transition);
    }

    .footer a:hover {
        color: var(--primary);
        transform: translateX(5px);
    }

    .social-links a {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 50%;
        margin-right: 8px;
        background: rgba(255, 255, 255, 0.08);
    }

    .social-links a:hover {
        background: var(--primary);
        transform: translateY(-4px);
    }

    .footer-bottom {
        margin-top: 50px;
        padding-top: 23px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.9rem;
    }