/* ============================================================
   excite-data | excite.css — Modern Design System
   Trust Your Data, It Has a Better Idea
   ============================================================ */

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

:root {
  --red: #c0392b;
  --red-dark: #962c22;
  --red-light: rgba(192,57,43,0.08);
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #2c2c2c;
  --cream: #f8f6f1;
  --cream-2: #f0ede5;
  --text: #1c1c1e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --t: 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.75; }

/* --- Layout helpers --- */
.ed-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark-2 { background: var(--dark-2); color: var(--white); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-dark .section-label { color: #ff7b6e; }

.section-heading { margin-bottom: 18px; }
.section-intro {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 620px;
  line-height: 1.8;
}
.section-dark .section-intro { color: rgba(255,255,255,0.55); }
.section-dark .section-heading { color: var(--white); }
.text-center .section-intro { margin: 0 auto; }

/* --- Buttons --- */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid var(--red);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid var(--border);
  transition: all var(--t);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--text); color: var(--text); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ==================== NAVIGATION ==================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--t);
}
.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.site-nav.nav-on-dark.scrolled { background: rgba(13,13,13,0.96); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
}
.nav-logo-text em { color: var(--red); font-style: normal; }
.site-nav.scrolled .nav-logo-text { color: var(--text); }
.nav-on-dark.scrolled .nav-logo-text { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 6px;
  transition: all var(--t);
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}
.nav-link i.chevron {
  font-size: 0.62rem;
  opacity: 0.6;
  transition: transform var(--t);
}
.nav-item:hover .nav-link i.chevron { transform: rotate(180deg); }
.site-nav.scrolled .nav-link { color: var(--text-muted); }
.nav-on-dark.scrolled .nav-link { color: rgba(255,255,255,0.7); }
.nav-link:hover, .site-nav.scrolled .nav-link:hover { color: var(--red); background: var(--red-light); }
.nav-on-dark.scrolled .nav-link:hover { background: rgba(192,57,43,0.12); color: #ff7b6e; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.18s ease;
  border: 1px solid var(--border);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--t);
}
.nav-dropdown a:hover { background: var(--cream); color: var(--red); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-btn {
  padding: 9px 20px;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--red);
  color: var(--white) !important;
  transition: all var(--t);
  white-space: nowrap;
}
.nav-btn:hover { background: var(--red-dark); box-shadow: 0 4px 16px rgba(192,57,43,0.3); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.site-nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-on-dark.scrolled .nav-hamburger span { background: var(--white); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1100;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav-link {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.02em;
}
.mobile-sub-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  padding: 20px 0 10px;
}
.mobile-sub-link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu .btn-red { margin-top: 32px; width: 100%; justify-content: center; }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 130px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 60%, rgba(192,57,43,0.15) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff8a7e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 48px; }
.hero-stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
}
.hero-stat-value em { color: var(--red); font-style: normal; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ==================== LOGOS BAR ==================== */
.logos-bar {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.logos-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logos-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.logos-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  flex: 1;
}
.client-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.45;
  letter-spacing: -0.02em;
  transition: opacity var(--t);
  white-space: nowrap;
}
.client-name:hover { opacity: 0.8; }

/* ==================== STATS BAND ==================== */
.stats-band { background: var(--dark); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
}
.stat-value em { color: var(--red); font-style: normal; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 10px; font-weight: 500; line-height: 1.4; }

/* ==================== CARDS ==================== */
.card-ed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-ed:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--red);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.card-ed h4 { margin-bottom: 10px; }
.card-ed p { color: var(--text-muted); font-size: 0.93rem; flex: 1; }

.card-dark {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-dark:hover { border-color: rgba(192,57,43,0.25); background: var(--dark-2); }
.card-dark h4 { color: var(--white); margin-bottom: 10px; }
.card-dark p { color: rgba(255,255,255,0.5); font-size: 0.93rem; flex: 1; }
.card-dark .card-icon { background: rgba(192,57,43,0.12); }

/* ==================== PRODUCT CARDS ==================== */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-card-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-card-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.product-card-head h3 { font-size: 1.15rem; margin: 0; }
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}
.product-card-body { padding: 20px 28px; flex: 1; }
.product-card-body > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.feature-item i { color: var(--red); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }
.product-card-foot {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-foot a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t);
}
.product-card-foot a:hover { gap: 9px; }

/* ==================== CASE STUDY CARDS ==================== */
.cs-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cs-card:hover { transform: translateY(-4px); border-color: rgba(192,57,43,0.3); }
.cs-card-head { padding: 28px 28px 20px; border-bottom: 1px solid var(--border-dark); }
.cs-badge {
  display: inline-block;
  background: rgba(192,57,43,0.15);
  color: #ff8a7e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.cs-card-head h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.cs-card-head p { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.cs-stats { padding: 20px 28px; display: flex; gap: 28px; flex-wrap: wrap; flex: 1; align-items: flex-start; }
.cs-stat-value { display: block; font-size: 1.7rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.cs-stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.38); margin-top: 4px; }
.cs-foot {
  padding: 16px 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-client { color: rgba(255,255,255,0.45); font-size: 0.82rem; font-weight: 600; }
.cs-link { font-size: 0.85rem; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 4px; }
.cs-link:hover { color: #ff7b6e; }

/* ==================== PROCESS STEPS ==================== */
.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  letter-spacing: -0.05em;
  line-height: 1;
  min-width: 64px;
  flex-shrink: 0;
  user-select: none;
}
.section-dark .step-num { color: rgba(255,255,255,0.05); }
.step-body h4 { margin-bottom: 8px; }
.step-body p { color: var(--text-muted); font-size: 0.93rem; }
.section-dark .step-body h4 { color: var(--white); }

/* ==================== TWO-COL LAYOUT ==================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col-rev { direction: rtl; }
.two-col-rev > * { direction: ltr; }

/* ==================== GRIDS ==================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--red);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ==================== PAGE HEADER (inner pages) ==================== */
.page-hdr {
  background: var(--dark);
  padding: 160px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hdr-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
}
.page-hdr-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(192,57,43,0.14) 0%, transparent 65%);
}
.page-hdr-inner { position: relative; z-index: 1; }
.page-hdr h1 { color: var(--white); margin-bottom: 14px; }
.page-hdr p { color: rgba(255,255,255,0.55); font-size: 1.08rem; max-width: 580px; margin: 0 auto; }
.breadcrumb-ed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.breadcrumb-ed a { color: rgba(255,255,255,0.55); }
.breadcrumb-ed a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.3; }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--dark); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.2); font-style: italic; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--t);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h5 {
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.42); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-contact-item i { color: var(--red); flex-shrink: 0; margin-top: 3px; font-size: 0.82rem; }
.footer-contact-item a { color: rgba(255,255,255,0.4); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 10px;
}
.compliance-row { display: flex; gap: 8px; flex-wrap: wrap; }
.comp-badge {
  padding: 3px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ==================== MISC COMPONENTS ==================== */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; }
.check-item i { color: var(--red); flex-shrink: 0; margin-top: 3px; font-size: 0.85rem; }

.pill-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--text-muted);
}
.pill-tag-red { background: var(--red-light); color: var(--red); }

.value-prop {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.value-prop:first-child { padding-top: 0; }
.value-prop:last-child { border-bottom: none; }
.vp-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.vp-body h4 { margin-bottom: 4px; font-size: 1rem; }
.vp-body p { font-size: 0.9rem; color: var(--text-muted); }

.metric-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.metric-item { text-align: center; }
.metric-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
}
.metric-lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* Contact form */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control-ed {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control-ed:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
textarea.form-control-ed { min-height: 130px; resize: vertical; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; }

/* ===== STAT CARDS (small 2-col grid) ===== */
.stat-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.stat-card-value { display: block; font-size: 2rem; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.stat-card-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== MISSION / VISION CARDS ===== */
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.mv-icon {
  width: 52px; height: 52px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 1.2rem;
}
.mv-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.mv-card p { color: var(--text-muted); line-height: 1.8; }

/* ===== VALUE CARDS ===== */
.value-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--t);
}
.value-card:hover { box-shadow: var(--shadow); }
.value-card-num { font-size: 2.5rem; font-weight: 900; color: var(--cream-2); line-height: 1; margin-bottom: 12px; }
.value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== TEAM CARDS (about page) ===== */
.team-card { border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: box-shadow var(--t); }
.team-card:hover { box-shadow: var(--shadow); }
.team-card-img { height: 280px; background: var(--cream-2); overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.team-card-initials {
  width: 100%; height: 100%;
  background: var(--dark-3);
  color: var(--white);
  font-size: 2rem; font-weight: 800;
  align-items: center; justify-content: center;
}
.team-card-body { padding: 24px; }
.team-card-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { display: block; font-size: 0.82rem; color: var(--red); font-weight: 600; margin-bottom: 4px; }
.team-quals { display: block; font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.team-card-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ===== COMPETENCY LIST ===== */
.competency-list { display: flex; flex-direction: column; gap: 20px; }
.competency-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--t);
}
.competency-item:hover { box-shadow: var(--shadow-sm); }
.comp-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.competency-item h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.competency-item p { font-size: 0.82rem; color: var(--text-muted); }

/* Solution page single */
.solution-content h2 { margin-bottom: 16px; }
.solution-content p { color: var(--text-muted); margin-bottom: 20px; }
.solution-content h4 { margin: 28px 0 10px; display: flex; align-items: center; gap: 10px; }
.solution-content h4 i { color: var(--red); font-size: 0.9rem; }

/* Inline divider rule */
.rule { height: 1px; background: var(--border); margin: 48px 0; }
.rule-dark { background: var(--border-dark); }

/* Scroll-reveal (JS driven) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PRODUCT HERO ===== */
.product-hero {
  background: var(--dark);
  padding: 130px 0 72px;
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.product-hero-content h1 { color: var(--white); margin-bottom: 18px; }
.product-hero-content .hero-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px; }
.product-tag-hero {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.product-hero-badge { }
.product-hero-stats {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.phs-item { }
.phs-value { display: block; font-size: 1.7rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.phs-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

@media (max-width: 900px) {
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== VALUE CYCLE ===== */
.value-cycle { display: flex; flex-direction: column; gap: 0; }
.vc-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.vc-step:last-child { border-bottom: none; }
.vc-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.9rem;
}
.vc-body h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.vc-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FEATURE CARDS ===== */
.feature-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--t);
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-card-icon {
  width: 44px; height: 44px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
  margin-bottom: 16px;
}
.feature-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CASE STUDY FULL PAGE ===== */
.cs-full { }
.cs-full-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.cs-client-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.cs-full-title { font-size: 1.9rem; font-weight: 800; max-width: 720px; margin-bottom: 40px; line-height: 1.25; }
.cs-full-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: flex-start; }
.cs-full-body h4 { font-size: 1rem; font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.cs-full-body h4:first-child { margin-top: 0; }
.cs-full-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.cs-tech-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.cs-tech-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); }
.cs-tech-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.cs-full-results {
  position: sticky; top: 100px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 24px;
}
.cs-full-results h4 { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }
.cs-result-stat { border-top: 1px solid var(--border-dark); padding-top: 20px; }
.cs-result-value { display: block; font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 6px; }
.cs-result-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }
.cs-cta-inline { border-top: 1px solid var(--border-dark); padding-top: 20px; }
.cs-cta-inline p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }

@media (max-width: 900px) {
  .cs-full-grid { grid-template-columns: 1fr; }
  .cs-full-results { position: static; }
  .cs-full-title { font-size: 1.5rem; }
}

/* ===== CONTACT PAGE ===== */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--red-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.contact-info-item h5 { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-info-item a:hover { color: var(--red); }

/* Form layout */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== SOLUTION PAGE LAYOUT ===== */
.solution-hero-badge {
  display: inline-block;
  background: var(--red-light); color: var(--red);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-full);
  margin-bottom: 18px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col-rev { direction: ltr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 768px) {
  :root { }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .logos-row { gap: 24px; }
  .hero-stats { gap: 24px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hdr { padding: 130px 0 56px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  h1 { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}
