/* ═══════════════════════════════════════════════════════════════════
   eHisabKitab POS — Website Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ───────────────────────────────────────────────── */
:root {
    --primary:     #00465d;
    --primary-dk:  #003a4d;
    --accent:      #ffac00;
    --accent-dk:   #e09900;
    --dark:        #001e2b;
    --dark-mid:    #00293a;
    --text:        #334155;
    --muted:       #64748b;
    --light-bg:    #f8fafc;
    --border:      #e2e8f0;
    --white:       #ffffff;
    --success:     #22c55e;
    --radius:      12px;
    --radius-lg:   18px;
    --shadow:      0 4px 24px rgba(0,0,0,.07);
    --shadow-lg:   0 12px 48px rgba(0,0,0,.12);
    --nav-height:  68px;
    --font-main:   'Inter', system-ui, sans-serif;
    --font-head:   'Poppins', system-ui, sans-serif;
}

/* ─── Hero content entrance — CSS animation (no AOS dependency) ───── */
/* Replaces data-aos="fade-right" on .hero-content so LCP h1 is
   immediately visible, eliminating the 3,700ms element render delay. */
.hero-content {
    animation: heroEnter .65s ease-out both;
}
.page-hero .col-lg-7 {
    animation: heroEnter .5s ease-out both;
}
@keyframes heroEnter {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* ─── Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--dark); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dk); }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-6 { margin-bottom: 3.5rem; }
.letter-spacing-2 { letter-spacing: .08em; }
.bg-light-custom { background: var(--light-bg); }

/* ─── Navbar ──────────────────────────────────────────────────────── */
#mainNav {
    background: #145470;
    backdrop-filter: blur(12px);
    height: var(--nav-height);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .3s;
}
#mainNav.scrolled { background: #145470; }

.brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
}
.brand-icon-sm { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; }
.text-accent { color: var(--accent); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-size: .9rem; font-weight: 500;
    padding: .5rem .75rem !important;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,.08); }

.btn-accent {
    background: var(--accent); color: var(--dark) !important;
    border: none; border-radius: 8px;
    font-weight: 700; font-size: .875rem;
    transition: background .2s, transform .15s;
}
.btn-accent:hover { background: var(--accent-dk); transform: translateY(-1px); }

.btn-white { background: #fff; color: var(--dark) !important; font-weight: 600; border-radius: 8px; }
.btn-white:hover { background: var(--light-bg); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: #fff !important; border-radius: 8px; font-weight: 600; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ─── Section Headers ─────────────────────────────────────────────── */
.section-badge {
    display: inline-block;
    background: rgb(20 84 112);
    color: #ffffff !important;
    font-size: .75rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .3rem .8rem; border-radius: 20px;
    border: 1px solid rgba(0,70,93,.15);
    margin-bottom: .75rem;
}
.badge-green { 
     color: #16a34a; border-color: rgba(34,197,94,.2); }

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800; line-height: 1.25;
    color: var(--dark);
}
.section-subtitle {
    font-size: 1.05rem; color: var(--muted);
    max-width: 600px; margin: 0 auto;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ffac00 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Topbar ──────────────────────────────────────────────────────── */
.topbar {
    background: #021118;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: .38rem 0;
    font-size: .75rem;
}
.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .18s;
}
.topbar-link i { font-size: .8rem; }
.topbar-link:hover { color: #4ade80; }
.topbar-contact .topbar-link:first-child i { color: #25d366; }
.topbar-contact .topbar-link:last-child  i { color: #60a5fa; }
.topbar-sep { color: rgba(255,255,255,.18); font-size: .7rem; }
.topbar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: .35rem;
    color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.05);
    text-decoration: none;
    font-size: .8rem;
    transition: color .18s, background .18s;
}
.topbar-social-link:hover { color: #fff; background: rgba(255,255,255,.12); }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #459dc3 0%, #147ea7 60%, #2790bd 100%);
    position: relative; overflow: hidden;
    padding: 3rem 0 2.5rem;
}
.min-vh-85 { min-height: auto; }

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,70,93,.2) 0%, transparent 70%);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(255,172,0,.1) 0%, transparent 70%); }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 40%; background: radial-gradient(circle, rgba(0,168,204,.1) 0%, transparent 70%); }

.hero-badge {
    display: inline-flex; align-items: center;
    background: rgba(34,197,94,.15); color: #4ade80;
    font-size: .78rem; font-weight: 600;
    padding: .3rem .8rem; border-radius: 20px;
    border: 1px solid rgba(34,197,94,.25);
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800; line-height: 1.15;
    color: #fff; margin-bottom: 1.2rem;
}
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 2rem; }

.hero-stats { padding-top: .5rem; }
.stat-item { }
.stat-number { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-top: .2rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* ─── Dashboard Mockup ────────────────────────────────────────────── */
.dashboard-mockup {
    background: var(--dark-mid);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 560px;
    margin: 0 auto;
}
.mockup-header {
    background: var(--dark);
    padding: .7rem 1rem;
    display: flex; align-items: center; gap: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,.15);
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-title { font-size: .78rem; color: rgba(255,255,255,.4); }
.mockup-body { padding: 1rem; }

.mockup-stats-row { display: flex; gap: .75rem; margin-bottom: .75rem; }
.mockup-stat-card {
    flex: 1; border-radius: 8px; padding: .75rem;
    display: flex; align-items: center; gap: .6rem;
}
.mockup-stat-card.blue  { background: rgba(0,70,93,.35); }
.mockup-stat-card.green { background: rgba(34,197,94,.15); }
.mockup-stat-card.orange{ background: rgba(255,172,0,.15); }
.msc-icon { font-size: 1.2rem; color: rgba(255,255,255,.7); }
.msc-val  { font-size: .82rem; font-weight: 700; color: #fff; }
.msc-lbl  { font-size: .68rem; color: rgba(255,255,255,.45); }

.mockup-chart-area {
    background: rgba(255,255,255,.04); border-radius: 8px;
    padding: .75rem; margin-bottom: .75rem;
}
.chart-bar-group { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.chart-bar {
    flex: 1; background: rgba(0,70,93,.45); border-radius: 4px 4px 0 0;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    transition: background .2s;
}
.chart-bar span { font-size: .6rem; color: rgba(255,255,255,.4); padding-bottom: 3px; }
.chart-bar.active { background: var(--accent); }
.chart-label { font-size: .7rem; color: rgba(255,255,255,.3); text-align: center; margin-top: .4rem; }

.mockup-table { background: rgba(255,255,255,.04); border-radius: 8px; overflow: hidden; }
.mt-row { display: flex; justify-content: space-between; padding: .4rem .6rem; font-size: .72rem; color: rgba(255,255,255,.6); }
.mt-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.05); }
.mt-head { font-size: .68rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .05em; }

/* ─── Industries ──────────────────────────────────────────────────── */
.industries-section { background: var(--light-bg); }
.industry-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #fff; border: 1px solid var(--border);
    border-radius: 30px; padding: .45rem 1rem;
    font-size: .85rem; font-weight: 500;
    box-shadow: var(--shadow);
    white-space: nowrap;
    transition: border-color .2s, box-shadow .2s;
}
.industry-chip:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(0,70,93,.12); }
.industry-chip i { color: var(--primary); }

/* ─── Feature Cards ───────────────────────────────────────────────── */
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow .25s, transform .25s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.feature-card-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1rem;
}
.fc-blue   { background: rgba(0,70,93,.1);    color: var(--primary); }
.fc-purple { background: rgba(124,58,237,.1);  color: #7c3aed; }
.fc-green  { background: rgba(34,197,94,.1);   color: #16a34a; }
.fc-orange { background: rgba(255,172,0,.12);  color: #c47f00; }
.fc-teal   { background: rgba(20,184,166,.1);  color: #0f766e; }
.fc-red    { background: rgba(239,68,68,.1);   color: #dc2626; }
.fc-indigo { background: rgba(99,102,241,.1);  color: #4f46e5; }
.fc-cyan   { background: rgba(6,182,212,.1);   color: #0e7490; }
.fc-pink   { background: rgba(236,72,153,.1);  color: #be185d; }
.fc-amber  { background: rgba(245,158,11,.1);  color: #b45309; }
.fc-wa-green { background: rgba(37,211,102,.1); color: #128c7e; }
.fc-slate  { background: rgba(100,116,139,.1); color: #475569; }
.fc-sky    { background: rgba(14,165,233,.1);  color: #0369a1; }
.fc-gray   { background: rgba(107,114,128,.1); color: #374151; }

.feature-card-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card-desc  { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.feature-card-link  { font-size: .83rem; font-weight: 600; color: var(--primary); }
.feature-card-link:hover { color: var(--primary-dk); }

/* ─── Feature List ────────────────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    display: flex; align-items: flex-start; gap: .6rem;
    padding: .4rem 0; font-size: .9rem; color: var(--text);
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border: none; }
.feature-list li i { margin-top: 2px; flex-shrink: 0; }

/* ─── POS Mockup ──────────────────────────────────────────────────── */
.pos-mockup {
    background: var(--dark-mid);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
}
.pos-header {
    background: var(--dark); padding: .75rem 1rem;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.pos-title { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 600; }
.pos-badge {
    font-size: .65rem; font-weight: 700; letter-spacing: .06em;
    background: rgba(34,197,94,.2); color: #4ade80;
    padding: .15rem .5rem; border-radius: 4px;
}
.pos-body { padding: 1rem; }
.pos-search {
    background: rgba(255,255,255,.06); border-radius: 6px; padding: .6rem .8rem;
    display: flex; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.35); font-size: .82rem; margin-bottom: .75rem;
}
.pos-items { margin-bottom: .75rem; }
.pos-item {
    display: flex; justify-content: space-between;
    padding: .5rem .6rem; border-radius: 6px; margin-bottom: .3rem;
    font-size: .8rem; color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.04);
}
.pos-item.active { background: rgba(0,70,93,.35); color: #fff; }
.pi-name { flex: 1; }
.pi-qty  { color: rgba(255,255,255,.4); min-width: 30px; text-align: center; }
.pi-price{ font-weight: 600; min-width: 80px; text-align: right; }

.pos-totals { border-top: 1px solid rgba(255,255,255,.08); padding-top: .6rem; margin-bottom: .75rem; }
.pos-total-row {
    display: flex; justify-content: space-between;
    font-size: .82rem; color: rgba(255,255,255,.55);
    padding: .2rem 0;
}
.pos-total-row.grand { font-weight: 700; font-size: .95rem; color: #fff; padding-top: .4rem; border-top: 1px solid rgba(255,255,255,.12); margin-top: .3rem; }

.pos-payments { display: flex; gap: .5rem; }
.pay-btn {
    flex: 1; text-align: center; padding: .6rem;
    border-radius: 6px; font-size: .78rem; font-weight: 600; cursor: pointer;
}
.pay-btn.cash   { background: rgba(34,197,94,.2);  color: #4ade80; }
.pay-btn.card   { background: rgba(0,70,93,.3);    color: #7dd3ef; }
.pay-btn.wallet { background: rgba(255,172,0,.2);  color: #ffca40; }

/* ─── FBR Section ─────────────────────────────────────────────────── */
.fbr-section { background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%); }
.fbr-feature-item {
    display: flex; align-items: center;
    font-size: .85rem; font-weight: 500; color: var(--text);
    background: #fff; border: 1px solid var(--border);
    border-radius: 8px; padding: .55rem .8rem;
}
.fbr-card-group { display: flex; flex-direction: column; gap: .75rem; }
.fbr-card {
    display: flex; align-items: center; gap: 1rem;
    border-radius: var(--radius); padding: 1rem 1.25rem;
    border: 1px solid transparent;
}
.fbr-card.success { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.2); }
.fbr-card.warning { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.2); }
.fbr-card.info    { background: rgba(0,70,93,.07);   border-color: rgba(0,70,93,.15); }
.fbr-card-icon { font-size: 1.6rem; }
.fbr-card.success .fbr-card-icon { color: #16a34a; }
.fbr-card.warning .fbr-card-icon { color: #b45309; }
.fbr-card.info    .fbr-card-icon { color: var(--primary); }
.fbr-card-title { font-weight: 700; font-size: .9rem; color: var(--dark); }
.fbr-card-detail { font-size: .8rem; color: var(--muted); }

/* ─── Module Cards ────────────────────────────────────────────────── */
.module-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.2rem;
    text-align: center;
    transition: box-shadow .2s, border-color .2s, transform .2s;
    cursor: default;
}
.module-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }
.module-icon { font-size: 1.6rem; color: var(--primary); display: block; margin-bottom: .5rem; }
.module-title { font-size: .85rem; font-weight: 700; color: var(--dark); }
.module-count { font-size: .75rem; color: var(--muted); margin-top: .2rem; }

/* ─── CTA Section ─────────────────────────────────────────────────── */
.cta-section { background: var(--dark); }
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #007a9a 100%);
    border-radius: var(--radius-lg); padding: 3rem;
}
.cta-title   { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: #fff; }
.cta-subtitle{ color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 0; }

/* ─── Page Hero ───────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(160deg, var(--dark) 0%, #003a50 50%, var(--dark-mid) 100%);
    padding-bottom: 3rem;
}
.page-hero-title    { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; }
.page-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 600px; margin: 0 auto; }

/* ─── Feature Nav Bar (sticky) ───────────────────────────────────── */
.feature-nav-bar {
    position: sticky;
    top: var(--nav-height);
    z-index: 99;
    background: var(--dark);
    border-bottom: 2px solid rgba(255,172,0,.18);
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
    padding: .6rem 0;
}

.fnb-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
}

.feature-nav-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .775rem;
    font-weight: 600;
    padding: .35rem .85rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
    white-space: nowrap;
    color: rgba(255,255,255,.68);
    background: rgba(255,255,255,.07);
    transition: all .2s ease;
    line-height: 1.3;
}
.feature-nav-chip i { font-size: .78rem; opacity: .75; }
.feature-nav-chip:hover {
    background: rgba(255,172,0,.18);
    border-color: rgba(255,172,0,.45);
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255,172,0,.18);
}
.feature-nav-chip:hover i { opacity: 1; }

/* Override per-color chip styles — unified nav appearance */
.feature-nav-chip.fc-blue,
.feature-nav-chip.fc-purple,
.feature-nav-chip.fc-green,
.feature-nav-chip.fc-orange,
.feature-nav-chip.fc-teal,
.feature-nav-chip.fc-red,
.feature-nav-chip.fc-indigo,
.feature-nav-chip.fc-cyan,
.feature-nav-chip.fc-pink,
.feature-nav-chip.fc-amber,
.feature-nav-chip.fc-wa-green,
.feature-nav-chip.fc-slate,
.feature-nav-chip.fc-sky,
.feature-nav-chip.fc-gray {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.12);
    color: rgba(255,255,255,.68);
}
.feature-nav-chip.fc-blue:hover,
.feature-nav-chip.fc-purple:hover,
.feature-nav-chip.fc-green:hover,
.feature-nav-chip.fc-orange:hover,
.feature-nav-chip.fc-teal:hover,
.feature-nav-chip.fc-red:hover,
.feature-nav-chip.fc-indigo:hover,
.feature-nav-chip.fc-cyan:hover,
.feature-nav-chip.fc-pink:hover,
.feature-nav-chip.fc-amber:hover,
.feature-nav-chip.fc-wa-green:hover,
.feature-nav-chip.fc-slate:hover,
.feature-nav-chip.fc-sky:hover,
.feature-nav-chip.fc-gray:hover {
    background: rgba(255,172,0,.18);
    border-color: rgba(255,172,0,.45);
    color: var(--accent);
}

/* ─── Feature Detail ──────────────────────────────────────────────── */
.fd-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.fd-title { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: .75rem; }
.fd-desc  { color: var(--muted); font-size: .95rem; line-height: 1.7; }

.fd-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: .6rem;
}
.fd-item {
    display: flex; align-items: flex-start; gap: .6rem;
    background: #fff; border: 1px solid var(--border);
    border-radius: 8px; padding: .65rem .85rem;
    font-size: .865rem; color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.fd-item:hover { border-color: var(--primary); box-shadow: 0 2px 8px rgba(0,70,93,.08); }
.bg-light-custom .fd-item { background: var(--white); }

.fd-check {
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; flex-shrink: 0; margin-top: 1px;
}

/* ─── Contact Page ────────────────────────────────────────────────── */
.contact-info-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .2s;
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cic-icon {
    width: 52px; height: 52px; background: rgba(0,70,93,.08);
    color: var(--primary); font-size: 1.4rem;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto .75rem;
}
.contact-info-card h6 { font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.contact-info-card a  { color: var(--muted); font-size: .9rem; }
.contact-info-card a:hover { color: var(--primary); }

.form-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow);
}
.form-card-header {
    background: var(--dark); color: #fff;
    padding: 1rem 1.5rem; font-weight: 700; font-size: .95rem;
}
.form-card-body { padding: 1.75rem; }

.form-label { font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: .35rem; }
.form-control, .form-select {
    border-radius: 8px; border: 1px solid var(--border);
    font-size: .9rem; padding: .55rem .85rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,70,93,.12);
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Next steps */
.next-steps { display: flex; flex-direction: column; gap: 1rem; }
.next-step   { display: flex; gap: .85rem; align-items: flex-start; }
.ns-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--primary); color: #fff;
    font-size: .8rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.ns-title { font-weight: 700; font-size: .9rem; color: var(--dark); }
.ns-desc  { font-size: .82rem; color: var(--muted); }

.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
    display: flex; align-items: center; gap: .6rem;
    font-size: .88rem; color: var(--text);
    padding: .4rem 0; border-bottom: 1px solid var(--border);
}
.why-list li:last-child { border: none; }

/* ─── Showcase Section ────────────────────────────────────────────── */
.showcase-section { }

/* ─── Footer ──────────────────────────────────────────────────────── */
.site-footer {
    background: var(--dark-mid);
    color: rgba(255,255,255,.7);
    padding-top: 4rem;
}
.site-footer p,
.site-footer .text-muted { color: rgba(255,255,255,.55) !important; }
.footer-brand span { color: #fff; }
.footer-heading {
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,.5); margin-bottom: .85rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 0 0 .75rem; }
.footer-contact li {
    display: flex; align-items: center; gap: .6rem;
    font-size: .875rem; color: rgba(255,255,255,.55);
    margin-bottom: .5rem;
}
.footer-contact a { color: rgba(255,255,255,.55); }
.footer-contact a:hover { color: #fff; }
.footer-social {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; transition: background .2s, color .2s;
}
.footer-social:hover { background: var(--accent); color: var(--dark); }
.footer-divider { border-color: rgba(255,255,255,.07); margin: 2rem 0 1.5rem; }

/* ─── Pricing Page ────────────────────────────────────────────────── */

/* Hero trust chips */
.trust-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px; padding: .35rem .9rem;
    font-size: .82rem; font-weight: 500; backdrop-filter: blur(4px);
}

/* Demo note banner */
.demo-note-banner {
    background: linear-gradient(90deg, rgba(255,172,0,.1) 0%, rgba(255,172,0,.06) 100%);
    border: 1px solid rgba(255,172,0,.3);
    border-radius: var(--radius);
    padding: .85rem 1.5rem;
    font-size: .9rem; color: var(--text);
}
.demo-note-banner a { color: var(--accent-dk); text-decoration: underline; }

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow);
    transition: box-shadow .3s, transform .3s;
    position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing-card-popular {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(255,172,0,.18);
    transform: translateY(-6px);
}
.pricing-card-popular:hover { transform: translateY(-10px); box-shadow: 0 16px 56px rgba(255,172,0,.25); }

.pricing-card-enterprise {
    border-color: var(--primary);
    background: linear-gradient(160deg, #fff 60%, rgba(0,70,93,.04) 100%);
}

.pc-popular-badge {
    position: absolute; top: 0; right: 0;
    background: var(--accent); color: var(--dark);
    font-size: .72rem; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
    padding: .3rem .85rem;
    border-bottom-left-radius: 10px;
}

/* Card headers */
.pc-header {
    padding: 1.75rem 1.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
}
.pc-header-starter   { background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); }
.pc-header-business  { background: linear-gradient(135deg, rgba(255,172,0,.12) 0%, rgba(255,172,0,.04) 100%); }
.pc-header-pro       { background: linear-gradient(135deg, rgba(0,70,93,.08) 0%, rgba(0,168,204,.06) 100%); }
.pc-header-enterprise{ background: linear-gradient(135deg, var(--dark) 0%, #003a50 100%); }

.pc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: .75rem;
}
.pc-header-starter   .pc-icon { background: rgba(100,116,139,.15); color: #475569; }
.pc-header-business  .pc-icon { background: rgba(255,172,0,.2); color: #b45309; }
.pc-header-pro       .pc-icon { background: rgba(0,70,93,.15); color: var(--primary); }
.pc-header-enterprise .pc-icon { background: rgba(255,172,0,.2); color: var(--accent); }

.pc-plan { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.pc-header-enterprise .pc-plan { color: #fff; }
.pc-tagline { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.pc-header-enterprise .pc-tagline { color: rgba(255,255,255,.6); }

/* Price block */
.pc-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }

.pc-price-block {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
}
.pc-price-block-popular {
    background: rgba(255,172,0,.07);
    border-color: rgba(255,172,0,.25);
}
.pc-price-block-enterprise {
    background: rgba(0,70,93,.06);
    border-color: rgba(0,70,93,.15);
}

.pc-setup { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.pc-setup-label { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.pc-setup-amount { font-size: .95rem; font-weight: 700; color: var(--dark); }

.pc-divider { height: 1px; background: var(--border); margin-bottom: .6rem; }

.pc-monthly { display: flex; align-items: baseline; gap: .25rem; }
.pc-monthly-amount { font-size: 1.65rem; font-weight: 800; color: var(--primary); font-family: var(--font-head); }
.pc-price-block-popular .pc-monthly-amount { color: #b45309; }
.pc-monthly-period { font-size: .85rem; color: var(--muted); }

.pc-save-note { font-size: .72rem; color: var(--success); font-weight: 600; margin-top: .35rem; }

/* Feature list */
.pc-features {
    list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1;
}
.pc-features li {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .845rem; color: var(--text);
    padding: .38rem 0;
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.pc-features li:last-child { border: none; }
.pc-features li.included i { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pc-features li.excluded { opacity: .45; }
.pc-features li.excluded i { color: var(--muted); flex-shrink: 0; margin-top: 2px; }

/* CTA buttons */
.pc-cta { border-radius: 10px; font-weight: 700; padding: .65rem; font-size: .9rem; }
.pc-cta-popular { font-size: .95rem; }
.btn-enterprise {
    background: linear-gradient(135deg, var(--dark) 0%, #003a50 100%);
    color: #fff !important; border: none; border-radius: 10px;
    font-weight: 700; transition: opacity .2s, transform .15s;
}
.btn-enterprise:hover { opacity: .88; transform: translateY(-1px); }

/* WhatsApp button */
.btn-whatsapp {
    background: #25d366; color: #fff !important; border: none;
    border-radius: 10px; font-weight: 700;
    transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-1px); }

/* Price CTA section */
.price-cta-section { background: var(--dark); }
.price-cta-box {
    background: linear-gradient(135deg, #003a50 0%, #00293a 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 16px 64px rgba(0,0,0,.3);
}
.price-cta-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(255,172,0,.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.price-cta-tag {
    font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent); background: rgba(255,172,0,.12);
    padding: .25rem .75rem; border-radius: 20px;
    border: 1px solid rgba(255,172,0,.25);
}
.price-cta-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; }
.price-cta-sub { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 540px; }
.pca-point { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: rgba(255,255,255,.75); }

/* Comparison table */
.comparison-table-wrap {
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border); overflow: hidden;
}
.comparison-table { width: 100%; border-collapse: collapse; font-size: .875rem; }

.comparison-table thead tr { background: var(--dark); }
.comparison-table thead th {
    padding: 1rem .75rem; text-align: center; vertical-align: top;
    border-right: 1px solid rgba(255,255,255,.07);
    font-weight: 600;
}
.comparison-table thead th:first-child { text-align: left; width: 28%; border-right: 1px solid rgba(255,255,255,.1); }

.ct-feature-col { color: rgba(255,255,255,.55) !important; font-size: .78rem; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .05em; }
.ct-plan-col { color: #fff; }
.ct-popular-col { background: rgba(255,172,0,.1) !important; border-left: 2px solid rgba(255,172,0,.4) !important; border-right: 2px solid rgba(255,172,0,.4) !important; }
.ct-enterprise-col { background: rgba(0,70,93,.15) !important; }

.ct-plan-name { display: block; font-size: .95rem; font-weight: 800; font-family: var(--font-head); }
.ct-plan-price { display: block; font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.55); margin-top: .2rem; }
.ct-plan-price small { font-size: .7rem; }
.ct-popular-chip {
    display: inline-block; background: var(--accent); color: var(--dark);
    font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
    padding: .15rem .5rem; border-radius: 4px; margin-bottom: .3rem;
}

.comparison-table tbody tr { border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td {
    padding: .65rem .75rem; text-align: center; color: var(--text);
    border-right: 1px solid var(--border);
}
.comparison-table tbody td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.comparison-table tbody tr:hover { background: var(--light-bg); }

.ct-section-row td {
    background: linear-gradient(90deg, rgba(0,70,93,.06) 0%, rgba(0,70,93,.02) 100%) !important;
    font-size: .72rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .07em; color: var(--primary) !important;
    padding: .55rem .75rem !important; text-align: left !important;
}
.ct-price-summary-row td {
    background: var(--light-bg); font-size: .9rem; padding: .75rem !important;
}
.ct-price-summary-row td:first-child { color: var(--dark); }

.ct-yes { color: var(--success); font-size: 1rem; }
.ct-no  { color: #cbd5e1; font-size: 1rem; }

/* Why Demo section */
.why-demo-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.2rem 1.25rem;
    transition: box-shadow .2s, transform .2s;
}
.why-demo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.wdc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: .65rem;
}
.why-demo-card h6 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.why-demo-card p  { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* Pricing FAQ */
.pricing-faq .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: .6rem; overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.pricing-faq .faq-btn {
    font-size: .92rem; font-weight: 600; color: var(--dark);
    background: #fff; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: .6rem;
    border-radius: var(--radius) !important;
}
.pricing-faq .faq-btn:not(.collapsed) { color: var(--primary); background: rgba(0,70,93,.04); }
.pricing-faq .faq-btn::after { margin-left: auto; flex-shrink: 0; }
.faq-icon { color: var(--accent); flex-shrink: 0; }
.faq-body { font-size: .9rem; color: var(--muted); padding: .25rem 1.25rem 1.1rem 3.1rem; line-height: 1.7; }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-visual { margin-top: 2rem; }
    .cta-box { padding: 2rem; }
    .fd-items-grid { grid-template-columns: 1fr 1fr; }
    .min-vh-85 { min-height: auto; }
}
@media (max-width: 767.98px) {
    .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
    .feature-nav-bar { padding: .5rem 0; }
    .fnb-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: .35rem;
        padding: 0 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .fnb-inner::-webkit-scrollbar { display: none; }
    .feature-nav-chip { font-size: .72rem; padding: .3rem .7rem; }
    .cta-box { text-align: center; }
    .cta-box .text-lg-end { text-align: center !important; }
    .fd-items-grid { grid-template-columns: 1fr; }
    .mockup-stats-row { flex-direction: column; }
    .hero-stats { gap: 1rem !important; }
    .stat-divider { display: none; }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.8rem; }
    .btn-lg { font-size: .9rem; padding: .6rem 1.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
}

/* ─── Pricing Responsive Additions ──────────────────────────────── */
@media (max-width: 991.98px) {
    .pricing-card-popular { transform: translateY(0); }
    .price-cta-box { padding: 2rem; }
}
@media (max-width: 767.98px) {
    .price-cta-box { padding: 1.5rem 1.25rem; text-align: center; }
    .price-cta-sub { margin: 0 auto; }
    .faq-body { padding-left: 1.25rem; }
}
@media (max-width: 575.98px) {
    .pc-monthly-amount { font-size: 1.4rem; }
    .pricing-trust-bar { gap: .5rem !important; }
    .trust-chip { font-size: .76rem; padding: .28rem .7rem; }
}

/* ─── Hero Features Panel ────────────────────────────────────────── */
.hero-features-panel {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1.25rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.hfp-header {
    background: rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: .75rem 1.25rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}
.hfp-list {
    list-style: none;
    margin: 0;
    padding: .25rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hfp-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .9rem;
    transition: background .18s;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.hfp-list li:hover { background: rgba(255,255,255,.05); }
/* right-column items get a left border as a divider */
.hfp-list li:nth-child(even) { border-left: 1px solid rgba(255,255,255,.05); }
.hfp-icon {
    width: 1.8rem;
    height: 1.8rem;
    min-width: 1.8rem;
    border-radius: .45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}
.hfp-icon.blue   { background: rgba(59,130,246,.25); color: #60a5fa; }
.hfp-icon.green  { background: rgba(16,185,129,.25); color: #34d399; }
.hfp-icon.purple { background: rgba(139,92,246,.25); color: #a78bfa; }
.hfp-icon.orange { background: rgba(249,115,22,.25); color: #fb923c; }
.hfp-icon.teal   { background: rgba(20,184,166,.25); color: #2dd4bf; }
.hfp-icon.indigo { background: rgba(99,102,241,.25); color: #818cf8; }
.hfp-icon.pink   { background: rgba(236,72,153,.25); color: #f472b6; }
.hfp-icon.gold   { background: rgba(234,179,8,.25);  color: #facc15; }
.hfp-text {
    display: flex;
    flex-direction: column;
    gap: .05rem;
}
.hfp-text strong {
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255,255,255,.95);
    line-height: 1.25;
}
.hfp-text span {
    font-size: .68rem;
    color: rgba(255,255,255,.5);
    line-height: 1.3;
}
@media (max-width: 991.98px) {
    .hero-visual { margin-top: 2rem; }
    .hero-features-panel { max-width: 600px; margin: 0 auto; }
}

/* ─── Hero Features Panel — extra colours & footer ──────────────── */
.hfp-icon.cyan  { background: rgba(6,182,212,.25);  color: #22d3ee; }
.hfp-icon.wa    { background: rgba(37,211,102,.22); color: #25d366; }
.hfp-icon.rose  { background: rgba(244,63,94,.22);  color: #fb7185; }
.hfp-icon.slate { background: rgba(148,163,184,.18);color: #cbd5e1; }
.hfp-footer {
    border-top: 1px solid rgba(255,255,255,.09);
    padding: .5rem 1rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255,255,255,.45);
    text-align: center;
}

@media (max-width: 575.98px) {
    .hfp-list { grid-template-columns: 1fr; }
    .hfp-list li:nth-child(even) { border-left: none; }
}