*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --or: #FF5A1F;
  --or-d: #D94A17;
  --or-l: #FFF4F0;
  --dark: #0A0A0A;
  --dark2: #141414;
  --dark3: #1E1E1E;
  --white: #FFFFFF;
  --gray50: #F9FAFB;
  --gray100: #F3F4F6;
  --gray200: #E5E7EB;
  --gray300: #D1D5DB;
  --gray500: #6B7280;
  --gray700: #374151;
  --gray900: #111827;
  --green: #16A34A;
  --blue: #2563EB;
  --purple: #7C3AED;
  --red: #DC2626;
  --r: 12px;
  --rs: 8px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray900); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

/* ── NAVBAR ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--or), var(--or-d));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(255,90,31,0.35);
}
.nav-logo-text { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: #fff; }
.nav-logo-text span { color: var(--or); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; font-weight: 400; cursor: pointer;
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--rs); border: none;
  cursor: pointer; font-size: 14px; font-weight: 500;
  font-family: 'Inter', sans-serif; text-decoration: none;
  transition: all 0.15s;
}
.btn-outline { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.18); }
.btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-primary { background: var(--or); color: #fff; box-shadow: 0 2px 12px rgba(255,90,31,0.35); }
.btn-primary:hover { background: var(--or-d); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,90,31,0.45); }
.btn-primary-dark { background: var(--or); color: #fff; box-shadow: 0 2px 12px rgba(255,90,31,0.25); }
.btn-primary-dark:hover { background: var(--or-d); transform: translateY(-1px); }
.btn-ghost-dark { background: transparent; color: var(--gray700); border: 1px solid var(--gray200); }
.btn-ghost-dark:hover { background: var(--gray50); border-color: var(--gray300); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--r); }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 148px 40px 100px;
  position: relative; overflow: hidden;
}
.hero-glow-1 {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,90,31,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -50px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,31,0.1); border: 1px solid rgba(255,90,31,0.25);
  border-radius: 20px; padding: 6px 16px;
  font-size: 12px; font-weight: 500; color: #FF8C55;
  margin-bottom: 24px; letter-spacing: 0.3px;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--or); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
  font-size: 62px; font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; color: #fff; margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--or) 0%, #FF8C42 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.55); max-width: 560px;
  margin: 0 auto 36px; line-height: 1.65; font-weight: 300;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 60px; }
.hero-wa {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--r);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all 0.15s; font-family: 'Inter', sans-serif;
  cursor: pointer;
}
.hero-wa:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.22); }
.hero-wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 6px #22C55E; }
/* Hero Stats Bar */
.hero-stats {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
}
.hs-item { padding: 18px 36px; text-align: center; }
.hs-item + .hs-item { border-left: 1px solid rgba(255,255,255,0.07); }
.hs-num { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700; color: #fff; }
.hs-num span { color: var(--or); }
.hs-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* ── WAVE DIVIDER ─────────────────────────────────────────────────────────── */
.wave-divider { background: var(--dark); line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ── SECTION SHARED ────────────────────────────────────────────────────────── */
.section { padding: 88px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow-or { background: var(--or-l); color: var(--or-d); }
.eyebrow-bl { background: #EFF6FF; color: var(--blue); }
.eyebrow-gr { background: #F0FDF4; color: var(--green); }
.section-title { font-size: 38px; font-weight: 700; color: var(--gray900); letter-spacing: -1px; margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--gray500); line-height: 1.6; font-weight: 300; max-width: 520px; }
.section-head { margin-bottom: 52px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ── PRODUCTS SECTION ─────────────────────────────────────────────────────── */
.products-section { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border: 1.5px solid var(--gray200);
  border-radius: 16px; padding: 28px;
  transition: all 0.2s; cursor: pointer; position: relative; overflow: hidden;
}
.product-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  box-shadow: 0 0 0 2px var(--or);
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.product-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.product-card:hover::after { opacity: 1; }
.product-card.featured { border-color: transparent; box-shadow: 0 0 0 2px var(--or), 0 16px 40px rgba(255,90,31,0.12); }
.product-card.featured::after { opacity: 1; }
.pc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.pc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.pc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600;
}
.live { background: #F0FDF4; color: var(--green); }
.live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); display: inline-block; }
.soon { background: var(--gray100); color: var(--gray500); }
.planned { background: #F5F3FF; color: var(--purple); }
.pc-name { font-size: 18px; font-weight: 700; color: var(--gray900); margin-bottom: 8px; }
.pc-desc { font-size: 13px; color: var(--gray500); line-height: 1.65; margin-bottom: 18px; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray100); }
.pc-price { font-size: 13px; font-weight: 600; color: var(--gray900); }
.pc-price span { color: var(--or); }
.pc-arrow { color: var(--or); font-size: 16px; font-weight: 700; }
.products-row2 { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.product-card.coming { opacity: 0.7; cursor: default; }
.product-card.coming:hover { transform: none; }

/* ── FEATURES SECTION ────────────────────────────────────────────────────── */
.features-section { background: var(--gray50); }
.features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.features-left { }
.features-list { display: flex; flex-direction: column; gap: 6px; margin-top: 32px; }
.feat-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: var(--r);
  cursor: pointer; transition: all 0.15s;
  border: 1.5px solid transparent;
}
.feat-item:hover { background: var(--white); border-color: var(--gray200); }
.feat-item.active { background: var(--white); border-color: var(--or); box-shadow: 0 4px 16px rgba(255,90,31,0.08); }
.feat-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--or-l);
}
.feat-item.active .feat-icon { background: var(--or); }
.feat-text { }
.feat-title { font-size: 15px; font-weight: 600; color: var(--gray900); margin-bottom: 4px; }
.feat-desc { font-size: 13px; color: var(--gray500); line-height: 1.55; }
.features-right { position: relative; }
.features-mockup {
  background: var(--dark); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.mockup-bar {
  background: rgba(255,255,255,0.04); padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mb-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-body { padding: 20px; }
/* Mini POS mockup inside features */
.mini-cat-row { display: flex; gap: 6px; margin-bottom: 14px; }
.mini-cat { padding: 5px 12px; border-radius: 20px; font-size: 10px; font-weight: 500; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.mini-cat.active { background: var(--or); color: #fff; }
.mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mini-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; overflow: hidden; }
.mini-img { height: 52px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: rgba(255,255,255,0.03); }
.mini-info { padding: 7px 8px; }
.mini-name { font-size: 9px; color: rgba(255,255,255,0.7); margin-bottom: 3px; }
.mini-price { font-size: 11px; font-weight: 700; color: var(--or); font-family: 'Sora', sans-serif; }
.mini-cart { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px; }
.mini-cart-title { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.mini-ci { display: flex; justify-content: space-between; font-size: 9px; color: rgba(255,255,255,0.5); margin-bottom: 4px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mini-total { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: #fff; margin-top: 6px; }
.mini-total span:last-child { color: var(--or); }
.mini-print-btn { width: 100%; margin-top: 8px; padding: 7px; background: var(--or); border: none; border-radius: 6px; color: #fff; font-size: 10px; font-weight: 600; cursor: pointer; }

/* ── PRICING SECTION ─────────────────────────────────────────────────────── */
.pricing-section { background: var(--white); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.toggle-label { font-size: 14px; color: var(--gray500); }
.toggle-label.active { color: var(--gray900); font-weight: 600; }
.toggle-switch {
  width: 44px; height: 24px; background: var(--or); border-radius: 12px;
  position: relative; cursor: pointer;
}
.toggle-knob { position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; }
.save-badge { background: #F0FDF4; color: var(--green); font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 20px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--gray200);
  border-radius: 20px; padding: 32px;
  position: relative; transition: all 0.2s;
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pricing-card.popular {
  border-color: var(--or);
  box-shadow: 0 8px 32px rgba(255,90,31,0.15);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--or); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 0.3px; white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 600; color: var(--gray500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.plan-price { font-size: 40px; font-weight: 800; color: var(--gray900); font-family: 'Sora', sans-serif; margin-bottom: 2px; }
.plan-price sub { font-size: 16px; font-weight: 500; vertical-align: super; }
.plan-period { font-size: 13px; color: var(--gray500); margin-bottom: 24px; }
.plan-divider { height: 1px; background: var(--gray100); margin-bottom: 20px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--gray700); padding: 7px 0;
}
.plan-features li .check { color: var(--green); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.plan-features li .cross { color: var(--gray300); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.plan-features li.disabled { color: var(--gray300); }
.plan-btn { width: 100%; padding: 13px; border-radius: var(--rs); font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.plan-btn-or { background: var(--or); color: #fff; }
.plan-btn-or:hover { background: var(--or-d); }
.plan-btn-outline { background: transparent; color: var(--gray700); border: 1.5px solid var(--gray200); }
.plan-btn-outline:hover { background: var(--gray50); border-color: var(--gray300); }

/* ── CONTACT SECTION ─────────────────────────────────────────────────────── */
.contact-section {
  background: #fff;
  padding: 80px 40px;
  position: relative; overflow: hidden;
}
.contact-glow { display: none; }
.contact-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-left { }
.contact-eyebrow { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; background: rgba(255,90,31,0.08); color: var(--or); border: 1px solid rgba(255,90,31,0.2); margin-bottom: 20px; }
.contact-left h2 { font-size: 38px; font-weight: 700; color: #111; letter-spacing: -1px; margin-bottom: 14px; line-height: 1.15; }
.contact-left p { font-size: 16px; color: #555; line-height: 1.65; margin-bottom: 32px; font-weight: 400; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: var(--r);
  background: #f9f9f9; border: 1px solid #eee;
  transition: all 0.15s; cursor: pointer; text-decoration: none;
}
.contact-method:hover { background: #f4f4f4; border-color: rgba(255,90,31,0.2); }
.cm-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cm-label { font-size: 11px; color: #888; margin-bottom: 2px; }
.cm-value { font-size: 15px; font-weight: 600; color: #111; }
.contact-right { }
.contact-form {
  background: #fff; border: 1px solid #e5e5e5;
  border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.cf-title { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 6px; }
.cf-sub { font-size: 13px; color: #888; margin-bottom: 24px; }
.cf-group { margin-bottom: 14px; }
.cf-group label { display: block; font-size: 12px; color: #444; margin-bottom: 6px; font-weight: 600; }
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%; padding: 11px 14px;
  background: #f9f9f9; border: 1px solid #e0e0e0;
  border-radius: var(--rs); color: #111; font-size: 13px; outline: none;
  transition: border 0.15s; font-family: 'Inter', sans-serif;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--or); background: #fff; }
.cf-group input::placeholder, .cf-group textarea::placeholder { color: #bbb; }
.cf-group select option { background: #fff; color: #111; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-submit {
  width: 100%; padding: 13px; margin-top: 4px;
  background: var(--or); border: none; border-radius: var(--rs);
  color: #fff; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.cf-submit:hover { background: var(--or-d); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 40px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer-logo-icon { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg,var(--or),var(--or-d)); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.footer-logo-text { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: #fff; }
.footer-logo-text span { color: var(--or); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 220px; }
.footer-col-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; cursor: pointer; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 20px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; color: #22C55E; font-weight: 500;
  text-decoration: none; cursor: pointer;
}

/* ── TOAST ────────────────────────────────────────────────────────────────── */
#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--dark3); color: #fff; padding: 12px 22px;
  border-radius: 10px; font-size: 14px; z-index: 9999;
  opacity: 0; transition: opacity 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  pointer-events: none; white-space: nowrap;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .nav-actions .social-icon-btn:nth-child(n+3) { display: none; }
  .hero { padding: 130px 24px 80px; }
  .hero h1 { font-size: 48px; letter-spacing: -1.5px; }
  .section { padding: 72px 24px; }
  .section-inner { max-width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pos-layout { grid-template-columns: 1fr; gap: 48px; }
  .pos-devices-panel { order: -1; }
  .pos-monitor { max-width: 500px; margin: 0 auto; }
  .features-layout { grid-template-columns: 1fr; }
  .features-right { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile: max 768px */
@media (max-width: 768px) {

  /* ── NAVBAR ── */
  .nav { padding: 0 16px; height: 60px; }
  .nav-logo img { height: 38px !important; }
  .nav-links { display: none; }
  .nav-actions { gap: 6px; }
  .nav-actions .social-icon-btn { display: none; }
  .nav-actions .social-wa { display: inline-flex; }

  /* ── HAMBURGER MENU ── */
  .nav-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; background: none; border: none;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: rgba(255,255,255,0.7); border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 20px 28px; z-index: 99; flex-direction: column; gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block; padding: 14px 0;
    font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.75);
    text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.15s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: #fff; }

  /* ── HERO ── */
  .hero { padding: 100px 20px 64px; }
  .hero h1 { font-size: 34px; letter-spacing: -1px; line-height: 1.1; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-eyebrow { font-size: 11px; padding: 5px 12px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 40px; }
  .hero-wa { width: 100%; max-width: 300px; justify-content: center; font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hs-item { width: 50%; padding: 16px 10px; }
  .hs-num { font-size: 28px; }
  .hs-label { font-size: 11px; }

  /* ── WAVE ── */
  .wave-divider svg { height: 36px !important; }

  /* ── SECTIONS ── */
  .section { padding: 56px 20px; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: 26px !important; }
  .section-sub { font-size: 14px; }

  /* ── PRODUCTS ── */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { padding: 20px; }
  .pc-name { font-size: 16px; }
  .pc-desc { font-size: 13px; }
  .pc-btns { flex-direction: column; gap: 8px; }
  .pc-btn { padding: 11px 8px; font-size: 13px; }

  /* ── MAJOR FEATURES (POS) ── */
  .pos-feat-section { padding: 64px 20px; }
  .pos-sec-inner { padding: 0; }
  .pos-layout { grid-template-columns: 1fr !important; gap: 36px; }
  .pos-sec-title { font-size: 26px !important; }
  .pos-sec-sub { font-size: 14px; }
  .pos-sec-head { margin-bottom: 40px; }

  /* Devices — hide printer, shrink phone */
  .pos-devices-panel { order: -1; width: 100%; }
  .pos-monitor-wrap { max-width: 100%; }
  .pos-bottom-row { gap: 12px; justify-content: center; }
  .pos-phone { width: 110px !important; }
  .pos-printer-wrap { display: none; }
  .pos-stand-neck { width: 60px; }
  .pos-stand-base { width: 100px; }

  /* Feature list — full width */
  .pos-feat-list { width: 100%; }
  .pos-feat-item { padding: 12px 14px; }
  .pos-feat-name { font-size: 13px; }
  .pos-feat-num { display: none; }
  .pos-feat-item.active .pos-feat-desc { max-height: 80px; }

  /* ── CONTACT SECTION ── */
  .contact-section { padding: 56px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-left h2 { font-size: 26px; }
  .contact-left p { font-size: 14px; }
  .contact-methods { gap: 10px; }
  .contact-method { padding: 12px 14px; }
  .cm-value { font-size: 13px; }
  .contact-form { padding: 22px 18px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-title { font-size: 16px; }

  /* ── EXPERIENCE STRIP ── */
  .exp-grid { grid-template-columns: repeat(2,1fr) !important; }
  .exp-grid > div { border-right: none !important; border-bottom: 1px solid #eee; }
  .exp-grid > div:nth-child(odd) { border-right: 1px solid #eee !important; }
  .exp-grid > div:last-child, .exp-grid > div:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* ── FOOTER OFFICE CARDS ── */
  .footer-offices { grid-template-columns: 1fr !important; }
  .footer { padding: 36px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-copy { font-size: 11px; }

  /* ── PRICING PAGES ── */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px 20px; }
  .popular-badge { font-size: 10px; padding: 4px 10px; }

  /* ── FEATURE DETAIL CARDS ── */
  .feature-detail-card { padding: 20px 18px; }
  .fdc-title { font-size: 15px; }
  .fdc-desc { font-size: 13px; }

  /* ── HERO / PAGE HEROES ON DETAIL PAGES ── */
  section[style*="padding:130px"] { padding: 100px 20px 60px !important; }
  section[style*="padding:80px 40px"] { padding: 56px 20px !important; }
  section[style*="padding:80px"] { padding: 56px 20px !important; }

  /* ── ABOUT PAGE GRIDS ── */
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 2fr"] { grid-template-columns: 1fr !important; }
  div[style*="repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  div[style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  div[style*="repeat(auto-fit,minmax(300px"] { grid-template-columns: 1fr !important; }
  div[style*="repeat(auto-fit,minmax(280px"] { grid-template-columns: 1fr !important; }
  div[style*="repeat(auto-fit,minmax(250px"] { grid-template-columns: 1fr !important; }
  div[style*="repeat(auto-fit,minmax(220px"] { grid-template-columns: 1fr !important; }
  div[style*="repeat(auto-fit,minmax(240px"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }

  /* ── MART PRICING CARD CHECKMARKS ── */
  div[style*="grid-template-columns:1fr 1fr;gap:12px"] { grid-template-columns: 1fr !important; }

  /* ── MISC ── */
  .section-eyebrow { font-size: 11px; }
  .pos-eyebrow { font-size: 10px; padding: 6px 14px; }
}

/* Small phones: max 380px */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hs-num { font-size: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .pos-phone { width: 95px !important; }
}

/* ── SOCIAL ICON BUTTONS ──────────────────────────────────────────────────── */
.social-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  font-size: 15px; text-decoration: none;
  transition: all 0.2s; border: 1px solid transparent;
}
.social-icon-btn:hover { transform: translateY(-2px); }
.social-wa  { background: rgba(34,197,94,0.12);  border-color: rgba(34,197,94,0.25);  color: #22C55E; }
.social-wa:hover  { background: rgba(34,197,94,0.22); color: #22C55E; }
.social-fb  { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.25); color: #3B82F6; }
.social-fb:hover  { background: rgba(59,130,246,0.22); color: #3B82F6; }
.social-ig  { background: rgba(236,72,153,0.12); border-color: rgba(236,72,153,0.25); color: #EC4899; }
.social-ig:hover  { background: rgba(236,72,153,0.22); color: #EC4899; }
.social-li  { background: rgba(10,102,194,0.12); border-color: rgba(10,102,194,0.25); color: #0A66C2; }
.social-li:hover  { background: rgba(10,102,194,0.22); color: #0A66C2; }
.social-yt  { background: rgba(255,0,0,0.10);    border-color: rgba(255,0,0,0.2);     color: #FF0000; }
.social-yt:hover  { background: rgba(255,0,0,0.18); color: #FF0000; }

/* ── PRODUCT CARD BUTTONS ─────────────────────────────────────────────────── */
.pc-btns {
  display: flex; gap: 8px; margin-top: 16px;
}
.pc-btn {
  flex: 1; padding: 10px 8px; border-radius: 8px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; text-decoration: none;
  text-align: center; transition: all 0.15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  border: none;
}
.pc-btn-primary {
  background: var(--or); color: #fff;
  box-shadow: 0 2px 10px rgba(255,90,31,0.3);
}
.pc-btn-primary:hover { background: var(--or-d); transform: translateY(-1px); }
.pc-btn-outline {
  background: rgba(255,90,31,0.07);
  border: 1.5px solid rgba(255,90,31,0.4);
  color: var(--or);
}
.pc-btn-outline:hover { background: rgba(255,90,31,0.14); }

/* ── FEATURE DETAIL CARDS ─────────────────────────────────────────────────── */
.feature-detail-card {
  background: #fff; border: 1px solid var(--gray200);
  border-radius: 16px; padding: 28px;
  transition: all 0.2s;
}
.feature-detail-card:hover {
  border-color: rgba(255,90,31,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.fdc-icon { font-size: 32px; margin-bottom: 14px; }
.fdc-title { font-weight: 700; font-size: 17px; color: var(--gray900); margin-bottom: 8px; }
.fdc-desc { font-size: 14px; color: var(--gray600); line-height: 1.7; }

/* ── SECTION EYEBROW FIX ──────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center;
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 14px;
}

/* ── PC-BTN ANCHOR FIX ───────────────────────────────────────────────────── */
a.pc-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  cursor: pointer;
}
a.pc-btn-primary { color: #fff !important; }
a.pc-btn-outline { color: var(--or) !important; }

/* ── NAVBAR HEIGHT FIX FOR BIGGER LOGO ───────────────────────────────────── */
.nav { height: 76px; }


/* ── POS FEATURES SECTION ──────────────────────────────────── */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --or:#FF5A1F;--or-d:#D94A17;
  --dark:#0A0A0A;--dark2:#111;--dark3:#1A1A1A;
  --white:#fff;--gray:#999;
}
body{font-family:'DM Sans',sans-serif;background:var(--dark);color:#fff;overflow-x:hidden;}

/* ─── SECTION ─────────────────────────────────────────────────────── */
.pos-feat-section{
  padding:100px 48px;
  position:relative;overflow:hidden;
  background: #0A0A0A;
}
.pos-feat-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 50%, rgba(255,90,31,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 85% 20%, rgba(37,99,235,0.03) 0%, transparent 60%);
  pointer-events:none;
}
.pos-sec-inner{max-width:1180px;margin:0 auto;position:relative;z-index:1;}

/* ─── HEADER ──────────────────────────────────────────────────────── */
.pos-sec-head{text-align:center;margin-bottom:72px;}
.pos-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,90,31,0.12);border:1px solid rgba(255,90,31,0.3);
  border-radius:100px;padding:7px 20px;
  font-size:11px;font-weight:700;color:var(--or);
  letter-spacing:1px;text-transform:uppercase;margin-bottom:20px;
}
.pos-sec-title{
  font-family:'Sora',sans-serif;
  font-size:clamp(30px,4vw,50px);font-weight:800;
  color:#fff;margin-bottom:14px;line-height:1.15;
}
.pos-sec-title em{color:var(--or);font-style:normal;}
.pos-sec-sub{font-size:16px;color:rgba(255,255,255,0.55);max-width:520px;margin:0 auto;line-height:1.7;}

/* ─── LAYOUT ──────────────────────────────────────────────────────── */
.pos-layout{display:grid;grid-template-columns:1fr 520px;gap:64px;align-items:center;}

/* ─── FEATURES LIST ───────────────────────────────────────────────── */
.pos-feat-list{display:flex;flex-direction:column;gap:6px;}
.pos-feat-item{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px 18px;border-radius:14px;cursor:pointer;
  border:1px solid transparent;
  transition:all 0.22s cubic-bezier(.4,0,.2,1);
  position:relative;
}
.pos-feat-item:hover{
  background:rgba(255,255,255,0.04);
  border-color:rgba(255,255,255,0.08);
}
.pos-feat-item.active{
  background:rgba(255,90,31,0.12);
  border-color:rgba(255,90,31,0.3);
}
.pos-feat-item.active .pos-feat-icon-wrap{
  background:var(--or);
  box-shadow:0 4px 16px rgba(255,90,31,0.4);
}
.pos-feat-icon-wrap{
  width:40px;height:40px;border-radius:11px;
  background:rgba(255,255,255,0.07);
  display:flex;align-items:center;justify-content:center;
  font-size:19px;flex-shrink:0;
  transition:all 0.22s;
}
.pos-feat-content{flex:1;}
.pos-feat-name{
  font-size:14px;font-weight:700;color:#fff;
  margin-bottom:4px;line-height:1.3;
}
.pos-feat-item:not(.active) .pos-feat-name{color:rgba(255,255,255,0.7);}
.pos-feat-desc{
  font-size:12.5px;color:rgba(255,255,255,0.5);line-height:1.6;
  max-height:0;overflow:hidden;
  transition:max-height 0.3s ease, opacity 0.25s ease;
  opacity:0;
}
.pos-feat-item.active .pos-feat-desc{max-height:60px;opacity:1;}
.pos-feat-num{
  font-size:11px;font-weight:700;color:rgba(255,255,255,0.25);
  font-family:'Sora',sans-serif;flex-shrink:0;margin-top:2px;width:18px;
}
.pos-feat-item.active .pos-feat-num{color:var(--or);}

/* ─── DEVICES PANEL ───────────────────────────────────────────────── */
.pos-devices-panel{
  position:relative;
  display:flex;flex-direction:column;align-items:center;
}

/* Monitor */
.pos-monitor-wrap{position:relative;width:100%;}
.pos-monitor{
  width:100%;
  background:#1c1c1c;
  border-radius:14px 14px 0 0;
  border:2px solid rgba(255,255,255,0.15);
  border-bottom:none;
  overflow:hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 64px rgba(0,0,0,0.7),
    0 0 80px rgba(255,90,31,0.06);
}
.pos-monitor-bar{
  height:30px;
  background:linear-gradient(180deg,#2a2a2a,#222);
  border-bottom:1px solid rgba(255,255,255,0.07);
  display:flex;align-items:center;padding:0 12px;gap:6px;
}
.pos-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0;}
.pos-url-bar{
  flex:1;margin:0 10px;height:16px;
  background:rgba(255,255,255,0.06);border-radius:4px;
  display:flex;align-items:center;padding:0 8px;
  font-size:8px;color:rgba(255,255,255,0.25);font-family:monospace;
}
.pos-monitor-screen{width:100%;display:block;overflow:hidden;}
.pos-monitor-screen img{width:100%;display:block;border:none;}

/* Monitor stand */
.pos-stand-neck{
  width:80px;height:14px;
  background:linear-gradient(180deg,#222,#1a1a1a);
  border:2px solid rgba(255,255,255,0.08);border-top:none;
  margin:0 auto;border-radius:0 0 4px 4px;
}
.pos-stand-base{
  width:140px;height:7px;
  background:linear-gradient(180deg,#1e1e1e,#181818);
  border-radius:0 0 6px 6px;
  border:1px solid rgba(255,255,255,0.06);border-top:none;
  margin:0 auto;
  box-shadow:0 6px 16px rgba(0,0,0,0.5);
}

/* Bottom row — phone + printer */
.pos-bottom-row{
  display:flex;align-items:flex-end;gap:20px;
  margin-top:24px;justify-content:center;width:100%;
}

/* Phone */
.pos-phone{
  width:130px;flex-shrink:0;
  background:#151515;
  border-radius:26px;
  border:2px solid rgba(255,255,255,0.18);
  overflow:hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 48px rgba(0,0,0,0.8),
    0 0 30px rgba(255,90,31,0.08);
  position:relative;
}
.pos-phone-notch{
  height:20px;background:#0d0d0d;
  display:flex;align-items:center;justify-content:center;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.pos-notch-pill{width:44px;height:8px;background:#1f1f1f;border-radius:8px;border:1px solid rgba(255,255,255,0.08);}
.pos-phone-screen img{width:100%;display:block;}
.pos-phone-bar{
  height:14px;background:#0d0d0d;
  display:flex;align-items:center;justify-content:center;
}
.pos-home-pill{width:36px;height:3px;background:rgba(255,255,255,0.18);border-radius:3px;}

/* Printer */
.pos-printer-wrap{position:relative;flex-shrink:0;}
.pos-printer{
  width:100px;
  background:linear-gradient(160deg,#2d2d2d 0%,#1e1e1e 100%);
  border-radius:10px 10px 7px 7px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 16px 32px rgba(0,0,0,0.6),inset 0 1px 0 rgba(255,255,255,0.07);
}
.pos-printer-head{
  padding:10px 12px 6px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  text-align:center;
}
.pos-printer-brand{font-size:7px;color:rgba(255,255,255,0.25);font-weight:800;letter-spacing:1.5px;margin-bottom:5px;}
.pos-p-light{
  width:7px;height:7px;border-radius:50%;background:#22C55E;
  margin:0 auto;box-shadow:0 0 8px #22C55E;
  animation:blink 2s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.25}}
.pos-printer-slot{
  height:5px;background:#080808;
  margin:6px 10px;border-radius:2px;
  box-shadow:inset 0 2px 4px rgba(0,0,0,0.9);
}
.pos-printer-foot{padding:6px 12px 10px;text-align:center;}
.pos-p-btn{
  width:32px;height:9px;
  background:linear-gradient(180deg,rgba(255,90,31,0.7),rgba(217,74,23,0.7));
  border-radius:3px;margin:0 auto;
  box-shadow:0 2px 6px rgba(255,90,31,0.3);
}

/* Receipt */
.pos-receipt{
  position:absolute;top:-118px;left:50%;
  transform:translateX(-50%);
  width:76px;
  background:#fafafa;
  border-radius:2px 2px 0 0;
  padding:7px 6px;
  box-shadow:0 -6px 20px rgba(0,0,0,0.5),2px 0 6px rgba(0,0,0,0.15),-2px 0 6px rgba(0,0,0,0.1);
  animation:receiptPop 0.8s cubic-bezier(.22,.68,0,1.2) 0.4s both;
}
@keyframes receiptPop{
  from{top:-40px;opacity:0}
  to{top:-118px;opacity:1}
}
.pos-r-logo{font-size:6.5px;font-weight:800;color:#FF5A1F;text-align:center;font-family:'Sora',sans-serif;border-bottom:1px dashed #ddd;padding-bottom:4px;margin-bottom:4px;}
.pos-r-sub{font-size:5px;color:#888;text-align:center;margin-bottom:3px;}
.pos-r-row{display:flex;justify-content:space-between;font-size:5px;color:#444;margin-bottom:1.5px;}
.pos-r-hr{border:none;border-top:1px dashed #ccc;margin:4px 0;}
.pos-r-total{display:flex;justify-content:space-between;font-size:6.5px;font-weight:800;color:#111;}
.pos-r-pay{font-size:5px;color:#888;text-align:right;margin-top:2px;}
.pos-r-barcode{
  height:12px;width:62px;margin:4px auto 2px;
  background:repeating-linear-gradient(90deg,#000 0,#000 1.2px,#fff 1.2px,#fff 2.5px,#000 2.5px,#000 3.5px,#fff 3.5px,#fff 5px,#000 5px,#000 6px,#fff 6px,#fff 8px,#000 8px,#000 9px,#fff 9px,#fff 10.5px,#000 10.5px,#000 11.5px,#fff 11.5px,#fff 13px);
}
.pos-r-foot{font-size:4.5px;color:#aaa;text-align:center;border-top:1px dashed #ddd;padding-top:3px;margin-top:4px;}

/* Labels */
.pos-device-label{
  font-size:11px;color:rgba(255,255,255,0.35);font-weight:600;
  text-align:center;margin-top:8px;letter-spacing:0.5px;
}

/* Connecting glow */
.pos-panel-glow{
  position:absolute;bottom:-30px;left:50%;transform:translateX(-50%);
  width:300px;height:60px;
  background:radial-gradient(ellipse,rgba(255,90,31,0.15) 0%,transparent 70%);
  pointer-events:none;
}

/* ── HAMBURGER — hidden on desktop ──────────────────────────────────────── */
.nav-hamburger { display: none; }
