
  /* ==============================================
     CSS CUSTOM PROPERTIES — single source of truth
  =============================================== */
  :root {
    --navy:        #0A0C1E;   /* hero & footer bg */
    --navy-2:      #10122A;   /* CTA section bg */
    --navy-3:      #171B3A;   /* dark cards */
    --brand:       #6366F1;   /* primary CTA / accent */
    --brand-l:     #818CF8;   /* hover amber */
    --white:       #FFFFFF;
    --offwhite:    #F8FAFC;   /* section alternation */
    --lightgray:   #F1F5F9;
    --textdark:    #0F172A;
    --textmid:     #334155;
    --textmute:    #64748B;
    --border:      #E2E8F0;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 32px rgba(11,17,32,0.10);
    --shadow-lg:   0 16px 64px rgba(11,17,32,0.18);
    --ff-head:     'Bricolage Grotesque', sans-serif;
    --ff-body:     'DM Sans', sans-serif;
    --transition:  0.25s ease;
  }

  /* ==============================================
     RESET & BASE
  =============================================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--ff-body);
    color: var(--textdark);
    background: var(--white);
    overflow-x: hidden;
  }
  h1, h2, h3, h4, h5, h6 { font-family: var(--ff-head); line-height: 1.15; }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; padding: 0; margin: 0; }

  /* ==============================================
     UTILITY CLASSES
  =============================================== */
  .text-amber   { color: var(--brand); }
  .bg-navy      { background: var(--navy); }
  .bg-navy-2    { background: var(--navy-2); }
  .bg-offwhite  { background: var(--offwhite); }
  .section-pad  { padding: 80px 0; }
  .section-pad-sm { padding: 60px 0; }

  .label-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(99,102,241,0.10);
    border: 1px solid rgba(99,102,241,0.25);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
  }
  .section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--textdark);
    margin-bottom: 12px;
  }
  .section-title.white { color: var(--white); }
  .section-sub {
    font-size: 1.05rem;
    color: var(--textmute);
    font-weight: 300;
    line-height: 1.75;
    max-width: 520px;
  }
  .section-sub.white { color: rgba(255,255,255,0.65); }

  /* Buttons */
  .btn-amber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: var(--navy);
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
  }
  .btn-amber:hover {
    background: var(--brand-l);
    color: var(--navy);
    transform: translateY(-2px);
  }
  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition);
  }
  .btn-outline-white:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    color: var(--white);
  }
  .btn-outline-amber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--brand);
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--brand);
    cursor: pointer;
    transition: var(--transition);
  }
  .btn-outline-amber:hover {
    background: var(--brand);
    color: var(--navy);
  }

  /* ==============================================
     NAVBAR — mirrors Sassico fixed top + scroll effect
  =============================================== */
  #mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
    background: transparent;
  }
  /* .scrolled class added by JS when user scrolls */
  #mainNav.scrolled {
    background: rgba(11,17,32,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    padding: 0.75rem 0;
  }
  .nav-logo {
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
  }
  .nav-logo span { color: var(--brand); }

  /* Navigation links */
  .navbar-nav .nav-link {
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 0.4rem 0.9rem !important;
    transition: color 0.2s;
  }
  .navbar-nav .nav-link:hover { color: var(--white); }

  /* Hamburger toggler */
  .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 10px;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  /* Mobile nav collapse bg */
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: var(--navy);
    padding: 1rem;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: 8px;
  }

  /* ==============================================
     HERO SECTION — dark bg, left text, right device mockup
  =============================================== */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
  }
  /* Subtle dot grid background texture */
  #hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
  }
  /* Amber radial glow top-center */
  #hero::after {
    content: '';
    position: absolute;
    top: -10%; left: 50%; transform: translateX(-50%);
    width: 80vw; height: 60vh;
    background: radial-gradient(ellipse, rgba(99,102,241,0.09) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(99,102,241,0.3);
    background: rgba(99,102,241,0.08);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--brand);
    border-radius: 50%;
  }
  .hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero-title em { color: var(--brand); font-style: normal; }
  .hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .trust-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
  }
  .trust-chip::before {
    content: '';
    width: 5px; height: 5px;
    background: #10B981;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ==============================================
     DEVICE MOCKUP — CSS laptop + phone
     This represents the Smooth dashboard UI
  =============================================== */
  .device-wrap {
    position: relative;
    /* Parallax target — JS moves child elements on mousemove */
  }
  /* Laptop outer frame */
  .laptop {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .laptop-screen {
    background: #1e2533;
    border-radius: 14px 14px 0 0;
    border: 3px solid #2d3748;
    padding: 0;
    aspect-ratio: 16/10;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
  }
  .laptop-base {
    background: linear-gradient(to bottom, #2d3748, #1a2035);
    height: 18px;
    border-radius: 0 0 8px 8px;
    border: 3px solid #2d3748;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .laptop-base::after {
    content: '';
    width: 60px; height: 4px;
    background: #374151;
    border-radius: 2px;
  }

  /* Inside the laptop — mini Smooth dashboard */
  .dash {
    display: flex;
    height: 100%;
    font-family: var(--ff-body);
  }
  .dash-sidebar {
    width: 52px;
    background: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0 8px;
    gap: 16px;
    flex-shrink: 0;
  }
  .dash-sidebar .s-logo {
    width: 24px; height: 24px;
    background: var(--brand);
    border-radius: 6px;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 10px;
    color: #000;
    display: flex; align-items: center; justify-content: center;
  }
  .dash-sidebar .s-icon {
    width: 28px; height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
  }
  .dash-sidebar .s-icon.active { background: rgba(99,102,241,0.2); }
  .dash-main {
    flex: 1;
    background: #0f1623;
    padding: 10px;
    overflow: hidden;
  }
  .dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .dash-topbar span {
    font-size: 8px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-family: var(--ff-head);
  }
  .dash-topbar-right {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .dash-pill {
    background: rgba(99,102,241,0.15);
    color: var(--brand);
    font-size: 6px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
  }
  /* Stat cards row */
  .stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 10px;
  }
  .stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 7px 8px;
  }
  .stat-card .sc-label {
    font-size: 6px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
  }
  .stat-card .sc-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--ff-head);
  }
  .stat-card .sc-val.green { color: #34D399; }
  .stat-card .sc-val.amber { color: var(--brand); }
  .stat-card .sc-change {
    font-size: 5.5px;
    color: #34D399;
    margin-top: 2px;
  }
  /* Charts row */
  .charts-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
  }
  .chart-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 7px;
  }
  .chart-box .chart-title {
    font-size: 6px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
  }
  /* Mini bar chart using divs */
  .mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
  }
  .mini-bar {
    flex: 1;
    background: rgba(99,102,241,0.3);
    border-radius: 2px 2px 0 0;
    transition: background 0.3s;
  }
  .mini-bar.active { background: var(--brand); }
  /* Mini donut chart */
  .donut-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .donut {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: conic-gradient(
      #34D399 0% 45%,
      var(--brand) 45% 70%,
      #60A5FA 70% 85%,
      rgba(255,255,255,0.1) 85% 100%
    );
    flex-shrink: 0;
    position: relative;
  }
  .donut::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: #0f1623;
    border-radius: 50%;
  }
  .donut-legend { font-size: 5.5px; color: rgba(255,255,255,0.5); }
  .donut-legend li {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 2px;
  }
  .donut-legend li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--brand);
  }
  .donut-legend li:first-child::before { background: #34D399; }
  .donut-legend li:nth-child(3)::before { background: #60A5FA; }
  /* Recent orders mini-table */
  .mini-table { font-size: 6px; }
  .mini-table .mt-head {
    display: grid;
    grid-template-columns: 2fr 1fr 0.8fr;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mini-table .mt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 0.8fr;
    color: rgba(255,255,255,0.65);
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: center;
  }
  .mt-badge {
    font-size: 5px;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 600;
  }
  .mt-badge.sold  { background: rgba(52,211,153,0.15); color: #34D399; }
  .mt-badge.pending { background: rgba(99,102,241,0.15); color: var(--brand); }

  /* Floating phone mockup */
  .phone-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 110px;
    background: #1e2533;
    border-radius: 14px;
    border: 2.5px solid #2d3748;
    padding: 8px 6px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    /* Parallax target — slightly different speed */
  }
  .phone-notch {
    width: 30px; height: 4px;
    background: #374151;
    border-radius: 2px;
    margin: 0 auto 8px;
  }
  .phone-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 5px;
  }
  .phone-card .pc-label { font-size: 5.5px; color: rgba(255,255,255,0.4); }
  .phone-card .pc-val {
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--ff-head);
    margin: 2px 0;
  }
  .phone-card .pc-sub { font-size: 5px; color: #34D399; }

  /* Floating approval badge */
  .approval-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
  }
  .badge-icon {
    width: 30px; height: 30px;
    background: rgba(99,102,241,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .badge-text .bt-title {
    font-size: 9px;
    font-weight: 700;
    font-family: var(--ff-head);
    color: var(--textdark);
  }
  .badge-text .bt-sub {
    font-size: 7.5px;
    color: var(--textmute);
  }

  /* ==============================================
     CLIENT LOGO STRIP — Swiper carousel
  =============================================== */
  #clients {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--offwhite);
  }
  .clients-label {
    font-size: 0.78rem;
    color: var(--textmute);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
  }
  .client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
  }
  .client-logo-item:hover { border-color: var(--brand); }
  .client-logo-item .cl-icon { font-size: 1.8rem; }
  .client-logo-item .cl-name { font-size: 0.75rem; font-weight: 600; color: var(--textmid); }
  .client-logo-item .cl-type { font-size: 0.68rem; color: var(--textmute); }

  /* ==============================================
     FEATURE SECTIONS — mirrors Sassico alternating layout
  =============================================== */
  /* Feature card with arrow bullets */
  .feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--textmid);
    margin-bottom: 10px;
    line-height: 1.55;
  }
  .feature-bullets li .fb-arrow {
    color: var(--brand);
    font-style: normal;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Visual mock panels for feature sections */
  .feature-visual {
    position: relative;
    padding: 20px;
  }
  .feature-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .feature-panel-head {
    background: var(--offwhite);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .panel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }
  .panel-dot.red   { background: #FC8181; }
  .panel-dot.amber { background: #F6C90E; }
  .panel-dot.green { background: #68D391; }
  .panel-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--textmid);
    margin-left: 8px;
    font-family: var(--ff-head);
  }
  .feature-panel-body { padding: 16px; }

  /* Approval workflow visualiser */
  .workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .wf-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    transition: var(--transition);
  }
  .wf-step.done   { background: rgba(52,211,153,0.05); border-color: rgba(52,211,153,0.3); }
  .wf-step.active { background: rgba(99,102,241,0.05); border-color: rgba(99,102,241,0.3); }
  .wf-step.wait   { opacity: 0.5; }
  .wf-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .wf-icon.done   { background: rgba(52,211,153,0.12); }
  .wf-icon.active { background: rgba(99,102,241,0.12); }
  .wf-icon.wait   { background: var(--offwhite); }
  .wf-label { font-weight: 600; color: var(--textdark); font-family: var(--ff-head); }
  .wf-meta  { font-size: 0.72rem; color: var(--textmute); }
  .wf-badge {
    margin-left: auto;
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
  }
  .wf-badge.done   { background: rgba(52,211,153,0.12); color: #059669; }
  .wf-badge.active { background: rgba(99,102,241,0.12); color: #B45309; }
  .wf-badge.wait   { background: var(--lightgray); color: var(--textmute); }
  /* Connector line */
  .wf-line {
    width: 2px; height: 10px;
    background: var(--border);
    margin-left: 27px;
    border-radius: 1px;
  }

  /* Inventory panel */
  .inv-table { width: 100%; }
  .inv-table th {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--textmute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 8px;
    border-bottom: 1px solid var(--border);
  }
  .inv-table td {
    font-size: 0.8rem;
    padding: 8px 8px;
    border-bottom: 1px solid var(--border);
    color: var(--textmid);
    vertical-align: middle;
  }
  .inv-table tr:last-child td { border-bottom: none; }
  .stock-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
  }
  .stock-badge.ok  { background: rgba(52,211,153,0.1); color: #059669; }
  .stock-badge.low { background: rgba(99,102,241,0.1); color: #B45309; }
  .stock-badge.out { background: rgba(239,68,68,0.1);  color: #DC2626; }

  /* Reports panel */
  .report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .report-item {
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 10px;
    text-align: center;
    transition: var(--transition);
  }
  .report-item:hover {
    border-color: var(--brand);
    background: rgba(99,102,241,0.04);
  }
  .report-item .ri-icon { font-size: 1.3rem; margin-bottom: 4px; }
  .report-item .ri-name { font-size: 0.7rem; font-weight: 600; color: var(--textmid); }

  /* Floating stat badge on feature sections */
  .float-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    white-space: nowrap;
  }
  .float-badge .fb-val {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--textdark);
  }
  .float-badge .fb-lbl { font-size: 0.7rem; color: var(--textmute); }
  .float-badge .fb-icon { font-size: 1.4rem; }

  /* ==============================================
     BENEFITS SECTION — 3-column cards with hover
  =============================================== */
  .benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
  .benefit-card:hover::before { transform: scaleX(1); }
  .benefit-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    background: rgba(99,102,241,0.10);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--textdark);
  }
  .benefit-card p { font-size: 0.88rem; color: var(--textmute); line-height: 1.65; }

  /* ==============================================
     FEATURE TABS — mirrors Sassico vertical tabs
  =============================================== */
  #feature-tabs { background: var(--offwhite); }
  .tab-nav-smooth {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .tab-nav-smooth .tns-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
  }
  .tab-nav-smooth .tns-item:hover { border-color: var(--brand); }
  .tab-nav-smooth .tns-item.active {
    border-color: var(--brand);
    background: rgba(99,102,241,0.04);
  }
  .tns-sub { font-size: 0.7rem; color: var(--brand); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
  .tns-title { font-size: 1rem; font-weight: 700; color: var(--textdark); font-family: var(--ff-head); margin-top: 2px; }
  .tab-content-smooth .tc-pane { display: none; }
  .tab-content-smooth .tc-pane.active { display: block; }
  .tab-screenshot {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .tab-screen-head {
    background: var(--offwhite);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .tab-screen-body { padding: 20px; }

  /* Jewelry inventory panel */
  .jewelry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
  }
  .jewelry-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
  }
  .ji-code { font-size: 0.65rem; color: var(--textmute); font-family: monospace; }
  .ji-name { font-size: 0.85rem; font-weight: 600; color: var(--textdark); font-family: var(--ff-head); margin: 4px 0; }
  .ji-attrs { display: flex; gap: 6px; flex-wrap: wrap; }
  .ji-attr {
    font-size: 0.65rem;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 7px;
    color: var(--textmid);
  }
  .ji-price { font-size: 0.8rem; font-weight: 700; color: var(--textdark); margin-top: 6px; font-family: var(--ff-head); }

  /* ==============================================
     TESTIMONIALS — Swiper slider
  =============================================== */
  #testimonials { background: var(--navy-2); }
  .testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
  }
  .testi-stars { color: var(--brand); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
  .testi-quote {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
  }
  .testi-quote::before {
    content: '"';
    font-family: var(--ff-head);
    font-size: 3rem;
    color: rgba(99,102,241,0.3);
    line-height: 0.5;
    display: block;
    margin-bottom: 12px;
  }
  .testi-author strong { color: var(--white); font-size: 0.9rem; }
  .testi-author span { color: rgba(255,255,255,0.45); font-size: 0.8rem; display: block; margin-top: 2px; }
  .swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
  .swiper-pagination-bullet-active { background: var(--brand); }

  /* ==============================================
     STATS COUNTER SECTION
  =============================================== */
  #stats { background: var(--offwhite); }
  .stat-item { text-align: center; padding: 1.5rem; }
  .stat-number {
    font-family: var(--ff-head);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-number sup { font-size: 1.5rem; }
  .stat-label {
    font-size: 0.9rem;
    color: var(--textmute);
    font-weight: 400;
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.4;
  }
  .stat-divider {
    width: 1px;
    background: var(--border);
    height: 80px;
    margin: auto;
  }

  /* ==============================================
     CTA SECTION
  =============================================== */
  #cta {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-inner {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  .cta-steps {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 28px 0;
  }
  .cta-step {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
  }
  .cta-step .cs-num {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(99,102,241,0.2);
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--ff-head);
  }

  /* ==============================================
     FOOTER
  =============================================== */
  #footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 32px;
  }
  .footer-logo {
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
  }
  .footer-logo span { color: var(--brand); }
  .footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 20px;
  }
  .footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }
  .social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
  }
  .social-btn:hover {
    background: rgba(99,102,241,0.15);
    border-color: rgba(99,102,241,0.3);
    color: var(--brand);
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

  /* ==============================================
     WHATSAPP STICKY BUTTON
  =============================================== */
  .wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s;
    text-decoration: none;
  }
  .wa-float:hover { transform: scale(1.12); color: white; }

  /* Style for Lucide icons */
i[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
  vertical-align: middle;
}

/* Adjustments for specific sections */
.ri-icon i[data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--brand); /* Or your primary theme color */
}

.wf-icon i[data-lucide] {
  width: 18px;
  height: 18px;
}

.cl-icon i {
  width: 32px;
  height: 32px;
  color: #64748b; /* Professional slate gray */
  stroke-width: 1.5px;
  transition: color 0.3s ease;
}

.client-logo-item:hover .cl-icon i {
  color: #3b82f6; /* Changes to brand blue on hover */
}

/* All Lucide icons now use the brand color */
i[data-lucide] {
  color: #6366F1 !important;
}

/* Icons in dark-background sections stay white for contrast */
#hero i[data-lucide],
#footer i[data-lucide],
section.bg-dark i[data-lucide] {
  color: #ffffff !important;
}
.benefit-icon i {
  width: 40px;
  height: 40px;
  stroke-width: 1.5px;
  margin-bottom: 15px;
  /* They will automatically inherit the brand color from our previous rule */
}
  /* ==============================================
     RESPONSIVE
  =============================================== */
  @@media (max-width: 991px) {
    .approval-badge, .phone-float { display: none; }
    .device-wrap { margin-top: 40px; }
    .tab-nav-smooth { flex-direction: row; flex-wrap: wrap; }
    .stat-divider { display: none; }
  }
  @@media (max-width: 767px) {
    .section-pad { padding: 56px 0; }
    .hero-title { font-size: 2.4rem; }
    .report-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-steps { flex-direction: column; align-items: center; }
  }

  /* ==============================================
     ANIMATIONS
  =============================================== */
  @@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }
  .float-anim { animation: float 4s ease-in-out infinite; }

  @@keyframes pulse-amber {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.3); }
    50%       { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
  }
  .pulse { animation: pulse-amber 2.5s ease infinite; }

  /* Respect reduced-motion preference */
  @@media (prefers-reduced-motion: reduce) {
    .float-anim, .pulse { animation: none; }
    [data-aos] { transition: none !important; }
  }
  
  /* ─ Brand button override: white text on indigo ─ */
  .btn-amber { color: #ffffff !important; }
  .btn-amber:hover { color: #ffffff !important; background: var(--brand-l) !important; }
  /* ─ Indigo glow on pulse ─ */
  @@keyframes pulse-amber {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(99,102,241,0); }
  }
  /* ─ Nav logo fix ─ */
  .nav-logo img { filter: brightness(1); }
  /* ─ Hero subtle purple radial glow ─ */
  #hero::after {
    background: radial-gradient(ellipse, rgba(99,102,241,0.14) 0%, transparent 70%) !important;
  }
  /* ─ Feature panel hover border becomes indigo ─ */
  .feature-card:hover { border-color: rgba(99,102,241,0.35); }
  /* ─ Benefit card top border ─ */
  .benefit-card::before { background: linear-gradient(90deg,#6366F1,#818CF8); }
  /* ─ Stat number stays brand accent ─ */
  .stat-number { color: #6366F1; }
  /* ─ Testi stars ─ */
  .testi-stars { color: #818CF8; }
  /* ─ Swiper pagination ─ */
  .swiper-pagination-bullet-active { background: #6366F1 !important; }
  /* ─ Hero dot grid purple tint ─ */
  #hero::before {
    background-image: radial-gradient(rgba(99,102,241,0.06) 1px, transparent 1px) !important;
  }
  /* ─ Jewelry item attr chips ─ */
  .ji-attr { border-color: rgba(99,102,241,0.2); color: #818CF8; }
  /* ─ Label tags ─ */
  .label-tag { color: #818CF8; background: rgba(99,102,241,0.10); border-color: rgba(99,102,241,0.25); }
  .hero-eyebrow { background: rgba(99,102,241,0.10); border-color: rgba(99,102,241,0.3); color: #818CF8; }
  .hero-eyebrow::before { background: #818CF8; }
  /* ─ Trust chip dot ─ */
  .trust-chip::before { background: #6366F1; }
  /* ─ Section title accent em ─ */
  .hero-title em { color: #818CF8; }
  /* ─ Float badge icon tint ─ */
  .badge-icon { background: rgba(99,102,241,0.12); }
  /* ─ Social button hover ─ */
  .social-btn:hover { background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.3); color: #818CF8; }
  /* ─ WA float stays green ─ */
  .wa-float { background: #25D366 !important; }

