/* ══════════════════════════════════════════════
   NamyTech Website — Main Stylesheet
   ══════════════════════════════════════════════ */

/* ─── RESET & ROOT ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cyan:        #58d9ef;
  --cyan-glow:   rgba(88, 217, 239, 0.16);
  --cyan-dim:    rgba(88, 217, 239, 0.08);
  --cyan-mid:    rgba(88, 217, 239, 0.22);
  --deep-blue:   #0b7ea3;
  --bg:          #080d12;
  --bg2:         #0f1720;
  --bg3:         #141f2a;
  --surface:     rgba(17, 27, 37, 0.92);
  --surface-soft: rgba(20, 31, 42, 0.72);
  --border:      rgba(139, 188, 207, 0.18);
  --border-dim:  rgba(139, 188, 207, 0.10);
  --text:        #eef5f8;
  --text-muted:  #a8b8c6;
  --white:       #ffffff;
  --card-bg:     rgba(17, 27, 37, 0.9);
  --purple:      #a897ff;
  --green:       #5ad28b;
  --shadow-sm:   0 10px 26px rgba(0, 0, 0, 0.18);
  --shadow-lg:   0 18px 48px rgba(0, 0, 0, 0.24);
  --shadow:      0 10px 26px rgba(0, 0, 0, 0.18);
  --radius:      8px;
  --radius-sm:   6px;
  --font-h:      'Syne', sans-serif;
  --font-b:      'DM Sans', sans-serif;
  --font-ar:     'Noto Sans Arabic', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background:
    linear-gradient(180deg, rgba(88, 217, 239, 0.045) 0%, transparent 360px),
    linear-gradient(135deg, rgba(90, 210, 139, 0.025) 0%, transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15.5px;
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

/* Grid background */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 188, 207, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 188, 207, 0.018) 1px, transparent 1px);
  background-size: 88px 88px, 88px 88px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.56;
}

/* ─── ARABIC / RTL ─── */
body.ar,
html[dir="rtl"] body {
  font-family: var(--font-ar);
  direction: rtl;
}
body.ar h1,
body.ar h2,
body.ar h3,
body.ar h4,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  font-family: var(--font-ar);
  letter-spacing: 0;
}
body.ar .section-label,
html[dir="rtl"] .section-label { letter-spacing: 0; }
body.ar .pricing-name,
html[dir="rtl"] .pricing-name { letter-spacing: 0; }
body.ar .form-group label,
html[dir="rtl"] .form-group label { letter-spacing: 0; }

/* ─── BILINGUAL VISIBILITY ─── */
.ar-text { display: none; }
.en-text { display: block; }
body.ar .ar-text,
html[dir="rtl"] .ar-text { display: block; }
body.ar .en-text,
html[dir="rtl"] .en-text { display: none; }

/* inline spans that should use inline display */
span.ar-text { display: none; }
span.en-text { display: inline; }
body.ar span.ar-text,
html[dir="rtl"] span.ar-text { display: inline; }
body.ar span.en-text,
html[dir="rtl"] span.en-text { display: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(88, 217, 239, 0.07);
}

.section-label.en-text {
  display: inline-flex;
}

.section-label.ar-text {
  display: none;
}

body.ar .section-label.en-text,
html[dir="rtl"] .section-label.en-text {
  display: none;
}

body.ar .section-label.ar-text,
html[dir="rtl"] .section-label.ar-text {
  display: inline-flex;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.2vw, 4.5rem);
}

section {
  position: relative;
  z-index: 1;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  white-space: nowrap;
  letter-spacing: 0;
  min-height: 44px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #72e3f0, #4fd0e8);
  color: var(--bg);
  box-shadow: 0 10px 24px rgba(88, 217, 239, 0.14);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #86eaf4, #58d9ef);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(88, 217, 239, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(88, 217, 239, 0.42);
  color: var(--cyan);
  background: rgba(88, 217, 239, 0.06);
  transform: translateY(-1px);
}

.btn:focus-visible,
.lang-btn:focus-visible,
.hamburger:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.7);
  outline-offset: 3px;
}


/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 13, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
  transition: background 0.3s, border-color 0.3s;
}

nav.scrolled {
  background: rgba(8, 13, 18, 0.98);
  border-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #72e3f0, #55d4ea);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(88, 217, 239, 0.12);
}

.logo-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--white);
}
.logo-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a.active {
  color: var(--cyan);
}
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language toggle pill */
.lang-toggle {
  background: rgba(17, 27, 37, 0.72);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px;
  display: flex;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0;
}
.lang-btn.active {
  background: linear-gradient(135deg, #72e3f0, #55d4ea);
  color: var(--bg);
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger → X animation */
.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: rgba(8, 13, 18, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid var(--border);
}

.nav-open .mobile-menu {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--cyan); }

.mobile-lang-toggle {
  background: rgba(17, 28, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px;
  display: flex;
  gap: 4px;
}


/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 132px 4vw auto auto;
  width: min(35vw, 540px);
  height: min(39vw, 520px);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 30%),
    linear-gradient(90deg, rgba(139, 188, 207, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(139, 188, 207, 0.052) 0 1px, transparent 1px 100%),
    rgba(17, 27, 37, 0.28);
  background-size: auto, 64px 64px, 64px 64px, auto;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.04);
  transform: perspective(900px) rotateY(-12deg) rotateX(6deg);
  opacity: 0.34;
  pointer-events: none;
}

.hero-glow {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 80px 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.hero-content,
.hero-device-showcase,
.hero-device-frame {
  min-width: 0;
}

.hero-device-showcase {
  position: relative;
  margin: 0;
  align-self: center;
}

.hero-device-showcase::before {
  display: none;
}

.hero-device-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    rgba(17, 27, 37, 0.82);
  box-shadow: var(--shadow-lg);
}

.hero-device-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 18, 0.2), transparent 28%, rgba(6, 12, 18, 0.16)),
    linear-gradient(180deg, transparent 62%, rgba(6, 12, 18, 0.08));
  pointer-events: none;
}

.hero-device-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-device-showcase figcaption {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13.5px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88, 217, 239, 0.07);
  border: 1px solid rgba(88, 217, 239, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(32px, 2.8vw, 44px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: normal;
}
.hero-title .accent {
  color: var(--cyan);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 17px);
  color: #b7c6d3;
  max-width: 720px;
  margin-bottom: 38px;
  font-weight: 400;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-actions .btn {
  font-size: 14px;
  min-height: 46px;
  padding-inline: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 14px;
  max-width: 860px;
  padding-top: 0;
  border-top: none;
}

.stat-item {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  background: rgba(17, 27, 37, 0.78);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.stat-num {
  font-family: var(--font-h);
  display: block;
  max-width: 100%;
  font-size: clamp(22px, 1.65vw, 26px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  white-space: nowrap;
}
.stat-num span { color: var(--cyan); }

.hero-stats .stat-label,
.hero-stats span.stat-label.en-text {
  display: block;
  font-size: 12.25px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.35;
  max-width: 100%;
}

body.ar .hero-stats span.stat-label.ar-text,
html[dir="rtl"] .hero-stats span.stat-label.ar-text {
  display: block;
}

body.ar .hero-stats span.stat-label.en-text,
html[dir="rtl"] .hero-stats span.stat-label.en-text,
.hero-stats span.stat-label.ar-text {
  display: none;
}


/* ══════════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  color: #9db4c9;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}


/* ══════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════ */
.audience-section {
  padding: 112px 0 96px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 212, 255, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(12, 21, 32, 0.35), rgba(6, 12, 18, 0));
  border-top: 1px solid rgba(0, 212, 255, 0.06);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 3vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%),
    rgba(12, 21, 32, 0.84);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.audience-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(0, 120, 168, 0.2));
}

.audience-card::after {
  content: '';
  position: absolute;
  inset: auto -18% -36% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.13), transparent 62%);
  pointer-events: none;
}

.audience-erp::before {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.9), var(--cyan));
}

.audience-erp::after {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.13), transparent 62%);
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.36);
  box-shadow: var(--shadow-lg), 0 0 42px rgba(0, 212, 255, 0.08);
}

.audience-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.07);
  color: var(--cyan);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.12;
}

.audience-card p {
  max-width: 560px;
  margin-bottom: 28px;
  color: #9db4c9;
  font-size: 15px;
  line-height: 1.75;
}

.audience-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c7d8e7;
  font-size: 14px;
}

.audience-card li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.34);
}

body.ar .audience-card li::before {
  margin-left: 0;
  margin-right: 0;
}

.audience-card .btn {
  width: fit-content;
  margin-top: auto;
}

#rollout-model {
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgba(17, 28, 42, 0.88), rgba(6, 12, 18, 0.92)),
    var(--bg2);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.rollout-header p {
  max-width: 820px;
}

.rollout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.rollout-panel,
.rollout-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), transparent 38%),
    rgba(12, 21, 32, 0.86);
  box-shadow: var(--shadow-sm);
}

.rollout-panel {
  padding: clamp(32px, 3vw, 46px);
}

.rollout-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #25d366, rgba(139, 92, 246, 0.78));
}

.rollout-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  color: #7ff1ad;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rollout-panel h3 {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.12;
}

.rollout-panel > p {
  max-width: 620px;
  color: #9db4c9;
  font-size: 15px;
  line-height: 1.78;
  font-weight: 300;
}

.rollout-steps {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.rollout-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.032);
}

.rollout-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.075);
  color: var(--cyan);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 800;
}

.rollout-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-h);
  font-size: 15px;
  line-height: 1.32;
}

.rollout-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.2px;
  line-height: 1.6;
  font-weight: 300;
}

.rollout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rollout-card {
  min-height: 100%;
  padding: 26px;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.rollout-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.34);
  box-shadow: var(--shadow-lg);
}

.rollout-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.07);
  color: var(--cyan);
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.rollout-card:nth-child(2n) .rollout-icon {
  border-color: rgba(139, 92, 246, 0.23);
  background: rgba(139, 92, 246, 0.08);
  color: #c4b5fd;
}

.rollout-card:nth-child(3n) .rollout-icon {
  border-color: rgba(37, 211, 102, 0.22);
  background: rgba(37, 211, 102, 0.08);
  color: #7ff1ad;
}

.rollout-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.28;
}

.rollout-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.68;
  font-weight: 300;
}

#products {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.018) 46%, transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 34%),
    var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(38px, 3.2vw, 54px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.product-card.erp::before {
  background: linear-gradient(90deg, #00D4FF, #0078A8);
}
.product-card.pos::before {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.product-icon.erp-icon {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.16);
}
.product-icon.pos-icon {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-badge.live,
.badge-live {
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.product-badge.coming,
.badge-soon {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.product-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
}
.product-card > p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 28px;
  font-weight: 300;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  color: #a9bdd0;
  font-size: 13.5px;
  line-height: 1.55;
}

.product-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.38);
}

body.ar .product-card li {
  padding-left: 0;
  padding-right: 18px;
}

body.ar .product-card li::before {
  left: auto;
  right: 0;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.card-actions .btn {
  min-width: 0;
}

/* Product pages */
.product-page-section {
  padding: 112px 0;
}

.product-band {
  background:
    radial-gradient(circle at 85% 10%, rgba(37, 211, 102, 0.055), transparent 30%),
    linear-gradient(180deg, rgba(17, 28, 42, 0.72), rgba(6, 12, 18, 0.86));
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.product-hero .hero-content,
.product-detail-hero .hero-content {
  max-width: 780px;
}

.product-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%),
    rgba(12, 21, 32, 0.78);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 212, 255, 0.08);
  padding: clamp(20px, 2.2vw, 30px);
}

.product-hero-card img {
  display: block;
  width: 100%;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.product-choice-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.034);
}

.product-choice-row + .product-choice-row {
  margin-top: 12px;
}

.product-choice-row > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 42px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.075);
  color: var(--cyan);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.product-choice-row strong {
  color: var(--white);
  font-family: var(--font-h);
  font-size: 15px;
  line-height: 1.35;
}

.product-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(32px, 3vw, 46px);
  border: 1px solid rgba(0, 212, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(12, 21, 32, 0.88);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-compare-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(37, 211, 102, 0.78));
}

.product-compare-card.highlight-erp::before {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.9), var(--cyan));
}

.product-compare-card h3 {
  color: var(--white);
  font-size: clamp(24px, 2vw, 30px);
  margin: 16px 0 12px;
}

.product-compare-card > p {
  color: #9db4c9;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 26px;
}

.product-compare-card dl {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
}

.product-compare-card dl div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.product-compare-card dt {
  color: var(--cyan);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-compare-card dd {
  color: #c7d8e7;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.workflow-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.workflow-card,
.faq-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%),
    rgba(17, 28, 42, 0.86);
  box-shadow: var(--shadow-sm);
}

.workflow-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.075);
  color: var(--cyan);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 800;
}

.workflow-card h3,
.faq-card h3 {
  color: var(--white);
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.workflow-card p,
.faq-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.68;
  font-weight: 300;
}

.manual-section {
  background: linear-gradient(180deg, rgba(8, 13, 18, 0.82), rgba(15, 23, 32, 0.7));
}

.manual-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.manual-copy h2 {
  max-width: 640px;
  color: var(--white);
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.14;
  margin-bottom: 18px;
}

.manual-copy p {
  max-width: 660px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.76;
  margin-bottom: 28px;
}

.manual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.manual-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.manual-highlights article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.manual-highlights article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(88, 217, 239, 0.07);
  color: var(--cyan);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 800;
}

.manual-highlights h3 {
  color: var(--white);
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.manual-highlights p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.68;
  font-weight: 300;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ERP live modules */
#erp-live-modules {
  padding: 108px 0 118px;
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 212, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(0, 212, 255, 0.018), rgba(139, 92, 246, 0.018) 58%, transparent);
}

#platform-capabilities {
  padding: 108px 0 118px;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 212, 255, 0.07), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.016) 54%, transparent);
}

.erp-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.erp-preview-frame {
  margin: 0 auto 38px;
  max-width: 1120px;
  border-radius: 22px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 40%),
    rgba(255, 255, 255, 0.026);
  box-shadow: 0 22px 70px rgba(0, 119, 168, 0.18);
  overflow: hidden;
}

.erp-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.erp-module-card {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(255, 255, 255, 0.026);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.erp-module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.055), transparent 46%),
    rgba(255, 255, 255, 0.032);
}

.erp-module-card h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.erp-module-card > p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px;
}

.erp-module-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.erp-module-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
}

.erp-module-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.55);
}

body.ar .erp-module-card li {
  padding-left: 0;
  padding-right: 18px;
}

body.ar .erp-module-card li::before {
  left: auto;
  right: 0;
}


/* ══════════════════════════════════════════════
   TRIAL REQUEST (inside POS card)
   ══════════════════════════════════════════════ */
.trial-request-section {
  margin-top: 48px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(0, 212, 255, 0.035));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
}
.trial-request-section h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}
.trial-request-section p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
}

.trial-request-form {
  display: flex;
  gap: 10px;
}
.trial-request-form input {
  flex: 1;
  background: rgba(6, 12, 18, 0.62);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.trial-request-form input:focus { border-color: rgba(139, 92, 246, 0.5); }


/* ══════════════════════════════════════════════
   POS PREVIEW
   ══════════════════════════════════════════════ */
#pos-preview {
  padding: 120px 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 212, 255, 0.08), transparent 32%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pos-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.pos-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pos-shot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%),
    rgba(17, 28, 42, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pos-shot:hover {
  border-color: rgba(0, 212, 255, 0.34);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pos-shot-media {
  background: rgba(6, 12, 18, 0.72);
  border-bottom: 1px solid var(--border);
}

.pos-shot-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.pos-shot-large {
  display: flex;
  flex-direction: column;
}

.pos-shot-large .pos-shot-media img {
  aspect-ratio: 16 / 10;
}

.pos-shot-large .pos-shot-copy {
  padding: 30px;
}

.pos-report-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: rgba(6, 12, 18, 0.72);
  border-bottom: 1px solid var(--border);
}

.pos-report-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.pos-shot-copy {
  padding: 22px;
}

.pos-shot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pos-shot-copy h3 {
  color: var(--white);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.pos-shot-copy p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
}

/* POS page visual tuning */
.pos-detail-hero::before {
  display: none;
}

.pos-detail-hero .hero-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1fr);
  gap: clamp(34px, 4.4vw, 70px);
}

.pos-detail-hero .hero-content {
  max-width: 620px;
}

.pos-detail-hero .hero-title {
  max-width: 620px;
  font-size: clamp(36px, 2.8vw, 48px);
  line-height: 1.12;
}

.pos-detail-hero .hero-sub {
  max-width: 600px;
  margin-bottom: 34px;
}

.pos-detail-hero .hero-actions {
  margin-bottom: 38px;
}

.pos-detail-hero .hero-device-showcase {
  justify-self: end;
  width: min(100%, 720px);
}

.pos-detail-hero .hero-device-frame {
  aspect-ratio: 1852 / 910;
  height: auto;
  background: rgba(10, 18, 27, 0.94);
}

.pos-detail-hero .hero-device-frame img {
  height: 100%;
  aspect-ratio: 1852 / 910;
  object-fit: contain;
  object-position: center top;
}

#pos-preview .pos-preview-layout {
  grid-template-columns: 1fr;
  gap: 28px;
}

#pos-preview .pos-preview-grid {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 24px;
}

#pos-preview .pos-shot {
  min-width: 0;
}

#pos-preview .pos-shot-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 10px;
}

#pos-preview .pos-shot-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: var(--radius-sm);
}

#pos-preview .pos-shot:not(.pos-shot-large):not(.pos-shot-report) .pos-shot-media {
  aspect-ratio: 16 / 9;
}

#pos-preview .pos-shot-large {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.68fr);
}

#pos-preview .pos-shot-large .pos-shot-media {
  padding: 0;
  border-right: 1px solid var(--border);
  border-bottom: 0;
}

#pos-preview .pos-shot-large .pos-shot-media img {
  height: auto;
  border-radius: 0;
}

#pos-preview .pos-shot-large .pos-shot-copy {
  padding: clamp(24px, 2.4vw, 34px);
}

#pos-preview .pos-report-stack {
  align-items: stretch;
  aspect-ratio: 16 / 9;
}

#pos-preview .pos-report-stack img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  background: #f8fbff;
}

#pos-preview .pos-shot-copy h3 {
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.2;
}

#pos-preview .pos-shot-large .pos-shot-copy h3 {
  font-size: clamp(21px, 1.9vw, 28px);
}

@media (max-width: 1180px) {
  .pos-detail-hero .hero-layout {
    grid-template-columns: 1fr;
  }

  .pos-detail-hero .hero-device-showcase {
    justify-self: start;
    width: min(100%, 860px);
  }

  #pos-preview .pos-shot-large {
    grid-template-columns: 1fr;
  }

  #pos-preview .pos-shot-large .pos-shot-media {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .pos-detail-hero .hero-content {
    width: min(100%, 540px);
  }

  .pos-detail-hero .hero-title {
    max-width: 100%;
    font-size: clamp(30px, 5.4vw, 36px);
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  #pos-preview .pos-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pos-detail-hero .hero-layout,
  .pos-detail-hero .hero-content,
  .pos-detail-hero .hero-title,
  .pos-detail-hero .hero-sub,
  .pos-detail-hero .hero-actions {
    max-width: 100%;
  }

  .pos-detail-hero .hero-content {
    width: min(100%, 340px);
  }

  .pos-detail-hero .hero-title {
    font-size: clamp(28px, 7vw, 30px);
    line-height: 1.16;
  }

  #pos-preview .pos-shot-media {
    padding: 8px;
  }

  #pos-preview .pos-report-stack {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }

  #pos-preview .pos-report-stack img {
    height: auto;
  }
}


/* ══════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════ */
#features {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 40%),
    rgba(17, 28, 42, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(139, 92, 246, 0.08)),
    rgba(0, 212, 255, 0.06);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--cyan);
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}
.feature-card h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 300;
}


/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
#about {
  padding: 120px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 34px;
  color: var(--bg);
  margin-bottom: 24px;
  border: 3px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.12);
}

.about-text h2 {
  font-size: clamp(25px, 2.8vw, 36px);
  color: var(--white);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 300;
  margin-bottom: 14px;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 12px;
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}
.credential-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
body.ar .credential-item::before {
  margin-right: 0;
  margin-left: 0;
}

.about-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 32%),
    var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.about-card h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── FOUNDER PAGE ─── */
.founder-hero .hero-content {
  max-width: 920px;
}

.founder-profile-section,
.founder-mission-section {
  padding: 110px 0;
  position: relative;
}

.founder-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 56px;
  align-items: start;
}

.founder-summary,
.founder-bio,
.founder-mission {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-summary {
  padding: 32px;
  position: sticky;
  top: 110px;
}

.founder-avatar {
  width: 112px;
  height: 112px;
  font-size: 42px;
  margin-bottom: 22px;
}

.founder-summary h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.founder-summary > p {
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 24px;
}

.founder-facts {
  display: grid;
  gap: 14px;
}

.founder-facts div {
  padding: 16px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
}

.founder-facts span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 6px;
}

body.ar .founder-facts span {
  letter-spacing: 0;
}

.founder-facts strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.founder-bio {
  padding: 42px;
}

.founder-bio h2,
.founder-mission h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.08;
  margin: 14px 0 22px;
}

.founder-bio p,
.founder-mission p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.founder-focus-grid .feature-icon {
  width: auto;
  min-width: 58px;
  padding: 0 12px;
  font-size: 13px;
  letter-spacing: 0;
}

.founder-mission {
  padding: 48px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.founder-mission-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.exp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.exp-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.exp-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.exp-info p {
  font-size: 12px;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
#pricing {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 14px 24px;
  margin-bottom: 40px;
}
.pricing-notice span {
  color: #a78bfa;
  font-size: 14px;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.04);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-currency {
  font-size: 22px;
  color: var(--text-muted);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.price-amount {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}
.price-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  margin-top: 6px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Five-plan pricing refresh */
#pricing {
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.035), transparent 22%),
    var(--bg2);
  overflow: hidden;
}

#pricing .pricing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  align-items: stretch;
}

#pricing .pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 34%),
    var(--card-bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

#pricing .pricing-card:hover {
  border-color: rgba(0, 212, 255, 0.32);
  box-shadow: var(--shadow-lg);
}

#pricing .pricing-card.popular {
  border-color: var(--cyan);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.11), transparent 36%),
    rgba(0, 212, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 24px 60px rgba(0, 212, 255, 0.12);
  transform: translateY(-10px);
  z-index: 1;
}

#pricing .pricing-card.popular:hover {
  transform: translateY(-14px);
}

#pricing .popular-badge {
  top: 18px;
  left: 22px;
  transform: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), #78edff);
  box-shadow: 0 10px 24px rgba(0, 212, 255, 0.18);
}

body.ar #pricing .popular-badge {
  left: auto;
  right: 22px;
}

#pricing .pricing-card.has-badge .pricing-name {
  margin-top: 38px;
}

.plan-code {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

#pricing .pricing-name {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  margin-bottom: 14px;
}

.plan-description {
  color: #93b8d7;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 20px;
  min-height: 72px;
}

#pricing .price-amount {
  font-size: clamp(30px, 3vw, 40px);
  letter-spacing: 0;
}

#pricing .pricing-price {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.price-period-inline {
  color: #93b8d7;
  font-size: 14px;
  margin-left: 4px;
}

body.ar .price-period-inline {
  margin-left: 0;
  margin-right: 4px;
}

#pricing .price-period {
  color: #93b8d7;
  font-size: 13px;
  line-height: 1.55;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}

#pricing .pricing-features {
  flex: 1;
}

#pricing .pricing-features li {
  color: #9cc2df;
  font-size: 13.5px;
  line-height: 1.55;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

#pricing .pricing-features li::before {
  content: '\2713';
}

#pricing .pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

#pricing .pricing-price.enterprise-price .price-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.07);
  color: var(--cyan);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
}

#pricing .pricing-note {
  margin: 36px auto 0;
  max-width: 880px;
}

#pricing .pricing-status-card {
  grid-column: 1 / -1;
  min-height: auto;
  text-align: center;
}

#pricing .pricing-status-card p {
  color: #9cc2df;
  margin: 0;
}


/* ══════════════════════════════════════════════
   BOOKING CTA
   ══════════════════════════════════════════════ */
#booking-cta {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(139, 92, 246, 0.045)),
    rgba(12, 21, 32, 0.72);
  box-shadow: var(--shadow-sm);
}

.booking-cta-content h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
  margin-bottom: 16px;
}

.booking-cta-content p {
  font-size: 16.5px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.btn-large {
  padding: 14px 32px;
  font-size: 15px;
}


/* ══════════════════════════════════════════════
   SUCCESS STORIES
   ══════════════════════════════════════════════ */
#stories {
  padding: 120px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 34%),
    var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.story-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.story-quote {
  font-size: 48px;
  color: var(--cyan);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}
.story-card > p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  color: var(--bg);
  flex-shrink: 0;
}
.story-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.story-info p {
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
}


/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
#contact {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(25px, 2.8vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent),
    var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: all 0.2s;
}
.channel:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(4px);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.055), transparent),
    var(--bg3);
}
body.ar .channel:hover { transform: translateX(-4px); }

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--cyan);
  flex-shrink: 0;
}
.channel-whatsapp .channel-icon { background: rgba(37, 211, 102, 0.1); }
.channel-email .channel-icon    { background: rgba(0, 212, 255, 0.1); }
.channel-booking .channel-icon { background: rgba(0, 105, 255, 0.1); }

.channel-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.channel-text p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Contact form */
.contact-form-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 32%),
    var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-box h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(6, 12, 18, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.09);
}
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 120px; }

.privacy-note {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.6;
  margin: 16px 0 0;
}

.privacy-note a {
  color: var(--cyan);
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.show { display: block; }
.form-success .check { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { color: var(--cyan); font-size: 22px; margin-bottom: 8px; }
.form-success p  { color: var(--text-muted); }


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 60px clamp(1.25rem, 4vw, 4rem) 32px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.025), transparent 45%),
    rgba(6, 12, 18, 0.72);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(28px, 3.4vw, 56px);
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-tagline {
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}


/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Design refinement pass: calmer hierarchy, cleaner surfaces */
.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  line-height: 1.14;
}

.section-header p {
  max-width: 720px;
  color: var(--text-muted);
  line-height: 1.72;
}

#products,
#features,
#pricing,
#pos-preview,
#contact,
#stories,
#about {
  padding: 104px 0;
}

.audience-section,
#rollout-model,
.product-page-section,
#erp-live-modules,
#platform-capabilities {
  padding: 96px 0 104px;
}

#booking-cta {
  padding: 88px 0;
}

.audience-section,
#products,
#pos-preview,
#erp-live-modules,
#platform-capabilities {
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.42), rgba(8, 13, 18, 0.72));
  border-color: var(--border-dim);
}

#rollout-model,
#features,
#pricing,
#booking-cta,
#contact,
.product-band {
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.76), rgba(8, 13, 18, 0.86));
  border-color: var(--border-dim);
}

.audience-card,
.rollout-panel,
.rollout-card,
.product-card,
.product-compare-card,
.workflow-card,
.faq-card,
.erp-module-card,
.pos-shot,
.feature-card,
.about-card,
.story-card,
.pricing-card,
#pricing .pricing-card,
.booking-cta-inner,
.contact-form-box,
.channel,
.founder-summary,
.founder-bio,
.founder-mission,
.product-hero-card,
.erp-preview-frame {
  border-color: var(--border-dim);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.audience-card:hover,
.rollout-card:hover,
.product-card:hover,
.product-compare-card:hover,
.workflow-card:hover,
.faq-card:hover,
.erp-module-card:hover,
.pos-shot:hover,
.feature-card:hover,
.story-card:hover,
#pricing .pricing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 217, 239, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.audience-card::after,
.hero-device-showcase::before {
  display: none;
}

.audience-card::before,
.rollout-panel::before,
.product-card::before,
.product-compare-card::before,
.about-card::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(88, 217, 239, 0.82), rgba(90, 210, 139, 0.46), transparent);
}

.audience-erp::before,
.product-card.pos::before,
.product-compare-card.highlight-erp::before {
  background: linear-gradient(90deg, rgba(168, 151, 255, 0.74), rgba(88, 217, 239, 0.64), transparent);
}

.product-icon,
.rollout-icon,
.feature-icon,
.workflow-card > span,
.rollout-step-num,
.product-choice-row > span,
.channel-icon,
.exp-icon {
  border-radius: var(--radius-sm);
  border-color: var(--border);
  background: rgba(88, 217, 239, 0.07);
  box-shadow: none;
  letter-spacing: 0;
}

.product-badge,
.audience-badge,
.rollout-kicker,
.pos-shot-kicker,
.plan-code,
.popular-badge,
.pricing-name,
.form-group label,
.footer-col h5,
.footer-tagline,
.founder-facts span,
.product-compare-card dt,
.product-choice-row > span {
  letter-spacing: 0;
}

.product-hero-card,
.erp-preview-frame,
.hero-device-frame {
  box-shadow: var(--shadow-lg);
}

.product-hero-card img,
.erp-preview-frame img,
.pos-report-stack img {
  border-radius: var(--radius-sm);
}

.product-choice-row,
.product-compare-card dl div,
.rollout-step,
.tag,
.pricing-notice,
.trial-request-section,
.credential-item,
.founder-facts div {
  border-color: var(--border-dim);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.028);
}

.audience-card p,
.product-compare-card > p,
.rollout-panel > p,
.pos-shot-copy p,
.plan-description,
#pricing .price-period,
#pricing .pricing-features li,
#pricing .pricing-status-card p {
  color: var(--text-muted);
}

.audience-card li::before,
.product-card li::before,
.erp-module-card li::before {
  background: var(--cyan);
  box-shadow: none;
}

#pricing .pricing-card.popular {
  transform: translateY(-4px);
  border-color: rgba(88, 217, 239, 0.42);
  background:
    linear-gradient(180deg, rgba(88, 217, 239, 0.075), transparent 38%),
    var(--surface);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

#pricing .pricing-card.popular:hover {
  transform: translateY(-6px);
}

#pricing .popular-badge,
.lang-btn.active {
  background: linear-gradient(135deg, #72e3f0, #55d4ea);
}

#pricing .price-amount,
#pricing .pricing-price.enterprise-price .price-amount {
  letter-spacing: 0;
}

.booking-cta-inner {
  max-width: 760px;
}

footer {
  background: rgba(8, 13, 18, 0.86);
}


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links {
    gap: 18px;
  }

  .nav-right .btn {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }

  .about-inner { gap: 48px; }
  .contact-inner { gap: 48px; }
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-device-showcase {
    max-width: 760px;
    width: 100%;
    margin: 0 auto 28px;
  }
  .rollout-layout {
    grid-template-columns: 1fr;
  }
  .founder-profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-summary {
    position: static;
  }
  .pos-preview-layout {
    grid-template-columns: 1fr;
  }
  .manual-panel {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links,
  .nav-right .lang-toggle,
  .nav-right .btn  { display: none; }
  .hamburger       {
    display: flex;
    width: 44px;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  /* Hero */
  .hero-content    { padding: 48px 0 40px; }
  .hero-layout     { gap: 22px; }
  .hero-title      {
    font-size: 34px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }
  .hero-sub        {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-device-showcase { margin-bottom: 12px; }
  .hero-device-frame { border-radius: var(--radius); }
  .hero-device-frame img {
    aspect-ratio: 16 / 10;
    object-position: 50% 50%;
  }
  .hero-stats      {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }

  /* Grids → single column */
  .products-grid,
  .audience-grid,
  .product-compare-grid,
  .about-inner,
  .founder-profile-grid,
  .contact-inner,
  .pricing-grid  { grid-template-columns: 1fr; }

  .pos-preview-grid { grid-template-columns: 1fr; }
  .workflow-grid,
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .manual-highlights { grid-template-columns: 1fr; }

  /* Trial request stacks */
  .trial-request-form { flex-direction: column; }

  /* Features 2-col on tablet */
  .features-grid,
  .erp-modules-grid { grid-template-columns: 1fr 1fr; }
  #rollout-model { padding: 76px 0; }
  .rollout-panel { padding: 28px; }
  .rollout-grid { grid-template-columns: 1fr 1fr; }

  /* Stories single col */
  .stories-grid  { grid-template-columns: 1fr; }

  /* Form row stacks */
  .form-row      { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner  {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand  { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Product cards tighter */
  .product-card  { padding: 28px; }
  .audience-section { padding: 76px 0; }
  .audience-card { padding: 28px; }
  .audience-card .btn { width: 100%; justify-content: center; }
  .pricing-card  { padding: 28px; }
  .product-page-section { padding: 76px 0; }
  .product-hero-card { padding: 22px; }
  .manual-actions .btn { flex: 1 1 190px; }
  .card-actions .btn { flex: 1 1 180px; }
  .erp-preview-frame { border-radius: var(--radius); margin-bottom: 28px; }
  #pos-preview  { padding: 76px 0; }
  .pos-shot-large .pos-shot-copy,
  .pos-shot-copy { padding: 22px; }
  .founder-profile-section,
  .founder-mission-section { padding: 76px 0; }
  .founder-bio,
  .founder-mission,
  .founder-summary { padding: 28px; }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .logo-mark { width: 34px; height: 34px; font-size: 16px; }
  .logo-text { font-size: 16px; letter-spacing: 0; }
  .logo-img { height: 30px; }
  .hero-title {
    font-size: clamp(28px, 7.4vw, 31px);
    line-height: 1.17;
  }
  .section-header h2 { font-size: clamp(24px, 8vw, 32px); }
  .features-grid,
  .erp-modules-grid { grid-template-columns: 1fr; }
  .workflow-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .rollout-grid { grid-template-columns: 1fr; }
  .rollout-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rollout-card { padding: 24px 20px; }
  .card-actions {
    flex-direction: column;
  }
  .card-actions .btn {
    width: 100%;
    flex: 0 1 auto;
  }
  .product-choice-row {
    grid-template-columns: 1fr;
  }
  .hero-actions  { flex-direction: column; width: 100%; max-width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 100%; min-width: 0; justify-content: center; }
  .hero-device-frame img { aspect-ratio: 4 / 3; }
  .hero-device-showcase figcaption { font-size: 12.5px; }
  .hero-stats    {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-form-box { padding: 24px 20px; }
  .about-inner   { gap: 36px; }
  .founder-bio,
  .founder-mission,
  .founder-summary { padding: 24px 20px; }
  .founder-mission-actions .btn { width: 100%; justify-content: center; }
  .pos-shot-media img,
  .pos-shot-large .pos-shot-media img { aspect-ratio: 16 / 11; }
  .pos-report-stack { grid-template-columns: 1fr; }
  .pos-report-stack img { aspect-ratio: 16 / 11; }
}

@media (max-width: 1024px) and (min-width: 768px) {
  #hero::before {
    opacity: 0.32;
    width: 48vw;
  }

  #pricing .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) and (min-width: 1025px) {
  #pricing .pricing-card {
    padding: 26px 20px;
  }

  #pricing .pricing-price.enterprise-price .price-amount {
    font-size: clamp(15px, 1.4vw, 18px);
  }
}

@media (max-width: 767px) {
  #hero::before {
    display: none;
  }

  #pricing .pricing-grid {
    grid-template-columns: 1fr;
  }

  #pricing .pricing-card.popular,
  #pricing .pricing-card.popular:hover {
    transform: none;
  }

  .plan-description {
    min-height: 0;
  }

  .booking-cta-inner {
    padding: 32px 22px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: clamp(28px, 7.4vw, 31px);
    line-height: 1.17;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-num {
    font-size: 28px;
  }
}

.legal-page {
  padding: 128px 0 80px;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1 {
  margin: 18px 0 12px;
}

.legal-page h2 {
  font-size: 22px;
  margin: 34px 0 10px;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--cyan);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.nav-cta-compact {
  font-size: 13px;
  padding: 8px 18px;
}

.mt-40 {
  margin-top: 40px;
}

.centered-action {
  text-align: center;
  margin-top: 40px;
}

.form-submit-full {
  width: 100%;
  justify-content: center;
  padding: 13px;
}

.section-flush-top {
  margin-top: 0;
  padding-top: 0;
}

.section-pb-xl {
  padding-bottom: 96px;
}

.is-hidden {
  display: none !important;
}

.btn-success {
  background: #22c55e;
  color: #fff;
}
