/* ==========================================================================
   IHDATHIYAT.COM — Master Stylesheet
   مؤسسة احداثيات النجاح للتوريد · Manpower Supply
   v1.0 · May 2026
   ========================================================================== */

/* ==========================================================================
   1. Design Tokens (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Brand colors */
  --color-red: #C9302C;
  --color-red-tint: #FDF2F2;
  --color-red-border: #F5D5D3;
  --color-red-shadow: rgba(201, 48, 44, 0.25);

  --color-black: #1A1A1A;
  --color-black-deep: #0F0F0F;
  --color-text: #4A4A4A;
  --color-text-secondary: #5A5A5A;
  --color-text-muted: #8A8A8A;
  --color-text-disabled: #B0B0B0;

  --color-white: #FFFFFF;
  --color-surface: #FAFAF8;
  --color-surface-alt: #F7F7F5;
  --color-border: #E8E8E8;
  --color-input-border: #DEDEDE;

  --color-success: #1F7A3A;
  --color-success-tint: #E6F4EA;
  --color-warning: #D97706;
  --color-warning-tint: #FEF3E7;

  /* Typography */
  --font-arabic: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --font-latin: 'Inter', system-ui, sans-serif;

  /* Spacing scale (8pt grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Border radius */
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --radius-2xl: 12px;
  --radius-full: 100px;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 48px;

  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows (used minimally, only on CTAs and lifted cards) */
  --shadow-cta: 0 2px 8px rgba(201, 48, 44, 0.25);
  --shadow-cta-sm: 0 2px 6px rgba(201, 48, 44, 0.20);
  --shadow-focus: 0 0 0 3px rgba(201, 48, 44, 0.25);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-arabic);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Numbers always render in Inter, even inside Arabic text */
.num,
.num * {
  font-family: var(--font-latin);
  font-feature-settings: "tnum";
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* Focus rings for accessibility */
:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-md);
}

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

/* ==========================================================================
   3. Typography Utilities
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 14px;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-red);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-red);
}

.eyebrow--centered::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-red);
}

.eyebrow--centered {
  justify-content: center;
}

.section-title {
  color: var(--color-black);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}

.text-red { color: var(--color-red); }
.text-black { color: var(--color-black); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }

/* ==========================================================================
   4. Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-8) 0;
}

.section--surface {
  background: var(--color-surface);
}

.section--white {
  background: var(--color-white);
}

.section--black {
  background: var(--color-black);
  color: var(--color-white);
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-arabic);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  background: #B52A26;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 48, 44, 0.35);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn--secondary:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--dark:hover {
  background: #2A2A2A;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-red);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--color-surface);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 12px;
}

.btn--lg {
  padding: 15px 30px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.btn__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   6. Top Utility Bar + Main Navigation
   ========================================================================== */
.utility-bar {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  font-size: 11px;
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  color: var(--color-text-secondary);
}

.utility-bar__left,
.utility-bar__right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.utility-bar__sep {
  color: #D0D0D0;
}

.utility-bar__phone {
  font-family: var(--font-latin);
  direction: ltr;
}

.lang-toggle {
  color: var(--color-red);
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-toggle:hover {
  background: var(--color-red-tint);
  border-color: var(--color-red-border);
}

.nav {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 48px;
  height: 48px;
  background: var(--color-red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-cta);
  flex-shrink: 0;
}

.brand__text {
  line-height: 1.25;
}

.brand__name {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand__caption {
  color: var(--color-text-muted);
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__link {
  color: var(--color-black);
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-red);
  border-color: var(--color-red);
}

.nav__cta {
  margin-inline-start: var(--space-4);
}

/* Mobile hamburger (hidden on desktop) */
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 0;
}

.nav__toggle-line {
  height: 2px;
  background: var(--color-black);
  transition: var(--transition);
  border-radius: 1px;
}

.nav__toggle-line:nth-child(1) { width: 22px; }
.nav__toggle-line:nth-child(2) { width: 22px; }
.nav__toggle-line:nth-child(3) { width: 14px; background: var(--color-red); }

.nav__toggle--open .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle--open .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle--open .nav__toggle-line:nth-child(3) {
  width: 22px;
  background: var(--color-black);
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   7. Hero
   ========================================================================== */
.hero {
  background: var(--color-white);
  padding: 64px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-red-tint);
  border: 1px solid var(--color-red-border);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  color: var(--color-red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero__badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--color-red);
  border-radius: 50%;
}

.hero__title {
  color: var(--color-black);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 20px;
}

.hero__description {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 var(--space-6);
}

.hero__ctas {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-7);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: var(--space-5);
  align-items: center;
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.hero__trust-label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero__trust-badges {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Quick Inquiry Form Card */
.inquiry-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
}

.inquiry-card__bar {
  position: absolute;
  top: -1px;
  inset-inline-end: 24px;
  height: 3px;
  width: 48px;
  background: var(--color-red);
}

.inquiry-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.inquiry-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
}

.inquiry-card__pill {
  font-size: 10px;
  color: var(--color-text-muted);
  font-family: var(--font-latin);
  letter-spacing: 0.5px;
}

.inquiry-card__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ==========================================================================
   8. Form Elements
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-label {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.form-label--required::after {
  content: " *";
  color: var(--color-red);
}

.form-control {
  background: var(--color-white);
  border: 1px solid var(--color-input-border);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--color-black);
  transition: var(--transition);
  width: 100%;
}

.form-control::placeholder {
  color: var(--color-text-disabled);
}

.form-control:hover {
  border-color: #C0C0C0;
}

.form-control:focus {
  border-color: var(--color-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 48, 44, 0.1);
}

.form-control--error {
  border-color: var(--color-red);
}

.form-error {
  font-size: 11px;
  color: var(--color-red);
  margin-top: 4px;
  display: none;
}

.form-error--visible {
  display: block;
}

.form-control--phone {
  font-family: var(--font-latin);
  direction: ltr;
  text-align: right;
}

/* Remove number input spinner arrows (look bad in RTL on the wrong side) */
.form-control[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.form-control[type="number"]::-webkit-outer-spin-button,
.form-control[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

textarea.form-control {
  min-height: 96px;
  resize: vertical;
  line-height: 1.7;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238A8A8A' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-inline-end: 14px;
  padding-inline-start: 32px;
}

.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-red);
  flex-shrink: 0;
}

/* Honeypot (hidden — uses sr-only pattern that doesn't expand the viewport) */
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   9. Stats Strip
   ========================================================================== */
.stats-strip {
  background: var(--color-black);
  padding: 28px 0;
}

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

.stat {
  padding: 0 20px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
  text-align: start;
}

.stat:first-child {
  border-inline-start: none;
}

.stat__value {
  color: var(--color-white);
  font-family: var(--font-latin);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.stat__value--accent {
  color: var(--color-red);
}

.stat__suffix {
  font-size: 18px;
  opacity: 0.7;
}

.stat__label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
  margin-top: 6px;
}

/* ==========================================================================
   10. Sectors Grid
   ========================================================================== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-6);
}

.section-header__copy {
  flex: 1;
  max-width: 720px;
}

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

.sectors-grid--full {
  grid-template-columns: repeat(3, 1fr);
}

.sector-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 26px;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 26px;
  height: 3px;
  width: 36px;
  background: var(--color-red);
}

.sector-card:hover {
  border-color: var(--color-black);
  transform: translateY(-2px);
}

.sector-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.sector-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-red-tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sector-card__num {
  font-family: var(--font-latin);
  color: #C9C9C9;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.sector-card__title {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
}

.sector-card__desc {
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}

.sector-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: var(--color-surface-alt);
  color: var(--color-text-secondary);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.tag--red {
  background: var(--color-red-tint);
  color: var(--color-red);
}

/* Inverted (dark) sector card */
.sector-card--inverted {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.sector-card--inverted .sector-card__icon {
  background: rgba(201, 48, 44, 0.15);
}

.sector-card--inverted .sector-card__num {
  color: rgba(255, 255, 255, 0.3);
}

.sector-card--inverted .sector-card__title {
  color: var(--color-white);
}

.sector-card--inverted .sector-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

.sector-card--inverted:hover {
  border-color: var(--color-red);
}

/* ==========================================================================
   11. Clients / Trust Wall
   ========================================================================== */
.trust-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.trust-summary__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-summary__bar {
  width: 4px;
  height: 38px;
  background: var(--color-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.trust-summary__bar--black {
  background: var(--color-black);
}

.trust-summary__body {
  flex: 1;
}

.trust-summary__eyebrow {
  font-family: var(--font-latin);
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.trust-summary__title {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 700;
}

.trust-summary__count {
  font-family: var(--font-latin);
  color: var(--color-black);
  font-size: 22px;
  font-weight: 700;
}

/* ==========================================================================
   Client Marquee — animated text strip with red-card hover.
   Two rows scrolling in opposite directions. Pause on hover. Cards turn
   red with white text when an individual cell is hovered.
   Each row's content is duplicated in the HTML so translateX(-50%) creates
   a seamless infinite loop.
   ========================================================================== */
.client-marquee {
  position: relative;
  padding: 44px 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 2;
}

.client-marquee::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--color-white), rgba(255, 255, 255, 0));
}

[dir="rtl"] .client-marquee::before {
  background: linear-gradient(to left, var(--color-white), rgba(255, 255, 255, 0));
}

.client-marquee::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, var(--color-white), rgba(255, 255, 255, 0));
}

[dir="rtl"] .client-marquee::after {
  background: linear-gradient(to right, var(--color-white), rgba(255, 255, 255, 0));
}

.client-marquee__row {
  display: flex;
  gap: 44px;
  align-items: center;
  width: max-content;
  will-change: transform;
  padding: 8px 0;
}

.client-marquee__row--ltr {
  animation: client-scroll-l 50s linear infinite;
}

.client-marquee__row--rtl {
  animation: client-scroll-r 55s linear infinite;
  margin-top: 28px;
}

.client-marquee:hover .client-marquee__row {
  animation-play-state: paused;
}

@keyframes client-scroll-l {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes client-scroll-r {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.client-marquee__cell {
  flex-shrink: 0;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-arabic);
  font-weight: 600;
  font-size: 16px;
  color: #4A4A4A;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.client-marquee__cell--en {
  font-family: var(--font-latin);
  letter-spacing: -0.3px;
}

/* Premium gradient card on hover — three-color diagonal gradient with
   layered shadows (outer glow + edge definition + inner top highlight)
   to create a depth/material effect rather than a flat colour swap. */
.client-marquee__cell:hover {
  background: linear-gradient(135deg, #D9534F 0%, #C9302C 50%, #A02622 100%);
  color: #FFFFFF;
  border-color: rgba(201, 48, 44, 0.4);
  box-shadow:
    0 4px 12px rgba(201, 48, 44, 0.35),
    0 1px 2px rgba(201, 48, 44, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-2px) scale(1.04);
  letter-spacing: 0.3px;
}

.client-marquee__cell--en:hover {
  letter-spacing: 0.1px;
}

/* Centred CTA below the marquee */
.client-marquee__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.client-marquee__cta .num {
  color: var(--color-red);
  font-weight: 800;
  font-size: 15px;
}

.client-marquee__cta:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* Respect users who prefer reduced motion (WCAG accessibility). */
@media (prefers-reduced-motion: reduce) {
  .client-marquee__row {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .client-marquee::before,
  .client-marquee::after {
    display: none;
  }
}

/* Testimonial block */
.testimonial {
  background: var(--color-black);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
}

.testimonial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.testimonial__quote {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 18px;
  font-weight: 500;
}

.testimonial__icon {
  margin-bottom: 14px;
  color: var(--color-red);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial__avatar {
  width: 38px;
  height: 38px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial__name {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.testimonial__role {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  margin-top: 2px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kpi {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.kpi__value {
  font-family: var(--font-latin);
  color: var(--color-red);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.kpi__suffix {
  font-size: 16px;
}

.kpi__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 500;
}

/* ==========================================================================
   12. Trust Badges (Government accreditations)
   ========================================================================== */
.trust-badge {
  height: 24px;
  padding: 0 10px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.trust-badge--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  height: auto;
  padding: 8px 14px;
}

/* ==========================================================================
   13. Pre-footer CTA Strip
   ========================================================================== */
.cta-strip {
  background: var(--color-red);
  padding: 32px var(--container-padding);
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 28px;
  align-items: center;
}

.cta-strip__title {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}

.cta-strip__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   14. Footer
   ========================================================================== */
.footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.6);
}

.footer__main {
  padding: 56px var(--container-padding) 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer__brand .brand__name {
  color: var(--color-white);
}

.footer__brand .brand__caption {
  color: rgba(255, 255, 255, 0.5);
}

.footer__about {
  font-size: 13px;
  line-height: 1.85;
  margin: 0 0 22px;
}

.footer__socials {
  display: flex;
  gap: var(--space-2);
}

.footer__social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__social:hover {
  background: rgba(201, 48, 44, 0.15);
  border-color: var(--color-red);
  color: var(--color-white);
}

.footer__heading {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer__heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  inset-inline-end: 0;
  width: 28px;
  height: 1px;
  background: var(--color-red);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--color-red);
  padding-inline-start: 4px;
}

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

.footer__contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer__contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(201, 48, 44, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__contact-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-bottom: 2px;
}

.footer__contact-value {
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.5;
}

.footer__contact-value--lg {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-latin);
  direction: ltr;
}

.footer__certifications {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__cert-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  font-family: var(--font-latin);
}

.footer__cert-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__bottom {
  background: var(--color-black-deep);
  padding: 18px var(--container-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer__copyright,
.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer__legal {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer__legal a:hover {
  color: var(--color-red);
}

.footer__sep {
  color: rgba(255, 255, 255, 0.2);
}

.footer__designed {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-family: var(--font-latin);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   15. Page Header (interior pages)
   ========================================================================== */
.page-header {
  background: var(--color-black);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  height: 4px;
  width: 240px;
  background: var(--color-red);
}

.page-header__decoration {
  position: absolute;
  bottom: -50px;
  inset-inline-start: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 48, 44, 0.15);
  transform: rotate(45deg);
  pointer-events: none;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb__current {
  color: var(--color-red);
}

.page-header__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-header__title {
  color: var(--color-white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.page-header__lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

/* ==========================================================================
   16. About-page specific
   ========================================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.story-stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  position: relative;
}

.story-stat::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 16px;
  height: 2px;
  width: 24px;
  background: var(--color-red);
}

.story-stat__value {
  font-family: var(--font-latin);
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.story-stat__label {
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 500;
}

.timeline-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  inset-inline-end: 9px;
  width: 2px;
  background: var(--color-border);
}

.timeline__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  position: relative;
}

.timeline__dot {
  width: 20px;
  height: 20px;
  background: var(--color-white);
  border: 2px solid var(--color-red);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 2;
  margin-top: 2px;
}

.timeline__dot--filled {
  background: var(--color-red);
  border: 4px solid var(--color-surface);
}

.timeline__year {
  font-family: var(--font-latin);
  font-size: 11px;
  color: var(--color-red);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline__title {
  font-size: 13px;
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vm-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.vm-card--white {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.vm-card--black {
  background: var(--color-black);
  color: var(--color-white);
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 60px;
  height: 4px;
  background: var(--color-red);
}

.vm-card__label {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-red);
  margin-bottom: 16px;
}

.vm-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.3;
}

.vm-card__desc {
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

.vm-card--white .vm-card__title { color: var(--color-black); }
.vm-card--black .vm-card__title { color: var(--color-white); }
.vm-card--black .vm-card__desc { color: rgba(255, 255, 255, 0.75); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.value-card__num {
  position: absolute;
  top: 12px;
  inset-inline-end: 18px;
  font-family: var(--font-latin);
  font-size: 60px;
  font-weight: 700;
  color: rgba(201, 48, 44, 0.08);
  line-height: 1;
  pointer-events: none;
}

.value-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.value-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}

.process-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
}

.process-step__num {
  width: 32px;
  height: 32px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.process-step__num--outline {
  background: var(--color-white);
  border: 2px solid var(--color-red);
  color: var(--color-red);
}

.process-step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 6px;
}

.process-step__desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   17. Sector Detail Page
   ========================================================================== */
.sector-hero {
  background: var(--color-black);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.sector-hero::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 240px;
  height: 4px;
  background: var(--color-red);
}

.sector-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.sector-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 48, 44, 0.15);
  border: 1px solid rgba(201, 48, 44, 0.3);
  padding: 5px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  color: var(--color-red);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-latin);
  letter-spacing: 1px;
}

.sector-hero__title {
  color: var(--color-white);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
}

.sector-hero__lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 28px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-stat {
  border-inline-start: 2px solid var(--color-red);
  padding-inline-start: 12px;
}

.mini-stat__value {
  color: var(--color-white);
  font-family: var(--font-latin);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.mini-stat__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  margin-top: 4px;
}

/* Specializations grid */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spec-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.spec-card:hover {
  border-color: var(--color-black);
}

.spec-card__icon {
  width: 40px;
  height: 40px;
  background: var(--color-red-tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-red);
}

.spec-card__body {
  flex: 1;
  min-width: 0;
}

.spec-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.spec-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.spec-card__avail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.spec-card__avail--available {
  background: var(--color-success-tint);
  color: var(--color-success);
}

.spec-card__avail--limited {
  background: var(--color-warning-tint);
  color: var(--color-warning);
}

.spec-card__avail::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.spec-card__desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 8px;
}

.spec-card__count {
  font-family: var(--font-latin);
  font-size: 12px;
  color: var(--color-red);
  font-weight: 600;
}

/* ----------------------------------------------------------------------
   Dark section override — when spec-card or process-step appear inside a
   .section--dark wrapper, flip their colours so they read on black.
   Used on the service detail pages for the 4-step process band.
   ---------------------------------------------------------------------- */
.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section--dark .section-title {
  color: var(--color-white);
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .process-step,
.section--dark .process-timeline .process-step {
  background: transparent;
  border: none;
  padding: 0;
}

.section--dark .process-step__title {
  color: var(--color-white);
}

.section--dark .process-step__desc {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .process-step__num--outline {
  background: transparent;
  border: 2px solid var(--color-red);
  color: var(--color-red);
}

/* Why us list */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-item__icon {
  width: 24px;
  height: 24px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 4px;
}

.why-item__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--color-red);
  border-width: 2px;
}

.pricing-card__badge {
  position: absolute;
  top: -10px;
  inset-inline-end: 16px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  letter-spacing: 0.5px;
}

.pricing-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 4px;
}

.pricing-card__period {
  font-family: var(--font-latin);
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.pricing-card__feature svg {
  color: var(--color-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   18. Contact page
   ========================================================================== */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.channel-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.channel-card:hover {
  border-color: var(--color-red);
  transform: translateY(-2px);
}

.channel-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-red-tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  margin-bottom: 16px;
}

.channel-card__label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  font-family: var(--font-latin);
  margin-bottom: 6px;
}

.channel-card__value {
  font-size: 14px;
  color: var(--color-black);
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.5;
}

.channel-card__value--ltr {
  font-family: var(--font-latin);
  direction: ltr;
}

.channel-card__sub {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: auto;
  padding-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-form__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 6px;
}

.contact-form__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0 0 28px;
  line-height: 1.7;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-form__group-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 1.5px;
  font-family: var(--font-latin);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__row--triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.contact-form__guarantee {
  font-size: 12px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form__guarantee svg {
  color: var(--color-success);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fast-track {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.fast-track::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 4px;
  background: var(--color-red);
}

.fast-track__label {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-red);
  margin-bottom: 12px;
}

.fast-track__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.fast-track__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
  line-height: 1.7;
}

.fast-track__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}

.fast-track__btn:hover {
  background: #1FBC59;
}

.hours-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.hours-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hours-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-success-tint);
  color: var(--color-success);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(31, 122, 58, 0.2);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.hours-row__day {
  color: var(--color-text-secondary);
}

.hours-row__time {
  color: var(--color-black);
  font-family: var(--font-latin);
  font-weight: 500;
}

.map-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-mock {
  height: 200px;
  background:
    linear-gradient(to bottom, #F0F0EE 0%, #E8E8E5 100%);
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-mock__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--color-red);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.map-card__body {
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
}

.map-card__address {
  font-size: 13px;
  color: var(--color-black);
  font-weight: 600;
  margin-bottom: 4px;
}

.map-card__hint {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   19. Toast notifications
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  border-inline-start: 4px solid var(--color-red);
  max-width: 360px;
}

.toast--visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--success {
  border-inline-start-color: var(--color-success);
}

.toast--success .toast__icon {
  color: var(--color-success);
}

/* ==========================================================================
   20. Mobile bottom navigation
   ========================================================================== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  background: var(--color-black);
  border-top: 2px solid var(--color-red);
  z-index: 90;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

.bottom-nav__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  position: relative;
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.bottom-nav__item--active,
.bottom-nav__item:hover {
  color: var(--color-white);
}

.bottom-nav__item svg {
  width: 18px;
  height: 18px;
}

.bottom-nav__fab {
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(201, 48, 44, 0.4);
  margin: -24px auto 0;
  border: 4px solid var(--color-black);
}

.bottom-nav__fab svg {
  width: 22px;
  height: 22px;
}

.bottom-nav__fab-label {
  position: absolute;
  bottom: -16px;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Sticky pre-footer mobile bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 78px;
  inset-inline-start: 16px;
  inset-inline-end: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 89;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-cta__text {
  font-size: 12px;
  color: var(--color-black);
  font-weight: 600;
  flex: 1;
}

/* ==========================================================================
   21. Mobile menu drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  inset-inline-end: -100%;
  width: 88%;
  max-width: 360px;
  height: 100%;
  background: var(--color-white);
  z-index: 200;
  transition: inset-inline-end 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-drawer--open {
  inset-inline-end: 0;
}

.mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
}

.mobile-drawer__menu {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.mobile-drawer__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-border);
}

.mobile-drawer__link:last-child {
  border-bottom: none;
}

.mobile-drawer__foot {
  padding: 24px;
  border-top: 1px solid var(--color-border);
}

/* Language toggle in mobile drawer foot — visible only on mobile (drawer
   itself is mobile-only). The two spans give the language name and short
   code, separated, so it works in both LTR and RTL. */
.mobile-drawer__lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: var(--transition);
}

.mobile-drawer__lang:hover {
  background: var(--color-white);
  border-color: var(--color-red);
  color: var(--color-red);
}

.mobile-drawer__lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 3px;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay--open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   22. Animations
   ========================================================================== */
/* Reveal elements default to visible — JS adds .reveal--ready to enable
   the fade-in animation only when JS has loaded successfully. This prevents
   a blank page if JS fails or is disabled (especially on older mobile browsers). */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal--ready {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal--ready.reveal--visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   23. Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --container-padding: 32px;
  }

  .hero__title { font-size: 38px; }
  .hero__grid { gap: 32px; }

  .sectors-grid,
  .sectors-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-marquee {
    padding: 36px 0;
  }

  .client-marquee__row {
    gap: 32px;
  }

  .client-marquee__row--rtl {
    margin-top: 20px;
  }

  .client-marquee__cell {
    padding: 9px 16px;
    font-size: 14px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid,
  .why-list,
  .vision-mission {
    grid-template-columns: 1fr;
  }

  .sector-hero__grid {
    grid-template-columns: 1fr;
  }

  .testimonial__grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  /* Defensive: prevent any element from forcing the viewport wider than the screen.
     This stops the page from rendering "zoomed out" on mobile when a child element
     somehow exceeds the viewport (long unbreakable URLs, wide tables, etc.). */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  img, svg, video, iframe, table {
    max-width: 100%;
    height: auto;
  }

  /* Allow long unbreakable strings (emails, URLs, English brand names) to wrap */
  p, h1, h2, h3, h4, h5, h6, span, a, td, th, li {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  body {
    padding-bottom: 90px;
  }

  /* Hide desktop nav, show mobile */
  .nav__menu,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .utility-bar {
    display: none;
  }

  .nav__inner {
    padding: 14px 0;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .brand__name {
    font-size: 13px;
  }

  .brand__caption {
    font-size: 9px;
    letter-spacing: 1.4px;
  }

  /* Hero */
  .hero {
    padding: 32px 0 24px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero__description {
    font-size: 14px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Stats */
  .stats-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat {
    border-inline-start: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat:nth-child(odd) {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
    padding-inline-end: 12px;
  }

  .stat:nth-child(even) {
    padding-inline-start: 12px;
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat__value {
    font-size: 24px;
  }

  /* Sections */
  .section-title {
    font-size: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Sectors grid */
  .sectors-grid,
  .sectors-grid--full {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sector-card {
    padding: 18px;
  }

  .sector-card__title {
    font-size: 14px;
  }

  .sector-card__desc {
    font-size: 12px;
  }

  /* Trust */
  .trust-summary {
    grid-template-columns: 1fr;
  }

  .client-marquee {
    padding: 30px 0;
  }

  .client-marquee__row {
    gap: 24px;
  }

  .client-marquee__row--rtl {
    margin-top: 16px;
  }

  .client-marquee__cell {
    padding: 8px 14px;
    font-size: 13px;
  }

  .testimonial {
    padding: 24px;
  }

  .testimonial__quote {
    font-size: 15px;
  }

  /* CTA strip */
  .cta-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__main {
    padding: 40px 20px 24px;
  }

  .footer__bottom {
    padding: 16px 20px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Page header */
  .page-header {
    padding: 32px 0;
  }

  .page-header__title {
    font-size: 26px;
  }

  /* Story / About */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Sector detail */
  .sector-hero__title {
    font-size: 26px;
  }

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

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

  /* Show mobile nav and CTA */
  .bottom-nav {
    display: block;
  }

  .mobile-cta {
    display: flex;
  }

  .channel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .contact-form__row,
  .contact-form__row--triple {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 24px;
  }

  .stats-strip__grid {
    gap: 16px;
  }

  .client-marquee {
    padding: 24px 0;
  }

  .client-marquee__row {
    gap: 18px;
  }

  .client-marquee__row--rtl {
    margin-top: 12px;
  }

  .client-marquee__cell {
    padding: 7px 12px;
    font-size: 12px;
  }

  .client-marquee::before,
  .client-marquee::after {
    width: 60px;
  }

  .sectors-grid,
  .sectors-grid--full {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   24. Print
   ========================================================================== */
@media print {
  .nav,
  .bottom-nav,
  .mobile-cta,
  .cta-strip,
  .footer {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   25. Contact page additions
   ========================================================================== */
.section--tight {
  padding: 36px 0 24px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.channels-grid .channel-card {
  text-decoration: none;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin: 18px 0;
  cursor: pointer;
}

.consent-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-red);
  cursor: pointer;
}

.consent-row__text {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.link-accent {
  color: var(--color-red);
  font-weight: 600;
  text-decoration: none;
}

.link-accent:hover {
  text-decoration: underline;
}

.hours-row__off {
  color: var(--color-red);
  font-weight: 600;
  font-size: 12px;
}

.map-mock__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, #DEDEDA 1px, transparent 1px),
    linear-gradient(90deg, #DEDEDA 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.map-mock__block {
  position: absolute;
  background: #DCDCD6;
  border-radius: 2px;
}

.map-mock__block--1 {
  top: 30%;
  left: 20%;
  width: 35%;
  height: 12%;
}

.map-mock__block--2 {
  top: 55%;
  left: 35%;
  width: 28%;
  height: 18%;
}

.map-mock__block--3 {
  top: 20%;
  left: 60%;
  width: 22%;
  height: 25%;
}

.map-mock__pin-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--color-white);
  border-radius: 50%;
  transform: rotate(45deg);
}

.map-mock__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--color-black);
  font-weight: 600;
  z-index: 2;
}

.map-card__link {
  display: inline-block;
  background: transparent;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.map-card__link:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.btn__arrow {
  display: inline-block;
  margin-inline-start: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* ==========================================================================
   26. Sector detail page additions
   ========================================================================== */
.sector-hero__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px;
  position: relative;
}

.sector-hero__form::before {
  content: '';
  position: absolute;
  top: 0;
  right: 24px;
  height: 3px;
  width: 40px;
  background: var(--color-red);
}

.sector-hero__form-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.sector-hero__form-title {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

.sector-hero__field {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--color-white);
  font-family: inherit;
  margin-bottom: 8px;
}

/* Select dropdown options must have a solid bg or they're invisible on the dark form */
.sector-hero__field option {
  background: #1A1A1A;
  color: var(--color-white);
}

/* Override browser default highlight on selected/hovered option which can
   render as dark blue on white text — making text invisible. Force a visible
   contrast pair. Note: native select option styling support is limited, so
   the most reliable fix is to ensure option text is high-contrast and the
   placeholder option uses the brand red as a visual cue. */
.sector-hero__field option:checked,
.sector-hero__field option:hover {
  background: var(--color-red) linear-gradient(0deg, var(--color-red), var(--color-red));
  color: var(--color-white);
}

/* When a placeholder (empty value) is selected, show it with reduced opacity
   so the user knows it's not a real choice yet. */
.sector-hero__field:invalid {
  color: rgba(255,255,255,0.5);
}

/* Hide number-input spinner arrows on dark form (look broken in RTL) */
.sector-hero__field[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.sector-hero__field[type="number"]::-webkit-outer-spin-button,
.sector-hero__field[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.sector-hero__field::placeholder {
  color: rgba(255,255,255,0.5);
}

.sector-hero__field:focus {
  outline: none;
  border-color: var(--color-red);
}

.sector-hero__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sector-hero__submit {
  width: 100%;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s ease;
}

.sector-hero__submit:hover {
  background: #B22824;
}

/* Pricing table for sector pages */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.pricing-table thead tr {
  background: var(--color-black);
}

.pricing-table th {
  padding: 12px 14px;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.pricing-table th:last-child {
  text-align: left;
}

.pricing-table td {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.pricing-table td:last-child {
  text-align: left;
  color: var(--color-red);
  font-weight: 600;
  font-size: 11px;
}

.pricing-table tr.is-featured {
  background: var(--color-red-tint);
}

.pricing-table tr.is-featured td:first-child {
  color: var(--color-black);
  font-weight: 700;
}

.pricing-badge-inline {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 2px;
  margin-inline-start: 6px;
  vertical-align: middle;
}

.pricing-info {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px;
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--color-text);
  line-height: 1.6;
}

.pricing-info__icon {
  width: 28px;
  height: 28px;
  background: var(--color-red-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-red);
}

.pricing-info strong {
  color: var(--color-black);
  font-weight: 700;
}

/* Two-column why+pricing layout */
.why-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 1024px) {
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }
}

/* Sector specs section title */
.section-title-block {
  margin-bottom: 32px;
}

.section-title-block .section-title {
  margin: 0 0 8px;
  font-size: 28px;
}

.section-title-block .section-subtitle {
  margin: 0;
  max-width: 640px;
}

/* Process timeline horizontal */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  right: calc(12.5% + 16px);
  left: calc(12.5% + 16px);
  height: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.process-timeline .process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.process-timeline .process-step__num {
  margin: 0 auto 16px;
}

.process-timeline .process-step__title {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-timeline .process-step__desc {
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-timeline::before {
    display: none;
  }
}

/* Quote/testimonial in dark section (sector pages) */
.sector-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.sector-quote::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--color-red);
}

.sector-quote__icon {
  color: var(--color-red);
  margin-bottom: 14px;
}

.sector-quote__text {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 18px;
  font-weight: 500;
}

.sector-quote__attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sector-quote__avatar {
  width: 38px;
  height: 38px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
}

.sector-quote__name {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
}

.sector-quote__role {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

/* 404 page */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-page__num {
  font-family: 'Inter', sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-red);
  margin: 0 0 16px;
  letter-spacing: -2px;
}

.error-page__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 12px;
}

.error-page__desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.error-page__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .error-page__num {
    font-size: 80px;
  }
}

/* sector hero badge dot */
.sector-hero__badge-dot {
  width: 5px;
  height: 5px;
  background: var(--color-red);
  border-radius: 50%;
}

.mini-stat__unit {
  font-size: 14px;
  opacity: 0.7;
  font-weight: 700;
}

.pricing-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px;
  position: relative;
}

.pricing-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 28px;
  height: 3px;
  width: 48px;
  background: var(--color-red);
}


/* ==========================================================================
   27. English / LTR Mode Overrides
   ========================================================================== */
html[lang="en"] body,
[dir="ltr"] body {
  font-family: var(--font-latin);
}

[dir="ltr"] .brand__name--en {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

[dir="ltr"] .text-red {
  color: var(--color-red);
}

/* Mirror the eyebrow line position in LTR */
[dir="ltr"] .eyebrow::before {
  margin-right: 12px;
  margin-left: 0;
}

[dir="ltr"] .eyebrow--centered::before,
[dir="ltr"] .eyebrow--centered::after {
  margin: 0 12px;
}

/* Process timeline LTR — line goes left to right */
[dir="ltr"] .process-timeline::before {
  right: auto;
  left: calc(12.5% + 16px);
  width: calc(75% - 32px);
}

/* Footer brand caption LTR alignment */
[dir="ltr"] .footer__contact-row {
  text-align: left;
}

/* Hero badge corner adjustment */
[dir="ltr"] .hero__badge {
  text-align: left;
}

/* Form fields LTR */
[dir="ltr"] .form-control--phone {
  direction: ltr;
  text-align: left;
}

/* Sector card top-right bar — keep on the same visual right side in LTR */
[dir="ltr"] .sector-card__bar {
  right: 26px;
  left: auto;
}

/* Bottom-nav arrow chevrons reversed for LTR are in HTML directly using → */






/* ==========================================================================
   28. Mobile Redesign — matches the brand mobile mockup.
   - Hero is dark with white headline and red accents.
   - Trust badges become a surface-coloured band at the bottom of the hero
     (using flex order to push them after the CTAs).
   - Stats become a 2x2 grid of cards on a white background; the 24h card
     is solid black to stand out.
   - Inquiry form lives in its own section (.hero-form-section) which the
     HTML places between stats and sectors. Hidden on desktop, shown on
     mobile so the desktop layout is untouched.
   - Sectors render in a 2x2 grid; the "+7 more" card stays inverted.
   ========================================================================== */

/* The mobile-only inquiry form section — hidden by default on desktop.
   The !important guards against any accidental specificity issue from new
   sections rendered above; this block must NEVER appear when desktop
   layout is in effect. */
.hero-form-section {
  display: none !important;
}

@media (max-width: 768px) {

  /* ---- Hero: dark background, taller, white text ---- */
  .hero {
    background: var(--color-black);
    padding: 24px 0 0;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* The first child of hero__grid wraps badge/title/desc/CTAs/trust.
     Make IT a flex column so we can `order` the trust band to the end. */
  .hero__grid > div:first-child {
    display: flex;
    flex-direction: column;
  }

  /* Outlined red badge on the dark hero */
  .hero__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .hero__badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
    margin-inline-end: 8px;
  }

  /* White headline with a small red underline accent */
  .hero__title {
    color: var(--color-white);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 18px;
  }

  .hero__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 36px;
    height: 2px;
    background: var(--color-red);
  }

  .hero__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.85;
    margin: 0 0 22px;
  }

  /* Full-width stacked CTAs */
  .hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
    justify-content: center;
  }

  .hero__ctas .btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero__ctas .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  /* Inquiry-card aside inside hero is hidden on mobile —
     a separate copy renders in .hero-form-section below the stats. */
  .hero .inquiry-card {
    display: none;
  }

  /* Trust band: pushed to the end of the hero column via flex order,
     restyled as a full-width surface-coloured strip. */
  .hero__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-surface);
    margin: 24px calc(-1 * var(--container-padding)) 0;
    padding: 20px var(--container-padding) 24px;
    gap: 10px;
    order: 999;
  }

  .hero__trust-label {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 500;
  }

  .hero__trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .hero__trust-badges .trust-badge {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-black);
    font-size: 11px;
    padding: 6px 12px;
    font-weight: 500;
  }

  /* ---- Stats strip: 2x2 white cards on a white background ---- */
  .stats-strip {
    background: var(--color-white);
    padding: 24px 0;
  }

  .stats-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Reset all the desktop borders the .stat element uses */
  .stat {
    background: var(--color-surface);
    border: 1px solid var(--color-border) !important;
    border-radius: 8px;
    padding: 22px 18px 18px;
    text-align: center;
    position: relative;
    border-inline-start: 1px solid var(--color-border) !important;
    border-inline-end: 1px solid var(--color-border) !important;
    padding-inline-start: 18px !important;
    padding-inline-end: 18px !important;
  }

  /* Tiny red accent bar on top of each card */
  .stat::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: var(--color-red);
  }

  .stat__value {
    color: var(--color-black);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
  }

  /* The "24h" stat is solid black to stand out */
  .stat:has(.stat__value--accent) {
    background: var(--color-black);
    border-color: var(--color-black) !important;
  }

  .stat:has(.stat__value--accent) .stat__value {
    color: var(--color-red);
  }

  .stat:has(.stat__value--accent) .stat__label {
    color: rgba(255, 255, 255, 0.7);
  }

  .stat__label {
    color: var(--color-text-secondary);
    font-size: 12px;
  }

  /* ---- Inquiry form section (only shown on mobile) ---- */
  .hero-form-section {
    display: block !important;
    background: var(--color-white);
    padding: 0 0 16px;
  }

  .hero-form-section .inquiry-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    margin: 0;
    padding: 22px 20px;
  }

  /* ---- Sectors grid: 2x2 with the inverted "+7 more" card ---- */
  .sectors-grid,
  .sectors-grid--full {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sector-card {
    padding: 18px 14px;
    min-height: 140px;
  }

  .sector-card__title {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .sector-card__desc {
    display: none;
  }

  .sector-card__tags {
    margin-top: auto;
    flex-wrap: wrap;
    gap: 6px;
  }

  .sector-card__tags .tag:nth-child(2) {
    display: none;
  }

  .sector-card__tags .tag {
    font-size: 10px;
    padding: 4px 8px;
  }

  .sector-card__num {
    font-size: 11px;
  }

  .sector-card__icon {
    width: 36px;
    height: 36px;
  }

  .sector-card__icon svg {
    width: 18px;
    height: 18px;
  }

  /* The "+7 more sectors" inverted card */
  .sector-card--inverted {
    background: var(--color-black);
  }

  .sector-card--inverted .sector-card__num {
    color: var(--color-red);
    font-size: 22px;
    font-weight: 700;
  }

  .sector-card--inverted .sector-card__title {
    color: var(--color-white);
    font-size: 13px;
  }

  .sector-card--inverted .btn {
    background: transparent;
    color: var(--color-red);
    padding: 0;
    font-size: 12px;
    box-shadow: none;
    height: auto;
  }

  .sector-card--inverted .btn:hover {
    background: transparent;
  }

  /* The "all sectors →" header CTA is redundant on mobile */
  .section-header > .btn--secondary {
    display: none;
  }

  /* ---- Section spacing & headings ---- */
  .section {
    padding: 32px 0;
  }

  .section-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 13px;
  }

  /* ---- Pre-footer CTA strip: stacked, centered ---- */
  .cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 20px;
    gap: 14px;
  }

  .cta-strip__title {
    font-size: 18px;
  }

  .cta-strip__desc {
    font-size: 13px;
  }

  .cta-strip .btn {
    width: 100%;
    justify-content: center;
  }
}
