/* ============================================================
   EC SHARKS — Elegant Enterprise Site
   Design system & global styles
   ============================================================ */

:root {
  /* Brand palette — sharp black + red accent (Arsos Tech) */
  --navy-950: #000000;
  --navy-900: #0a0a0a;
  --navy-800: #1a1a1a;
  --navy-700: #2a2a2a;
  --navy-600: #3a3a3a;
  --steel-500: #6b6b6b;
  --steel-400: #8a8a8a;
  --steel-300: #b8b8b8;
  --steel-200: #d8d8d8;
  --steel-100: #f1f1f1;
  --gold: #e63946;
  --gold-soft: #f4a8af;

  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --ink-mute: #7a7a7a;
  --line: #e5e5e5;
  --line-soft: #f3f3f3;
  --bg: #ffffff;
  --bg-cream: #fafafa;
  --bg-soft: #f7f7f7;

  /* Typography — sharp sans for tech brand; Tajawal for Arabic */
  --font-display: 'Inter', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --font-arabic: 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 7rem;
  --space-20: 9rem;

  /* Container */
  --container: 1240px;
  --container-narrow: 920px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------------------------------
   Reset & base
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100vw;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

::selection { background: var(--navy-900); color: var(--gold-soft); }

/* ----------------------------------------------------------
   Typography
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: 1.375rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-500);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--steel-400);
}
.eyebrow.center::before { display: none; }
.eyebrow.center {
  justify-content: center;
  display: flex;
}

p { color: var(--ink-soft); }
.lead { font-size: 1.25rem; line-height: 1.55; color: var(--ink-soft); }

/* ----------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-6); }

.section { padding: var(--space-16) 0; }
.section-sm { padding: var(--space-10) 0; }
.section-lg { padding: var(--space-20) 0; }

.center-text { text-align: center; }
.grid { display: grid; gap: var(--space-6); }

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.95rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--navy-900);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(10, 20, 41, 0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-950);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(201, 168, 106, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn .arrow {
  transition: transform 0.3s var(--ease);
  font-size: 1.1em;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Link with underline animation */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--navy-900);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--navy-900);
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.link-arrow:hover {
  color: var(--steel-500);
  border-color: var(--steel-500);
  gap: var(--space-3);
}

/* ----------------------------------------------------------
   Header / Navigation
   ---------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.logo img { height: 56px; width: auto; display: block; }

/* Header logo: Arsos triangle icon + ARSOS TECH wordmark */
.logo-header {
  text-decoration: none;
}
.logo-header .logo-mark {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.logo-header .logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.logo-header .logo-text-tech {
  font-weight: 600;
  color: var(--ink-soft);
}
@media (max-width: 480px) {
  .logo-header .logo-mark { height: 28px; }
  .logo-header .logo-text { font-size: 0.95rem; letter-spacing: 0.04em; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--navy-900);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--navy-900); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: var(--space-4); }
.nav-cta .btn { padding: 0.7rem 1.3rem; font-size: 0.85rem; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--space-20) + 4rem) 0 var(--space-16);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74, 122, 184, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  justify-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 820px; }
.hero-content .hero-actions,
.hero-content .hero-stats { justify-content: center; }
.hero-content .lead { margin-left: auto; margin-right: auto; }
.hero h1 {
  margin: var(--space-5) 0 var(--space-6);
}
.hero h1 .accent {
  color: var(--gold);
  font-weight: 800;
}
.hero .lead {
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-2);
}

/* Hero visual — abstract module showcase */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
  margin-left: auto;
}

.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-5);
  box-shadow: 0 30px 60px -25px rgba(10, 20, 41, 0.15),
              0 10px 20px -10px rgba(10, 20, 41, 0.08);
  transition: transform 0.4s var(--ease);
}

.hero-card.main {
  top: 5%;
  left: 0;
  width: 75%;
  z-index: 2;
}
.hero-card.float-1 {
  top: 0;
  right: 0;
  width: 50%;
  background: var(--navy-900);
  color: #fff;
  z-index: 3;
  animation: float 6s var(--ease) infinite;
}
.hero-card.float-2 {
  bottom: 5%;
  left: 10%;
  width: 55%;
  z-index: 3;
  animation: float 7s var(--ease) infinite 1s;
}
.hero-card.float-3 {
  bottom: 0;
  right: 5%;
  width: 45%;
  z-index: 4;
  background: var(--gold);
  color: var(--navy-950);
  animation: float 5s var(--ease) infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card .card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: var(--space-3);
}
.hero-card .card-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}
.hero-card .card-sub {
  font-size: 0.85rem;
  margin-top: var(--space-2);
  opacity: 0.8;
}

.hero-card.main .module-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.85rem;
}
.hero-card.main .module-row:last-child { border-bottom: 0; }
.hero-card.main .module-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--steel-400);
  margin-right: var(--space-3);
}
.hero-card.main .module-row .name {
  flex: 1;
  color: var(--ink);
  font-weight: 500;
}
.hero-card.main .module-row .status {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ----------------------------------------------------------
   Trust strip
   ---------------------------------------------------------- */
.trust-strip {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: var(--space-8);
  align-items: center;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.4;
  max-width: 160px;
}
.trust-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-mute);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.trust-item:hover { opacity: 1; color: var(--navy-900); }

/* ----------------------------------------------------------
   Section header
   ---------------------------------------------------------- */
.section-head {
  max-width: 720px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin: var(--space-4) 0 var(--space-5); }
.section-head p { font-size: 1.1rem; line-height: 1.6; }

/* ----------------------------------------------------------
   Services grid
   ---------------------------------------------------------- */
.services-section {
  background: var(--bg-cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1180px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: var(--space-8) var(--space-6);
  border-radius: 6px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--steel-500), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(10, 20, 41, 0.18);
  border-color: var(--steel-300);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--space-5);
  flex: 1;
}
.service-card .features {
  list-style: none;
  margin-bottom: var(--space-5);
}
.service-card .features li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: var(--space-2) 0;
  padding-left: var(--space-5);
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.service-card .features li:last-child { border-bottom: 0; }
.service-card .features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--steel-400);
}

/* ----------------------------------------------------------
   Modules showcase
   ---------------------------------------------------------- */
.modules-section {
  background: var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.modules-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at top right, rgba(74, 122, 184, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(201, 168, 106, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.modules-section .section-head h2,
.modules-section .section-head { color: #fff; }
.modules-section .section-head h2 { color: #fff; }
.modules-section .section-head p { color: var(--steel-300); }
.modules-section .eyebrow { color: var(--gold); }
.modules-section .eyebrow::before { background: var(--gold); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.module-tile {
  background: var(--navy-950);
  padding: var(--space-6) var(--space-5);
  transition: all 0.3s var(--ease);
  cursor: default;
  position: relative;
}
.module-tile:hover {
  background: var(--navy-800);
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.module-tile .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  display: block;
}
.module-tile h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}
.module-tile p {
  color: var(--steel-300);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ----------------------------------------------------------
   Why us — alternating split
   ---------------------------------------------------------- */
.why-section { background: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.why-card {
  padding: var(--space-6) 0;
  position: relative;
}
.why-card .why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--steel-200);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-style: italic;
}
.why-card h4 {
  font-size: 1.35rem;
  margin-bottom: var(--space-3);
}
.why-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ----------------------------------------------------------
   Pricing
   ---------------------------------------------------------- */
.pricing-section {
  background: var(--bg-cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(10, 20, 41, 0.18);
}
.price-card.featured {
  background: var(--navy-950);
  color: #fff;
  border-color: var(--navy-900);
  transform: scale(1.03);
  box-shadow: 0 30px 60px -20px rgba(10, 20, 41, 0.4);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.price-card.featured h3,
.price-card.featured .price-amount { color: #fff; }
.price-card.featured p, .price-card.featured .price-period { color: var(--steel-300); }
.price-card.featured .feature-list li { color: var(--steel-200); }
.price-card.featured .feature-list li svg { color: var(--gold); }

/* Featured card overrides for .price-name / .price-desc / .price-features
   (these are different classes than .feature-list and were left dark-on-dark) */
.price-card.featured .price-name { color: #fff; }
.price-card.featured .price-desc { color: var(--steel-300); }
.price-card.featured .price-features li { color: var(--steel-200); }
.price-card.featured .price-features li::before { color: var(--gold); }
.price-card.featured .price-currency { color: var(--steel-300); }

.price-badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: var(--gold);
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}
.price-card .price-tagline {
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-6);
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: var(--navy-900);
}
.price-period {
  font-size: 0.9rem;
  color: var(--ink-mute);
}
.price-note {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.feature-list {
  list-style: none;
  margin-bottom: var(--space-6);
  flex: 1;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--steel-500);
  margin-top: 2px;
}

.price-card .btn { width: 100%; }

/* ----------------------------------------------------------
   CTA block
   ---------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}
.cta-section h2 { color: #fff; margin-bottom: var(--space-4); }
.cta-section .lead { color: var(--steel-300); margin-bottom: var(--space-6); }
.cta-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.cta-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.cta-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  backdrop-filter: blur(10px);
}
.cta-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-950);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cta-info-label {
  font-size: 0.75rem;
  color: var(--steel-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.cta-info-value {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: var(--steel-200);
  padding: var(--space-16) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer-brand p {
  color: var(--steel-300);
  font-size: 0.9rem;
  margin: var(--space-5) 0;
  max-width: 320px;
  line-height: 1.7;
}
.footer-brand .logo img {
  height: 64px;
  filter: brightness(0) invert(1);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-300);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-col ul li {
  margin-bottom: var(--space-3);
}
.footer-col ul li a {
  color: var(--steel-300);
  font-size: 0.9rem;
  transition: color 0.25s var(--ease);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 0.9rem;
  color: var(--steel-300);
  line-height: 1.5;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.85rem;
  color: var(--steel-300);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ----------------------------------------------------------
   Page header (for sub-pages)
   ---------------------------------------------------------- */
.page-hero {
  padding: calc(var(--space-20) + 4rem) 0 var(--space-12);
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 20%; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74, 122, 184, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 900px) {
  .page-hero::before { display: none; }
}
.page-hero-content { max-width: 760px; position: relative; }
.page-hero h1 { margin: var(--space-4) 0 var(--space-5); }
.breadcrumb {
  display: flex;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: var(--ink-mute); transition: color 0.25s var(--ease); }
.breadcrumb a:hover { color: var(--navy-900); }
.breadcrumb .sep { opacity: 0.4; }

/* ----------------------------------------------------------
   Feature blocks (for service detail pages)
   ---------------------------------------------------------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
}
.feature-split:nth-child(even) .feature-split-text { order: 2; }
.feature-split:last-child { margin-bottom: 0; }

.feature-split h3 { margin-bottom: var(--space-4); }
.feature-split-text p { margin-bottom: var(--space-5); }
.feature-split ul { list-style: none; }
.feature-split ul li {
  padding: var(--space-3) 0;
  padding-left: var(--space-6);
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line-soft);
}
.feature-split ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--steel-500);
  font-weight: 700;
}

.feature-visual {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(10, 20, 41, 0.4);
}
.feature-visual::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.15) 0%, transparent 70%);
}
.feature-visual-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--navy-950);
  position: relative;
  z-index: 1;
}
.feature-visual-text {
  color: #fff;
  position: relative;
  z-index: 1;
}
.feature-visual-text .big {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.feature-visual-text .sub {
  color: var(--steel-300);
  font-size: 0.95rem;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq-section { background: #fff; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: var(--space-5) 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-5);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  width: 100%;
  text-align: left;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--steel-500);
  transition: transform 0.3s var(--ease);
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding-top: var(--space-4);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 90%;
}

/* ----------------------------------------------------------
   Contact form
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-10);
}

.contact-info-card {
  background: var(--navy-950);
  color: #fff;
  padding: var(--space-8);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.contact-info-card h3 { color: #fff; margin-bottom: var(--space-3); }
.contact-info-card > p { color: var(--steel-300); margin-bottom: var(--space-8); }

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  position: relative;
}
.contact-info-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item-label {
  font-size: 0.75rem;
  color: var(--steel-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.contact-info-item-value {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}
.contact-info-item-value a:hover { color: var(--gold); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--space-8);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.form-group { margin-bottom: var(--space-4); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy-900);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 20, 41, 0.08);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7894' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-success {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #6ee7b7;
  color: var(--ink);
  padding: var(--space-8);
  border-radius: 12px;
  margin-top: var(--space-6);
  text-align: center;
  display: none;
}
.form-success.visible { display: block; }
.form-success[hidden] { display: none !important; }
.form-success.visible[hidden] { display: block !important; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 var(--space-3) 0;
  color: var(--ink);
}
.form-success p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}
.form-success a {
  color: var(--navy-900);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

/* ----------------------------------------------------------
   Process steps (implementation methodology)
   ---------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  position: relative;
}
.process-step {
  position: relative;
  padding: var(--space-6) var(--space-4);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: all 0.3s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--steel-400);
  box-shadow: 0 20px 40px -20px rgba(10, 20, 41, 0.15);
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--steel-300);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.process-step h5 {
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
}
.process-step .step-meta {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.process-step p { font-size: 0.85rem; line-height: 1.6; }

/* ----------------------------------------------------------
   Industry chips
   ---------------------------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
.industry-chip {
  padding: var(--space-5) var(--space-4);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.industry-chip:hover {
  background: var(--navy-950);
  color: #fff;
  border-color: var(--navy-950);
  transform: translateY(-3px);
}
.industry-chip .icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  display: block;
  color: var(--steel-500);
  transition: color 0.3s var(--ease);
}
.industry-chip:hover .icon { color: var(--gold); }
.industry-chip .name {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ----------------------------------------------------------
   Scroll reveal
   Default: content is visible. Only when JS is confirmed
   running (html.js) AND user hasn't requested reduced motion,
   start hidden and animate in. This way no-JS, slow-JS, and
   reduced-motion users never see blank sections.
   ---------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-visual { margin: 0 auto; max-width: 480px; }
  .services-grid, .pricing-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr; text-align: center; }
  .trust-grid { display: flex; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 var(--space-5); }
  .section { padding: var(--space-12) 0; }
  .section-lg { padding: var(--space-16) 0; }
  .hero { padding: calc(var(--space-16) + 4rem) 0 var(--space-12); }
  .hero-stats { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stat .num { font-size: 2rem; }
  .services-grid, .pricing-grid, .why-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feature-split { grid-template-columns: 1fr; gap: var(--space-6); }
  .feature-split:nth-child(even) .feature-split-text { order: 0; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: var(--space-3) var(--space-6); width: 100%; }
  .nav-menu a::after { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .nav-cta .lang-toggle { display: none; }
}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  /* Make the lone header CTA on phones more compact so it sits comfortably
     between the logo and the hamburger toggle. */
  .nav-cta .btn { padding: 0.55rem 0.9rem; font-size: 0.78rem; }
  .nav-cta .btn .arrow { display: none; }
  .footer-brand .logo img { height: 48px; }
}

/* ============================================================
   SUPPLEMENTAL STYLES — fills gaps used across all pages
   ============================================================ */

/* Utility */
.btn-block { display: flex; width: 100%; justify-content: center; }
.req { color: var(--gold); font-weight: 600; }
.light { color: rgba(255,255,255,0.92); }

/* Section heads */
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--space-10) auto; }
.section-head.left { text-align: left; margin-left: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--space-4) 0;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.section-light { background: var(--bg-soft); }
.section-dark {
  background: var(--navy-950);
  color: rgba(255,255,255,0.85);
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }

/* Hero headings shared */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 var(--space-6) 0;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}
.hero-sub {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 var(--space-8) 0;
}

/* Services grid (cards) */
.service-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--space-3) 0;
  line-height: 1.2;
}
.service-body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 var(--space-5) 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: var(--space-3); color: var(--gold); }
.service-link .arrow { transition: transform 0.2s; }
.service-link:hover .arrow { transform: translateX(4px); }

/* Why cards */
.why-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--space-3) 0;
  line-height: 1.25;
}
.why-body {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* Feature splits */
.feature-text { padding: var(--space-4) 0; }
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-5) 0;
}
.feature-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 var(--space-5) 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
}
.feature-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--ink);
  line-height: 1.6;
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Visual card (on about / inside feature-visual) */
.visual-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 12px;
  padding: var(--space-8);
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(10, 20, 41, 0.4);
}
.visual-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-300);
  margin-bottom: var(--space-5);
}
.visual-card-header .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--steel-400);
  display: inline-block;
}
.visual-card-header .dot-gold { background: var(--gold); }
.visual-card-body {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  font-style: italic;
  color: #fff;
}
.visual-card-body p { margin: 0; color: inherit; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-8);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.stat-num span {
  font-size: 0.6em;
  color: rgba(255,255,255,0.65);
  margin-left: 2px;
}
.stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

/* Pricing card sub-elements */
.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.price-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--space-6);
  min-height: 2.8em;
}
.price-currency {
  font-size: 0.55em;
  vertical-align: top;
  font-weight: 500;
  color: var(--ink-soft);
  margin-right: 4px;
  letter-spacing: 0.02em;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 var(--space-6) 0;
  flex: 1;
}
.price-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* CTA section internal */
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin: var(--space-3) 0 var(--space-4) 0;
}
.cta-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--space-6) 0;
  max-width: 540px;
}
.cta-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.cta-info-row:last-child { border-bottom: none; }
.cta-info-row span { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.cta-info-row a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-info-row a:hover { color: var(--gold); }

/* Contact info card */
.contact-info-card {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: var(--space-8);
  position: sticky;
  top: 100px;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: #fff;
  margin: var(--space-3) 0 var(--space-4) 0;
  line-height: 1.2;
}
.contact-info-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0 0 var(--space-6) 0;
}
.contact-info-block { margin-bottom: var(--space-5); }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.contact-info-value {
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
a.contact-info-value:hover { color: var(--gold); }
.contact-info-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: var(--space-6) 0;
}
.social-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.social-row a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.92rem;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  transition: all 0.2s;
}
.social-row a:hover {
  color: var(--navy-900);
  background: var(--gold);
  border-color: var(--gold);
}

/* Form details */
.contact-form-wrap { width: 100%; }
.form-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--space-3) 0;
}
.form-intro {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 var(--space-6) 0;
}
.form-disclaimer {
  font-size: 0.82rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-top: var(--space-4);
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4) auto;
}

/* Quick CTA strip on contact */
.quick-cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.quick-cta-item {
  padding: var(--space-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.25s;
}
.quick-cta-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(10,20,41,0.12);
}
.quick-cta-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 var(--space-2) 0;
  color: var(--ink);
}
.quick-cta-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 var(--space-4) 0;
}
.quick-link {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap 0.2s, color 0.2s;
}
.quick-link:hover { color: var(--gold); gap: var(--space-3); }
@media (max-width: 900px) {
  .quick-cta { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

/* "Talk to Sales" replaces numeric prices — make it look intentional */
.price-amount.price-talk {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.price-card.featured .price-amount.price-talk { color: var(--gold); }
.price-amount.price-talk::after {
  content: " →";
  color: var(--gold);
  font-style: normal;
  margin-left: 4px;
}

/* ============================================================
   RTL / Arabic support
   Activated when <html dir="rtl" lang="ar">
   ============================================================ */
html[lang="ar"] body {
  font-family: var(--font-arabic);
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6 {
  font-family: var(--font-arabic);
  letter-spacing: 0; /* tight latin tracking doesn't suit Arabic */
}
html[lang="ar"] .eyebrow,
html[lang="ar"] .footer-col h5,
html[lang="ar"] .trust-label {
  letter-spacing: 0.05em; /* slightly less aggressive than 0.18em latin */
}

/* RTL: flip arrows */
html[dir="rtl"] .arrow,
html[dir="rtl"] .link-arrow::after,
html[dir="rtl"] .service-link .arrow {
  display: inline-block;
  transform: scaleX(-1);
}

/* RTL: nav-menu underline alignment */
html[dir="rtl"] .nav-menu a::after {
  left: auto;
  right: 0;
}

/* RTL: mobile menu items align right */
html[dir="rtl"] .nav-menu a { text-align: right; }

/* RTL: breadcrumb separator looks fine both directions, no change needed */

/* RTL: service number stays top-right naturally via flex */
/* RTL: footer column heading direction */
html[dir="rtl"] .footer-contact-item svg,
html[dir="rtl"] .contact-info-item-icon { 
  margin-inline-end: 0; 
  margin-inline-start: var(--space-3);
}

/* Language toggle button */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: var(--font-body);
  text-transform: uppercase;
}
.lang-toggle:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}
.lang-toggle .lang-current { color: var(--gold); }
.lang-toggle .lang-divider { opacity: 0.4; }

@media (max-width: 480px) {
  .lang-toggle {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }
}

/* Hide elements that should only show for one language */
html[lang="en"] [data-lang-only="ar"],
html[lang="ar"] [data-lang-only="en"] {
  display: none !important;
}

/* Tabular numerals so prices align in both languages */
.price-amount, .stat-num, .hero-stat .num {
  font-variant-numeric: tabular-nums;
}

/* Force LTR on phone numbers, emails, and code regardless of page direction */
.ltr-text {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

/* Hover effect for primary CTA — use red accent */
.btn-gold,
.btn-primary {
  /* leave existing rules; just tweak hover */
}
.btn-gold:hover {
  background: #d12d3a;
  border-color: #d12d3a;
}

/* ============================================================
   POS section styles (home + dedicated page)
   ============================================================ */
.pos-strip {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  position: relative;
}
.eyebrow.accent-red { color: var(--gold); }

.pos-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  margin: var(--space-10) 0 var(--space-12);
}
.pos-feature-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--space-4);
}
.pos-feature-text > p {
  margin-bottom: var(--space-6);
  color: var(--ink-soft);
}
.pos-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-5);
}
.pos-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--ink);
}
.pos-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Mock POS terminal card */
.pos-feature-visual { display: flex; justify-content: center; }
.pos-visual-card {
  background: var(--navy-950);
  border-radius: 12px;
  padding: var(--space-6);
  width: 100%;
  max-width: 420px;
  color: #fff;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.pos-visual-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--steel-300);
  text-transform: uppercase;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pos-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.15);
}
.pos-status {
  margin-inline-start: auto;
  color: var(--gold);
  font-weight: 700;
}
.pos-visual-body { display: flex; flex-direction: column; gap: var(--space-3); }
.pos-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}
.pos-line.muted { color: var(--steel-400); font-size: 0.92rem; }
.pos-line.total {
  border-top: 1px dashed rgba(255,255,255,0.15);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  font-weight: 700;
  font-size: 1.25rem;
}
.pos-line.total span:last-child { color: var(--gold); }
.pos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pos-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--steel-300);
}

/* Industries grid */
.pos-industries-head {
  text-align: center;
  max-width: 720px;
  margin: var(--space-12) auto var(--space-8);
}
.pos-industries-head h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--space-3);
}
.pos-industries-head p { color: var(--ink-soft); }
.pos-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.pos-industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-6);
  transition: all 0.25s var(--ease);
}
.pos-industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(230, 57, 70, 0.15);
}
.pos-industry-card.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.pos-industry-card.dark p { color: var(--steel-300); }
.pos-industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 10px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.pos-industry-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}
.pos-industry-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 1024px) {
  .pos-industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pos-feature-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .pos-feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pos-industry-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   POS verticals - card grid
   ============================================================ */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.vertical-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--space-7) var(--space-6);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.vertical-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}
.vertical-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  line-height: 1;
}
.vertical-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}
.vertical-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vertical-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vertical-features li {
  position: relative;
  padding-inline-start: 1.5rem;
  padding-block: 0.45rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.vertical-features li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vertical-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* ============================================================
   Arsos additions — POS, modules, processes, FAQ, forms,
   contact info, quick-link cards, etc.
   ============================================================ */

/* Modules grid (used on home, ERP, e-commerce, POS pages) */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.module-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: var(--space-5);
  transition: all 0.25s var(--ease);
}
.section-dark .module-tile { color: #fff; }
.section-dark .module-tile h4 { color: #fff; margin-bottom: var(--space-2); }
.section-dark .module-tile p { color: var(--steel-300); font-size: 0.9rem; line-height: 1.5; }
.module-tile:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(230,57,70,0.35);
  transform: translateY(-2px);
}
.module-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: var(--space-2);
  letter-spacing: 0.1em;
}
.modules-cta {
  margin-top: var(--space-10);
  text-align: center;
}

/* Light variants for non-dark sections that use modules-grid */
.section:not(.section-dark) .module-tile {
  background: var(--bg);
  border-color: var(--line);
}
.section:not(.section-dark) .module-tile h4 { color: var(--ink); }
.section:not(.section-dark) .module-tile p { color: var(--ink-soft); }

/* Process grid (ERP, Marketing) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.process-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-5);
  position: relative;
}
.section-dark .process-step {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.section-dark .process-step h4 { color: #fff; }
.section-dark .process-step p { color: var(--steel-300); }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: var(--space-3);
  letter-spacing: 0.1em;
}
.process-step h4 { margin-bottom: var(--space-2); font-size: 1.1rem; }
.process-step p { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); }

/* Industry grid (ERP) */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.industry-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-6) var(--space-5);
  text-align: center;
  transition: all 0.25s var(--ease);
}
.industry-tile:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.industry-tile h4 { margin-bottom: var(--space-1); font-size: 1.1rem; }
.industry-tile p { font-size: 0.85rem; color: var(--ink-mute); }

/* Hardware grid (POS) */
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.hardware-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-5);
}
.hardware-tile h4 { margin-bottom: var(--space-2); font-size: 1.1rem; }
.hardware-tile p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }

/* Featured pillar (POS card on home) */
.featured-pillar {
  border-color: var(--gold) !important;
  position: relative;
}
.featured-pillar::before {
  content: 'NEW';
  position: absolute;
  top: var(--space-3);
  inset-inline-end: var(--space-3);
  background: var(--gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Vertical card variant — "Don't see your industry" */
.vertical-card-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700)) !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: start;
}
.vertical-card-cta h3 { color: #fff !important; }
.vertical-card-cta .vertical-lead { color: var(--steel-300) !important; }
.vertical-card-cta .vertical-icon {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: var(--space-8) auto 0;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
  transition: all 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: var(--space-3);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Pricing footer link */
.pricing-foot {
  text-align: center;
  margin-top: var(--space-8);
}

/* Quick-links grid (contact page) */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.quick-link-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-6);
  transition: all 0.2s var(--ease);
}
.quick-link-card:hover { border-color: var(--gold); }
.quick-link-card h4 { margin-bottom: var(--space-3); font-size: 1.15rem; }
.quick-link-card p {
  margin-bottom: var(--space-4);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.quick-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact info block (replaces the older single info-row pattern) */
.contact-info-block {
  margin-bottom: var(--space-5);
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-1);
}
.contact-info-value {
  color: #fff;
  font-weight: 500;
  display: inline-block;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  border-radius: 14px;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset-inline-end: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(230,57,70,0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info-title {
  color: #fff;
  font-size: 1.6rem;
  margin: var(--space-2) 0 var(--space-3);
}
.contact-info-body {
  color: var(--steel-300);
  font-size: 0.95rem;
  margin-bottom: var(--space-6);
  line-height: 1.65;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-8);
}

/* Contact form wrap */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: var(--space-8);
}
.contact-form-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-3);
}
.contact-form-intro {
  color: var(--ink-soft);
  margin-bottom: var(--space-6);
}

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group {
  margin-bottom: var(--space-4);
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.form-control {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='2 2 6 6 10 2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
html[dir="rtl"] select.form-control {
  background-position: left 1rem center;
  padding-right: 0.95rem;
  padding-left: 2.5rem;
}
.form-disclaimer {
  margin-top: var(--space-3);
  font-size: 0.8rem;
  color: var(--ink-mute);
  line-height: 1.55;
}
.form-success {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: #f0f9f0;
  border: 1px solid #cce8cc;
  border-radius: 8px;
}
.form-success h3 { color: #2d6a2d; margin-bottom: var(--space-2); }
.form-success p { color: #4a7a4a; }

/* Responsive */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .hardware-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .quick-links-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .modules-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .hardware-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--space-5); }
}

/* Mobile-only lang toggle inside slide-out nav */
.lang-toggle-mobile { display: none; }
@media (max-width: 900px) {
  .nav-menu .lang-toggle-mobile {
    display: inline-flex !important;
    margin: var(--space-3) var(--space-6) 0;
    align-self: flex-start;
  }
}

/* ----------------------------------------------------------
   Arsos Group — additions (holding-company pages)
   ---------------------------------------------------------- */
.card-link{
  display:inline-block; margin-top:var(--space-4);
  font-weight:600; color:var(--gold); text-decoration:none;
  font-size:0.95rem; transition:gap .2s var(--ease);
}
.card-link:hover{ opacity:.8; }

.section-alt{ background:var(--bg-soft); }

.cta-email{
  margin-top:var(--space-5); font-size:0.95rem; color:var(--ink-soft);
}
.cta-email a{ color:var(--gold); text-decoration:none; font-weight:600; }

.service-card .eyebrow{
  display:block; margin-bottom:var(--space-2);
  font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--ink-mute);
}

/* Division hero (sub-page banner) */
.division-hero{
  padding:var(--space-16) 0 var(--space-12);
  background:linear-gradient(160deg,#000 0%,#1a1a1a 60%,#0a0a0a 100%);
  color:#fff;
}
.division-hero .eyebrow{ color:var(--gold-soft); }
.division-hero h1{ color:#fff; margin:var(--space-4) 0; }
.division-hero p.lead{ color:var(--steel-300); max-width:660px; }
.division-hero .badge-row{ margin-top:var(--space-6); display:flex; gap:var(--space-3); flex-wrap:wrap; }
.division-hero .badge-pill{
  border:1px solid rgba(230,57,70,0.5); background:rgba(230,57,70,0.12);
  color:#fff; padding:0.5rem 1rem; border-radius:999px; font-size:0.85rem; font-weight:600;
}

/* "Coming soon" box for divisions without their own domain yet */
.soon-box{
  margin-top:var(--space-8); padding:var(--space-8);
  border:1px dashed var(--line); border-radius:16px; background:var(--bg-cream);
  text-align:center;
}
.soon-box h3{ margin-bottom:var(--space-3); }
.soon-box p{ color:var(--ink-soft); max-width:520px; margin:0 auto var(--space-5); }

/* Legal/company details table (About) */
.legal-table{
  width:100%; border-collapse:collapse; margin-top:var(--space-6);
  border:1px solid var(--line); border-radius:14px; overflow:hidden;
}
.legal-table tr{ border-bottom:1px solid var(--line); }
.legal-table tr:last-child{ border-bottom:none; }
.legal-table td{ padding:var(--space-4) var(--space-5); }
.legal-table td:first-child{
  font-weight:600; color:var(--ink); width:38%; background:var(--bg-soft);
}
.legal-table td:last-child{ color:var(--ink-soft); }
[dir="rtl"] .legal-table td:first-child{ text-align:right; }

/* Offer/feature list grid for division pages */
.offer-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:var(--space-5); margin-top:var(--space-8);
}
.offer-card{
  padding:var(--space-6); border:1px solid var(--line);
  border-radius:16px; background:var(--bg);
}
.offer-card h4{ margin-bottom:var(--space-3); }
.offer-card p{ color:var(--ink-soft); font-size:0.95rem; }

/* Process steps */
.proc-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:var(--space-5); margin-top:var(--space-8); }
.proc-step{ text-align:center; padding:var(--space-5); }
.proc-num{
  width:48px; height:48px; border-radius:50%; margin:0 auto var(--space-4);
  display:flex; align-items:center; justify-content:center;
  background:var(--gold); color:#fff; font-weight:800; font-size:1.2rem;
}
.proc-step p{ color:var(--ink-soft); font-size:0.95rem; }

/* Per-division contact */
.div-contact{ display:flex; gap:var(--space-5); justify-content:center; flex-wrap:wrap; margin-top:var(--space-5); }
.div-contact-item{
  display:inline-flex; align-items:center; gap:0.6rem;
  color:#fff; text-decoration:none; font-weight:600; font-size:1rem;
  border:1px solid rgba(255,255,255,0.25); padding:0.75rem 1.25rem; border-radius:999px;
  transition:border-color .2s var(--ease);
}
.div-contact-item:hover{ border-color:var(--gold); }

/* Custom positioning line (homepage hero) */
.positioning-line{ font-size:1rem; color:var(--gold); font-weight:600; margin:var(--space-3) 0 0; letter-spacing:0.01em; }

/* ============================================================
   Arsos Group — mobile fixes (appended; overrides earlier rules)
   ============================================================ */
@media (max-width: 768px) {
  /* Ensure the slide-out menu always sits ABOVE page content with a solid panel */
  .site-header { position: relative; z-index: 1000; }
  .nav-menu {
    z-index: 1001;
    background: #fff !important;
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.25);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  /* Show the language toggle inside the opened mobile menu, full-width row */
  .nav-menu.open ~ .nav-cta .lang-toggle,
  .nav-cta .lang-toggle { } /* (kept simple; toggle still reachable in menu) */

  /* Division hero ghost button was dark-on-dark — make it readable on the
     black hero by switching it to a light outline style on mobile. */
  .division-hero .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
  }
  .division-hero .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
  }

  /* Tighten the lone header CTA so logo + button + burger never collide */
  .nav-cta { gap: var(--space-2); }
  .nav-cta .btn-primary { padding: 0.5rem 0.85rem; font-size: 0.8rem; white-space: nowrap; }
  .nav-cta .btn-primary .arrow { display: none; }
  .logo-header .logo-text { font-size: 1.15rem; }

  /* Per-division contact pills: stack & full-width on phones */
  .div-contact { flex-direction: column; align-items: stretch; }
  .div-contact-item { justify-content: center; }

  /* Process steps: 2-up on phones instead of cramped 4-up */
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .proc-grid { grid-template-columns: 1fr; }
  /* Prevent the eyebrow line from wrapping awkwardly */
  .hero .eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; }
}

/* RTL: make sure the mobile menu panel & contact pills mirror cleanly */
html[dir="rtl"] .div-contact-item { flex-direction: row-reverse; }
