@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital, opsz, wght@0, 9..40, 100..1000;1, 9..40, 100..1000 &display=swap');

/* ─── CSS VARIABLES ────────────────────────── */:root
{
    --ink: #000;
    --ink-2: #000;
    --ink-3: #000;
    --surface: #FFFFFF;
    --surface-2: #F6F7FB;
    --surface-3: #EDEEF5;
    --accent: #2563EB;
    --accent-light: #EEF3FE;
    --accent-2: #0EA5E9;
    --green: #059669;
    --green-light: #ECFDF5;
    --amber: #D97706;
    --amber-light: #FFFBEB;
    --border: #E2E4EE;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: "DM Sans", sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ─── BASE STYLES ───────────────────────────── */
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--surface);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

/* ─── LAYOUT ────────────────────────────────── */
section {
    padding: 96px 5%;
}

.py-lg-6 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}

/* ─── NAVIGATION ─────────────────────────────── */
.munim-nav {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.munim-nav.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links .nav-link {
    font-size: 14px;
    color: var(--ink) !important;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    padding: 0 !important;
}

.nav-links .nav-link:hover {
    color: var(--accent) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ─── BUTTONS ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent) !important;
    color: #fff !important;
    border-color: var(--accent) !important;
}

.btn-primary:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--ink-2);
    color: var(--ink-2);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-primary-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-secondary-lg {
    padding: 13px 26px;
    font-size: 16px;
    border-radius: 10px;
    color: var(--ink-2);
    border: 1px solid var(--ink-2);
}

.btn-secondary-lg:hover {
    background: var(--surface-3);
    color: var(--ink-2);
}

.btn-white {
    background: #fff;
    color: var(--ink);
}

.btn-white:hover {
    background: #f0f4ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: black;
}

.btn-outline-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ─── HERO SECTION ───────────────────────────── */
.hero {
    padding: 140px 5% 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: fadeInScale 0.8s ease-out;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero h1 {
    animation: slideUp 0.8s ease-out 0.2s both;
}
.hero-sub {
    animation: fadeIn 0.8s ease-out 0.4s both;
}
.hero-ctas {
    animation: slideUp 0.8s ease-out 0.6s both;
}
.hero-ctas .btn {
    animation: bounceIn 0.6s ease-out 0.8s both;
}
.hero-ctas .btn-secondary-lg {
    animation-delay: 0.9s;
}
.trust-line {
    animation: fadeIn 0.8s ease-out 1.1s both;
}

.banner-hero {
    margin: 32px auto;
    max-width: 100%;
    width: 100%;
    transform: rotate(-2deg);
    transition: transform 0.6s ease-out;
}

.banner-hero.straighten {
    transform: rotate(0deg);
}

.banner-hero-2 {
    position: absolute;
    bottom: 100px;
    left: 0;
    margin: 0 auto;
    width: 100%;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.logo-netset {
    height: 161px;
}

.screen-card.her-section {
    position: absolute;
    bottom: 29%;
    left: 0;
    transform: translate(-50%, -50%);
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    opacity: 0;
    transform: translate(-50%, -50%) translateX(100px);
    transition: all 0.8s ease-out;
    max-width: 292px;
    width: 100%;
}
.point-sale {
    max-width: 624px;
    width: 100%;
}
.screen-card.her-section.animate-right {
    opacity: 1;
    transform: translate(-20%, -50%);
}

/* ─── POS FAQ SECTION ─────────────────────────── */
.pos-faq__heading {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
}

.pos-faq__accordion .accordion-item {
    background-color: transparent !important;
    border: none !important;
    border-top: 1px solid #d8d3cc !important;
}

.pos-faq__accordion .accordion-item:last-child {
    border-bottom: 1px solid #d8d3cc !important;
}

.pos-faq__accordion .accordion-button {
    background-color: transparent !important;
    color: #1a1a1a !important;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
    box-shadow: none !important;
}

.pos-faq__accordion .accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
    width: auto;
    height: auto;
    transform: none !important;
}

.pos-faq__accordion .accordion-button:not(.collapsed)::after {
    content: '−';
}

.pos-faq__accordion .accordion-body {
    padding: 0 0 20px;
    color: var(--ink);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.pos-faq__learn-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pos-faq__learn-more:hover {
    opacity: 0.6;
}

.pos-faq__right-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.pos-faq__bg-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pos-faq__bg-layer.pos-faq__bg-active {
    opacity: 1;
}

.pos-faq__bg--payments {
    background: url("../images/take-payment-bg.png") no-repeat center center;
    background-size: cover;
    opacity: 1;
}
.pos-faq__bg--customers {
    background: url("../images/customer-base-bg.png") no-repeat center center;
    background-size: cover;
}
.pos-faq__bg--cashflow {
    background: url("../images/add-offers-bg.png") no-repeat center center;
    background-size: cover;
}
.pos-faq__bg--apps {
    background: url("../images/view-orders-bg.png") no-repeat center center;
    background-size: cover;
}
.infor-heading {
    font-size: 28px;
    text-align: center;
    letter-spacing: -1px;
}
.feature-img {
    border-radius: 23px;
    border: 10px solid #ffffff4a;
}
.pos-faq__card-wrap.pos-faq__card-visible.pos-faq__card--payments,
.pos-faq__card-visible {
    max-width: 736px;
}
.pos-faq__card-wrap.pos-faq__card--customers,
.pos-faq__card-wrap.pos-faq__card--cashflow,
.pos-faq__card-wrap.pos-faq__card--apps {
    max-width: 436px;
}
.pos-faq__card-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(24px);
    width: 230px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.pos-faq__card-wrap.pos-faq__card-visible {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.pos-faq__card-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    position: absolute !important;
    top: -20px !important;
    left: -20px !important;
}

.pos-faq__card-icon {
    font-size: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pos-faq__left-col {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ─── TYPOGRAPHY ────────────────────────────── */
h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, #232424, #232424);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 em {
    font-style: normal;
    color: var(--accent);
}

h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 16px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--ink-2);
    margin: 0 auto 36px;
    font-weight: 300;
    line-height: 1.6;
}

.trust-line {
    font-size: 13px;
    color: var(--amber-light);
}

/* ─── SECTION COMPONENTS ─────────────────────── */
.section-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 14px;
    animation: fadeIn 0.8s ease-out;
}

.section-sub {
    font-size: 17px;
    color: var(--ink-2);
    font-weight: 300;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.feature-section {
    background: url("../images/bg-feature.png") no-repeat;
    background-size: cover;
    width: 100%;
}

/* ─── FEATURES ───────────────────────────────── */
.feat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.22s;
    opacity: 0;
    background: #fff;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.feat-card:nth-child(1) {
    animation-delay: 0.1s;
}
.feat-card:nth-child(2) {
    animation-delay: 0.2s;
}
.feat-card:nth-child(3) {
    animation-delay: 0.3s;
}
.feat-card:nth-child(4) {
    animation-delay: 0.4s;
}
.feat-card:nth-child(5) {
    animation-delay: 0.5s;
}
.feat-card:nth-child(6) {
    animation-delay: 0.6s;
}
.feat-card:nth-child(7) {
    animation-delay: 0.7s;
}
.feat-card:nth-child(8) {
    animation-delay: 0.8s;
}

.feat-card:hover {
    background: var(--surface);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-4px);
}

.feat-card:hover .feat-icon {
    transform: scale(1.1) rotate(5deg);
}

.feat-icon {
    display: flex;
    margin-bottom: 16px;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.feat-card h3 {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.6;
}

.feat-card:before {
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, #0000, #ec5e00, #0000);
    height: 2px;
    top: 0;
    right: 0;
}

/* ─── WHY SECTION ───────────────────────────── */
.why-section {
    background: var(--ink);
    color: #fff;
}

.why-section h2 {
    color: #fff;
}

.why-section .section-sub {
    color: #fff
}

/* ─── INVENTORY SHOWCASE ────────────────────── */
.inventory-showcase {
    margin-top: 60px;
    padding: 40px 0;
}

.inventory-content {
    animation: slideInLeft 0.8s ease-out;
}

.inventory-content h2 {
    color: #fff;
    font-size: 45px;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.inventory-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    animation: fadeIn 0.8s ease-out 0.4s both;
    margin: 0 0 2px;
}

.inventory-content.dark p {
    color: var(--ink-2);
}

.inventory-content .btn {
    margin-top: 22px;
    animation: bounceIn 0.6s ease-out 0.6s both;
}

.inventory-visual {
    position: relative;
}

.inventory-mockup {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.kithcen-img-area {
    position: relative;
    left: -110px;
    bottom: -9px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.kithcen-img-area.animate-right {
    opacity: 1;
    transform: translateX(0);
}


.thm__wrap.scroll-animate {
    opacity: 1;
    transform: translateX(0);
}

.thm__wrap:hover {
    transform: translateX(0) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ─── MOCK UI COMPONENTS ────────────────────── */
.mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mock-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}

.mock-badge {
    font-size: 11px;
    background: var(--green-light);
    color: var(--green);
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 600;
}

.mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.mock-row:last-child {
    border-bottom: none;
}

.mock-label {
    color: var(--ink-2);
}
.mock-val {
    font-weight: 600;
    color: var(--ink);
}

.mock-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.mock-stat {
    background: var(--surface);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid var(--border);
}

.mock-stat-label {
    font-size: 11px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-stat-val {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 4px;
}

/* ─── SCREEN COMPONENTS ─────────────────────── */
.screen-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.screen-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-row {
    display: flex;
    gap: 5px;
}

.dot-sm {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.screen-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-3);
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.screen-body {
    padding: 20px;
}

/* ─── BENEFITS ──────────────────────────────── */
.benefit-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.benefit-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--ink-2);
}

/* ─── SUBSCRIPT ITEMS ───────────────────────── */
.subscript-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.check-icon {
    color: var(--green);
}

.subscript-item h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-body);
}

.subscript-item:hover h4 {
    color: var(--accent);
}
/* ─── PRICING ───────────────────────────────── */
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.price-tier {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.price-amount sup {
    font-size: 18px;
    font-weight: 500;
    vertical-align: super;
}

.price-period {
    font-size: 13px;
    color: var(--ink-3);
    margin-bottom: 4px;
}

.price-note {
    font-size: 12px;
    color: var(--ink-3);
    margin-bottom: 24px;
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.price-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink-2);
    margin-bottom: 10px;
    line-height: 1.4;
}

.price-feature .pf-icon {
    color: var(--green);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-cta {
    width: 100%;
    margin-top: 24px;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.18s;
}

.price-cta-primary {
    background: var(--accent);
    color: #fff;
    border: none;
}

.price-cta-primary:hover {
    background: #1d4ed8;
}

.price-cta-ghost {
    background: transparent;
    color: var(--ink-2);
    border: 1px solid var(--border);
}

.price-cta-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ─── TESTIMONIALS ──────────────────────────── */
.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 15px;
}

.testi-stars {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 300;
}

.testi-quote strong {
    font-weight: 500;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-toggler.border-0 {
    background: var(--ink-3);
}
.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 600;
}
.testi-role {
    font-size: 12px;
    color: var(--ink-3);
}

/* ─── TESTIMONIALS SLIDER ─────────────────── */
.testimonials-slider {
    margin-top: 40px;
    overflow: hidden;
}

.testimonials-slider .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

.testimonials-slider .testi-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    height: 100%;
}

.testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

/* ─── FAQ SECTION ───────────────────────────── */
.faq-section {
    background: var(--surface-2);
    padding: 60px 20px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 19px;
    font-weight: 500;
    gap: 16px;
}

.faq-q:hover {
    color: var(--accent);
}

.faq-arrow {
    color: var(--ink-3);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-a {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}
.faq-item.open .faq-arrow {
    transform: rotate(45deg);
}

/* ─── FAQ RESPONSIVE ───────────────────────────── */
@media(max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    .pos-faq__card-wrap.pos-faq__card-visible.pos-faq__card--payments,
    .pos-faq__card-visible {
        max-width: 646px;
    }
    .thm__wrap {
        display: none;
    }
    .faq-item {
        margin-bottom: 8px;
    }

    .faq-q {
        padding: 18px 20px;
        font-size: 17px;
        gap: 12px;
        min-height: 60px;
        align-items: center;
    }

    .faq-arrow {
        font-size: 16px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-3);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .faq-a {
        padding: 0 20px 15px;
        font-size: 13px;
        line-height: 1.6;
    }
}

@media(max-width: 480px) {
    .faq-section {
        padding: 25px 10px;
    }

    .faq-item {
        margin-bottom: 6px;
    }

    .faq-q {
        padding: 16px 15px;
        font-size: 16px;
        gap: 10px;
        min-height: 55px;
    }

    .faq-arrow {
        font-size: 14px;
        width: 22px;
        height: 22px;
        background: var(--surface-3);
        border: 1px solid var(--border);
    }

    .faq-a {
        padding: 0 15px 12px;
        font-size: 12px;
        line-height: 1.5;
    }
}

@media(max-width: 360px) {
    .faq-section {
        padding: 20px 8px;
    }

    .faq-q {
        padding: 14px 12px;
        font-size: 15px;
        gap: 8px;
        min-height: 50px;
    }

    .faq-arrow {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .faq-a {
        padding: 0 12px 10px;
        font-size: 11px;
        line-height: 1.4;
    }
}

@media(min-width: 769px) and(max-width: 1024px) {
    .faq-q {
        padding: 16px 20px;
        font-size: 18px;
    }

    .faq-a {
        padding: 0 20px 16px;
        font-size: 13px;
    }
}

/* ─── FINAL CTA ─────────────────────────────── */
.final-cta {
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    margin: 0 auto 16px;
}

.final-cta p {
    color: #fff;
    font-size: 17px;
    max-width: 480px;
    margin: 0 auto 36px;
}

.final-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ─── INDUSTRY SECTION ───────────────────────── */
.ind__section {
    background-color: #0d0d0d;
    padding: 72px 0 0;
    overflow: hidden;
}

.ind__heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.ind__track {
    display: flex;
    width: 100%;
    height: 480px;
    margin-top: 48px;
}

.ind__card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

.ind__card.ind__card--active {
    flex: 3.5;
}

.ind__card + .ind__card {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ind__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.45) saturate(0.7);
}

.ind__card.ind__card--active .ind__card-img {
    transform: scale(1.04);
    filter: brightness(0.6) saturate(1);
}

.ind__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}

.ind__card-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
}

.ind__card-label {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.ind__card-expand {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease 0.1s;
}

.ind__card.ind__card--active .ind__card-expand {
    max-height: 160px;
    opacity: 1;
}

.ind__card-stat {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-top: 12px;
}

.ind__card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
    line-height: 1.5;
}

.ind__card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 14px 0;
}

.ind__card-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ind__card-cta:hover {
    opacity: 0.75;
}

.ind__card-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 3;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.ind__card.ind__card--active .ind__card-badge {
    opacity: 1;
    transform: scale(1);
}

.ind__badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}


/* ─── CURSOR SECTION ─────────────────────────── */
.crs__section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: none;
}

.crs__cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.crs__tile {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7) rotate(0deg);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.4,0.64,1);
}

.crs__tile.crs__tile--show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(var(--tile-rot));
}

.crs__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crs__content {
    position: relative;
    z-index: 999;
    text-align: center;
    pointer-events: none;
    padding: 0 24px;
}

.crs__heading {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.crs__btn-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    pointer-events: all;
    justify-content: center;
}

/* ─── FOOTER ────────────────────────────────── */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 5%;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.footer-logo span {
    color: #60A5FA;
}

.footer-links a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.footer-note {
    font-size: 14px;
    color: #fff;
}

/* ─── KITCHEN COMPONENTS ─────────────────────── */
.kithcen-img {
    margin-top: 22px;
    border-radius: 21px;
    transition: all 0.8s ease-out;
}

.kithcen-img.animate-left {
    opacity: 1;
    transform: translateX(0);
}

/* ─── bills design ───────────────────────*/
.thm__wrap {
    width: 260px;
    background: #fffef5;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.10), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.thm__topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f0ede4;
    border-bottom: 1px solid #ddd8cc;
}

.thm__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.thm__dot--red {
    background: #F87171;
}
.thm__dot--yellow {
    background: #FBBF24;
}
.thm__dot--green {
    background: #34D399;
}

.thm__topbar-title {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-left: 4px;
}

.thm__body {
    padding: 16px 16px 0;
}

.thm__shop-header {
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed #c8c2b0;
    margin-bottom: 12px;
}
.thm__shop-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    margin: 0 0 2px;
}
.thm__shop-meta {
    font-size: 9px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.thm__order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}
.thm__order-label {
    font-size: 9px;
    color: #888;
}
.thm__order-val {
    font-size: 9px;
    font-weight: 700;
    color: #1a1a1a;
}

.thm__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    border-radius: 20px;
    padding: 2px 7px;
}
.thm__live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #16a34a;
}

.thm__sep {
    border: none;
    border-top: 1px dashed #c8c2b0;
    margin: 10px 0;
}

.thm__item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.thm__item-name {
    font-size: 10px;
    color: #1a1a1a;
}
.thm__item-price {
    font-size: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.thm__sub-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}
.thm__sub-label {
    font-size: 9px;
    color: #888;
}
.thm__sub-val {
    font-size: 9px;
    color: #888;
}

.thm__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #1a1a1a;
    padding-top: 8px;
    margin-bottom: 0;
}
.thm__total-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.06em;
}
.thm__total-amount {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.thm__footer {
    text-align: center;
    border-top: 1px dashed #c8c2b0;
    padding: 10px 16px 12px;
    margin-top: 12px;
}
.thm__footer-text {
    font-size: 9px;
    color: #aaa;
    margin: 0 0 8px;
    line-height: 1.6;
}

.thm__barcode {
    display: flex;
    justify-content: center;
}
.thm__barcode-inner {
    width: 110px;
    height: 22px;
    background: repeating-linear-gradient(90deg, #222 0px, #222 2px, #fff 2px, #fff 4px, #222 4px, #222 5px, #fff 5px, #fff 8px, #222 8px, #222 11px, #fff 11px, #fff 13px, #222 13px, #222 15px, #fff 15px, #fff 17px, #222 17px, #222 19px, #fff 19px, #fff 22px, #222 22px, #222 24px, #fff 24px, #fff 27px, #222 27px, #222 29px);
    opacity: 0.75;
    border-radius: 1px;
}
.thm__barcode-num {
    font-size: 8px;
    color: #bbb;
    text-align: center;
    margin-top: 3px;
    letter-spacing: 0.15em;
}
.her-section {
    background: #fffef5 !important;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(0,0,0,0.018) 23px, rgba(0,0,0,0.018) 24px) !important;
    font-family: 'Courier New', Courier, monospace !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07), 0 10px 28px rgba(0, 0, 0, 0.10), inset 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

/* ── Top bar ── */
.her-section .screen-header {
    background: #ece9df !important;
    border-bottom: 1px solid #d9d4c6 !important;
    padding: 9px 13px !important;
}
.her-section .screen-title {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #888 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
}

/* ── Receipt body ── */
.thmdb__body {
    padding: 14px 14px 0;
}

/* ── Shop header ── */
.thmdb__shop {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed #c8c2b0;
    margin-bottom: 10px;
}
.thmdb__shop-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    margin: 0 0 2px;
}
.thmdb__shop-meta {
    font-size: 9px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

/* ── Order info rows ── */
.thmdb__info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}
.thmdb__info-label {
    font-size: 9px;
    color: #888;
}
.thmdb__info-val {
    font-size: 9px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ── Date badge ── */
.thmdb__date-badge {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 20px;
    padding: 2px 8px;
}

/* ── Dashed separator ── */
.thmdb__sep {
    border: none;
    border-top: 1px dashed #c8c2b0;
    margin: 9px 0;
}

/* ── Section label ── */
.thmdb__section-label {
    font-size: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #aaa;
    text-align: center;
    margin-bottom: 8px;
}

/* ── Stat grid (2x2) ── */
.thmdb__stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #d9d4c6;
    border: 1px solid #d9d4c6;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.thmdb__stat {
    background: #fffef5;
    padding: 9px 10px;
    text-align: center;
}

.thmdb__stat-label {
    font-size: 8px;
    color: #999;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.3;
}

.thmdb__stat-val {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.thmdb__stat-val--sm {
    font-size: 11px;
}

.thmdb__sum-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}
.thmdb__sum-label {
    font-size: 9px;
    color: #888;
}
.thmdb__sum-val {
    font-size: 9px;
    color: #1a1a1a;
    font-weight: 700;
}

.thmdb__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #1a1a1a;
    padding-top: 7px;
}
.thmdb__total-label {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.06em;
}
.thmdb__total-amount {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.thmdb__footer {
    text-align: center;
    border-top: 1px dashed #c8c2b0;
    padding: 9px 14px 11px;
    margin-top: 10px;
}
.thmdb__footer-text {
    font-size: 9px;
    color: #aaa;
    margin: 0 0 6px;
    line-height: 1.6;
}
.thmdb__barcode {
    display: flex;
    justify-content: center;
}
.thmdb__barcode-inner {
    width: 100px;
    height: 18px;
    background: repeating-linear-gradient(90deg, #222 0px, #222 2px, #fff 2px, #fff 4px, #222 4px, #222 5px, #fff 5px, #fff 8px, #222 8px, #222 11px, #fff 11px, #fff 13px, #222 13px, #222 15px, #fff 15px, #fff 17px, #222 17px, #222 20px, #fff 20px, #fff 23px, #222 23px, #222 25px, #fff 25px, #fff 28px);
    opacity: 0.7;
    border-radius: 1px;
}
.thmdb__barcode-num {
    font-size: 8px;
    color: #bbb;
    text-align: center;
    margin-top: 3px;
    letter-spacing: 0.12em;
}
/* ─── ANIMATIONS ────────────────────────────── */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ─── RESPONSIVE ────────────────────────────── */
@media(max-width: 1440px) {
    .crs__heading {
        font-size: 74px;
    }
    h1 {
        font-size: clamp(36px, 4.5vw, 84px);
    }
}
@media(max-width: 1080px) {
    .logo-netset {
        height: 121px;
    }
    .inventory-content h2 {
        font-size: 35px;
    }
    .inventory-content p {
        font-size: 15px;
    }
    .screen-card.her-section.animate-right {
        transform: translate(-0%, -50%);
    }
}
@media(max-width: 991.98px) {
    .nav-cta .btn-ghost {
        display: none;
    }
    .screen-card.her-section.animate-right {
        display: none;
    }
    .banner-hero-2 {
        bottom: 160px;
    }
    
    /* Mobile Navigation Styles */
    .munim-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
 .navbar-collapse {
    background: white;
    padding: 20px 20px;
    border-radius: 12px;
    margin-top: 0;
    position: absolute;
    top: 70px;
    width: 100%;
    left: 0;
}
    
    .nav-links {
        display: flex !important;
        flex-direction: column;
        gap: 11px !important;
        margin-bottom: 20px;
    }
    
    .nav-links .nav-link {
        color: #333 !important;
        font-weight: 500;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--accent) !important;
    }
    
    .navbar-toggler {
        border: 2px solid rgba(0, 0, 0, 0.1);
        padding: 8px 12px;
        border-radius: 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
    }
    .navbar-toggler-icon {
    width: 21px;
    opacity: 1;
    color: #fff;
}
.navbar-toggler.border-0 {
    padding: 2px 12px;
}
}

@media(max-width: 767.98px) {
    .inventory-showcase {
        text-align: center;
    }

    .d-flex.gap-3.align-items-center.justify-content-center {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .pos-faq__right-panel {
        position: relative;
        height: 470px;
    }
    .pos-faq__card-wrap {
        right: 16px;
    }

    .ind__track {
        flex-direction: column;
        height: auto;
    }
    .ind__card {
        flex: none !important;
        height: 100px;
        transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .ind__card.ind__card--active {
        height: 380px;
    }
    .ind__card-label {
        white-space: normal;
    }
}
@media(max-width: 479.98px) {
    .hero-content .ms-4 {
        margin: 0 !important;
    }
    .hero {
        padding: 90px 5% 0;
    }
    .btn {
        height: 40px !important;
    }
    .trust-line {
        display: none;
    }
    .banner-hero-2 {
        bottom: 50px;
    }
    h2 {
        font-size: 34px;
    }
    .pos-faq__card-close {
        width: 36px !important;
        height: 36px !important;
    }
    .crs__heading {
        font-size: 44px;
    }
}
