/* ═══════════════════════════════════════════════════════════
   Jadwa360 – Main Stylesheet
   Premium SaaS-style design system
   ═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:         #0A1E3C;
  --navy-mid:     #152d55;
  --navy-light:   #1e3d6b;
  --coral:        #FF5C35;
  --coral-dark:   #E64A26;
  --coral-glow:   rgba(255, 92, 53, 0.18);

  /* Neutrals */
  --white:        #FFFFFF;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-400:     #94A3B8;
  --gray-500:     #64748B;
  --gray-700:     #334155;
  --gray-900:     #0F172A;

  /* Semantic */
  --success:      #10B981;
  --success-bg:   rgba(16, 185, 129, 0.12);
  --error:        #EF4444;
  --warning:      #F59E0B;

  /* Typography */
  --font-en:      'Inter', system-ui, -apple-system, sans-serif;
  --font-ar:      'Cairo', 'Noto Sans Arabic', sans-serif;

  /* Spacing */
  --section-pad:  7rem;
  --container:    1280px;

  /* Radius */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-full:  9999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:    0 20px 48px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-xl:    0 32px 64px rgba(0,0,0,0.16), 0 16px 32px rgba(0,0,0,0.08);

  /* Transitions */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-en);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-pad { padding-block: var(--section-pad); }

.bg-light { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-top: 1rem;
  line-height: 1.7;
}

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.eyebrow-light { color: rgba(255,255,255,0.7); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(255,92,53,0.3);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,53,0.35);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover { border-color: var(--navy); background: var(--gray-50); }

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}

.btn-lg { padding: 0.85rem 1.85rem; font-size: 1rem; }

.btn-text-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s;
}

.btn-text-link:hover { color: var(--white); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral);
  transition: gap 0.2s var(--ease);
}

.card-link:hover { gap: 10px; }

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.revealed > * { opacity: 1; transform: translateY(0); }

/* ─── Notification ───────────────────────────────────────────── */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  max-width: 320px;
  transform: translateX(420px);
  transition: transform 0.3s var(--ease);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.notification.success { background: var(--success); }
.notification.error   { background: var(--error); }
.notification.show    { transform: translateX(0); }

.notification-close {
  color: white; opacity: 0.75; font-size: 1.2rem;
  padding: 0; transition: opacity 0.2s;
}

.notification-close:hover { opacity: 1; }

/* ─── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  color: white;
  padding: 10px 0;
  font-size: 0.875rem;
  position: relative;
  z-index: 1001;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-bar p { color: rgba(255,255,255,0.9); }

.announcement-bar a {
  color: var(--coral);
  font-weight: 600;
  transition: opacity 0.2s;
}

.announcement-bar a:hover { opacity: 0.8; }

.announcement-badge {
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.announcement-dismiss {
  color: rgba(255,255,255,0.6);
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.announcement-dismiss:hover { color: white; background: rgba(255,255,255,0.1); }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  padding: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--navy); background: var(--gray-100); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 1001;
  border: 1px solid var(--gray-200);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover { background: var(--gray-100); color: var(--navy); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.lang-sep { color: var(--gray-300); font-size: 0.8rem; }

.lang-btn {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}

.lang-btn.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.hamburger:hover { background: var(--gray-100); }

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 6rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Coral glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255,92,53,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero em { color: var(--coral); font-style: normal; }

.hero-heading {
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.trust-pill svg { color: var(--success); flex-shrink: 0; }

/* ─── Hero Dashboard (CSS mockup) ──────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50%       { transform: translateY(-14px) rotate(-1.5deg); }
}

@keyframes pill-a-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pill-b-in {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bar-grow {
  from { height: 0; }
  to   { height: var(--h); }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dash-wrap {
  position: relative;
  animation: float 7s ease-in-out infinite;
}

.dash-main {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 340px;
  box-shadow: var(--shadow-xl);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.dash-dot {
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--success);
  background: var(--success-bg);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.live-pulse {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

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

.dash-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.dash-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.dash-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.dash-change {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  background: var(--success-bg);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.dash-revenue { margin-bottom: 16px; }

/* Chart */
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 64px;
  background: var(--gray-50);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 16px;
}

.chart-col {
  flex: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.chart-bar {
  width: 100%;
  height: var(--h, 50%);
  background: var(--navy);
  border-radius: 3px 3px 0 0;
  opacity: 0.35;
  animation: bar-grow 1s var(--ease) both;
}

.chart-col:nth-child(1) .chart-bar { animation-delay: 0.0s; }
.chart-col:nth-child(2) .chart-bar { animation-delay: 0.1s; }
.chart-col:nth-child(3) .chart-bar { animation-delay: 0.15s; }
.chart-col:nth-child(4) .chart-bar { animation-delay: 0.2s; }
.chart-col:nth-child(5) .chart-bar { animation-delay: 0.25s; }
.chart-col:nth-child(6) .chart-bar { animation-delay: 0.3s; }
.chart-col:nth-child(7) .chart-bar { animation-delay: 0.35s; }

.chart-bar.accent { opacity: 1; background: var(--coral); }

/* Metrics row */
.dash-metrics {
  display: flex;
  gap: 1px;
  background: var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.dash-metric {
  flex: 1;
  background: var(--gray-50);
  padding: 10px 12px;
}

.dash-metric-label { font-size: 0.68rem; color: var(--gray-400); font-weight: 500; display: block; margin-bottom: 2px; }
.dash-metric-val   { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.dash-metric-val.success { color: var(--success); }

/* Task list */
.dash-tasks { display: flex; flex-direction: column; gap: 8px; }

.dash-task {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-700);
  font-weight: 500;
}

.task-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--success-bg);
  color: var(--success);
}

.task-icon.pending { background: rgba(245,158,11,0.12); color: var(--warning); }

/* Floating pills */
.dash-pill {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--gray-200);
}

.pill-a {
  top: -24px;
  right: -48px;
  animation: pill-a-in 0.7s var(--ease) 0.8s both;
}

.pill-b {
  bottom: -20px;
  left: -40px;
  animation: pill-b-in 0.7s var(--ease) 1s both;
}

.pill-icon   { font-size: 1.1rem; }
.pill-title  { font-size: 0.68rem; color: var(--gray-400); font-weight: 500; }
.pill-amount { color: var(--success); font-size: 0.9rem; }
.pill-check  { color: var(--success); font-size: 0.85rem; }

/* ─── Logos ──────────────────────────────────────────────────── */
.logos-section {
  padding-block: 3.5rem;
  border-block: 1px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.logos-track-wrap { overflow: hidden; position: relative; }

.logos-track-wrap::before,
.logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
}

.logos-track-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.logos-track-wrap::after  { right: 0; background: linear-gradient(to left, white, transparent); }

.client-logos {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.logo-item {
  padding: 0.75rem 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}

.logo-item:hover { background: var(--gray-200); color: var(--gray-700); }

/* ─── Stats ──────────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding-block: 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.625rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* ─── Services ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}

.service-card {
  background: var(--white);
  padding: 2.25rem;
  transition: background 0.25s, box-shadow 0.25s;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.25rem;
  right: 2.25rem;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover { background: var(--gray-50); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}

.service-card:hover .service-icon-wrap {
  background: var(--coral);
  color: white;
}

.service-card h3 { margin-bottom: 0.625rem; color: var(--navy); }

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ─── Process ────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  margin-bottom: 3rem;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 1.5rem);
  right: calc(16.66% + 1.5rem);
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}

.process-step { position: relative; }

.step-num {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--gray-50);
}

.process-step h3 { margin-bottom: 0.625rem; color: var(--navy); }

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.process-cta { text-align: center; }

/* ─── Industries ─────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.industry-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.industry-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.industry-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}

.industry-card:hover .industry-icon {
  background: var(--navy);
  color: white;
}

.industry-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.industry-arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  color: var(--gray-300);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
}

.industry-card:hover .industry-arrow {
  color: var(--coral);
  transform: translateX(3px);
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  margin: 0;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--coral);
}

.stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote { margin-bottom: 1.5rem; }

.testimonial-card blockquote p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ─── Pricing ────────────────────────────────────────────────── */
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--coral-glow) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-left h2 {
  color: white;
  margin-bottom: 0.875rem;
}

.pricing-left p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-features svg { color: var(--success); flex-shrink: 0; }

.pricing-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-tier {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.pricing-tier.featured {
  background: rgba(255,255,255,0.12);
  border-color: var(--coral);
}

.tier-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.tier-price {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

.tier-price strong { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.tier-price span   { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.tier-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding-block: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-inner { position: relative; z-index: 1; }

.cta-banner h2 {
  color: white;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding-block: 4.5rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand .logo-mark { background: var(--navy-light); }

.footer-brand .logo-text { color: white; }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 0.75rem;
}

.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--coral); }

.footer-nav h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-nav a:hover { color: white; }

.footer-lang-switch { margin-top: 1.5rem; }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 5rem; }

  .hero-container       { gap: 3rem; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .industries-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-content       { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand         { grid-column: 1 / -1; }
  .pricing-card         { padding: 3rem; gap: 2.5rem; }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .stat-item            { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-menu  { display: none; }
  .nav-actions .btn { display: none; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-menu.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.25rem 1rem;
    display: none;
  }

  .dropdown.active .dropdown-menu { display: block; }

  .dropdown-toggle::after { display: none; }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-sub       { max-width: 100%; }
  .hero-actions   { justify-content: center; }
  .hero-trust     { justify-content: center; }

  .dash-wrap   { transform: none; animation-duration: 9s; }
  .dash-main   { width: 300px; }
  .pill-a      { right: -24px; }
  .pill-b      { left: -24px; }

  /* Grids */
  .services-grid     { grid-template-columns: 1fr; gap: 0; }
  .process-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid::before { display: none; }
  .industries-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .pricing-card       { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .pricing-card::before { display: none; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .stats-grid      { grid-template-columns: 1fr; }
  .stat-item       { border-right: none !important; }
  .footer-content  { grid-template-columns: 1fr; }
  .dash-main       { width: 280px; }
  .pill-a          { display: none; }
  .pill-b          { display: none; }
  .announcement-bar .container { flex-direction: column; gap: 6px; }
}

/* ─── Animations (reduced motion) ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger-children > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dash-wrap  { animation: none; }
  .chart-bar  { animation: none; }
  .pill-a, .pill-b { animation: none; }
  .live-pulse { animation: none; }
}

/* ─── Accessibility ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Lazy loading ──────────────────────────────────────────── */
.lazy { opacity: 0; transition: opacity 0.4s; }
.lazy.loaded { opacity: 1; }

/* ─── Mobile performance ────────────────────────────────────── */
.reduced-motion * {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}

@media (max-width: 768px) {
  .parallax-element { transform: none !important; }
}
