/* ==========================================================================
   من الصفر إلى الواحد — Dark Homepage
   Author stylesheet. Organised as:
   1. Design tokens      5. Buttons & links
   2. Reset & base       6. Header / Nav
   3. Typography         7. Sections 01–08
   4. Layout & container 8. Utilities & responsive
   ========================================================================== */

/* ============================ 1. Design tokens =========================== */
:root {
  /* Brand colours (from Figma variables) */
  --bg-dark:        #011e22;
  --bg-dark-2:      #031214;
  --accent:         #12c7d7;
  --bg-light:       #f4f1e5;
  --warning:        #ff6346;
  --white:          #ffffff;
  --ink:            #061719;
  --muted-dark:     #8fb0b2;
  --muted-light:    #5c6b69;
  --border-dark:    #1c4547;
  --border-light:   #ccccbf;
  /* Darker teal for small accent text on the light background (AA contrast) */
  --accent-ink:     #0a6c74;

  /* Fluid type scale (min .. max) */
  --fs-display: clamp(2.4rem, 1.5rem + 4.1vw, 4.9rem);
  --fs-h1:      clamp(2rem, 1.35rem + 3vw, 3.85rem);
  --fs-h2:      clamp(1.5rem, 1.2rem + 1.7vw, 2.5rem);
  --fs-h3:      clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-metric:  clamp(1.95rem, 1.4rem + 2.5vw, 2.85rem);
  --fs-lead:    clamp(1rem, 0.94rem + 0.3vw, 1.125rem);
  --fs-body:    0.9375rem;
  --fs-label:   0.75rem;
  --fs-eyebrow: clamp(0.9rem, 0.82rem + 0.35vw, 1.05rem);

  /* Rhythm */
  --section-pad: clamp(64px, 8vw, 120px);
  --gap:         clamp(24px, 4vw, 64px);
  --radius:      14px;
  --radius-sm:   8px;

  --container:   1440px;
  --pad-inline:  clamp(20px, 4.5vw, 64px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================ 2. Reset & base ============================ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
  font-family: "Alexandria", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--white);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; padding: 0; }

button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Keep every numeral rendered as western/English digits */
[dir="ltr"] { unicode-bidi: isolate; }

.skip-link {
  position: absolute;
  right: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* Google Tag Manager <noscript> fallback — hidden without an inline style
   attribute (kept out of markup so the strict no-inline-style CSP holds). */
.gtm-noscript { display: none; width: 0; height: 0; border: 0; }

/* No-JS contact-form result page (served by send.php) */
.form-fallback { min-height: 100vh; display: grid; place-content: center; text-align: center; gap: 1.2rem; }
.form-fallback .note { max-width: 46ch; margin-inline: auto; }

/* ============================ 3. Typography ============================= */
.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow--accent { color: var(--accent); }

/* Accent text sitting on the light cream background must use the darker teal
   to satisfy WCAG AA contrast (bright cyan is too light on cream).
   Component-level colours below also use --accent-ink for the same reason. */
.section--light .eyebrow--accent { color: var(--accent-ink); }

.section-title {
  font-size: var(--fs-h2);
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.note-strong {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted-light);
}
.note {
  color: var(--muted-light);
  line-height: 1.75;
  margin-top: 0.75rem;
}

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

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

.section--dark   { background: var(--bg-dark);  color: var(--white); }
.section--light  { background: var(--bg-light); color: var(--ink); }
.section--accent { background: var(--accent);   color: var(--ink); }
.section--footer { background: var(--bg-dark-2); color: var(--white); }

/* Shared section header (heading on the start side, note on the end side) */
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.75fr);
  gap: var(--gap);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head__main { order: 1; }
.section-head__note { order: 2; padding-top: 0.5rem; }
.section--dark .note { color: var(--muted-dark); }
.section--dark .note-strong { color: var(--muted-dark); }

.section-foot {
  margin-top: clamp(40px, 5vw, 72px);
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  font-size: var(--fs-lead);
}

/* ============================ 5. Buttons & links ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.6em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn span { transition: transform .2s var(--ease); }
.btn:hover span { transform: translateX(-4px); }

.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { box-shadow: 0 8px 24px rgba(18, 199, 215, .3); }

.btn--dark { background: var(--bg-dark); color: var(--white); }
.btn--dark:hover { box-shadow: 0 8px 24px rgba(1, 30, 34, .35); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  color: var(--muted-dark);
  transition: color .2s var(--ease);
}
.link-arrow span { transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--white); }
.link-arrow:hover span { transform: translateX(-4px); }

/* ============================ 6. Header / Nav =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(6, 23, 25, 0.06);
  transition: border-color .3s var(--ease), background .3s var(--ease),
              transform .35s var(--ease), opacity .35s var(--ease), visibility .35s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: rgba(6, 23, 25, 0.12); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  font-weight: 650;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav { margin-inline-start: auto; }
.nav__list { display: flex; gap: clamp(20px, 2.4vw, 40px); }
.nav__list a {
  font-size: 0.9rem;
  color: var(--ink);
  transition: color .2s var(--ease);
  position: relative;
}
.nav__list a:hover { color: var(--accent-ink); }
.header__location {
  font-size: 0.8rem;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-inline-start: auto;
}

/* Logo lockup (rings mark + wordmark) */
.brand { display: inline-flex; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { height: 42px; width: auto; flex-shrink: 0; }
.logo__wm { display: flex; flex-direction: column; line-height: 1.08; }
.logo__wm b { font-weight: 650; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); }
.logo__wm i {
  font-style: normal; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--accent-ink);
}

/* Header hides once past the hero — only the floating burger remains */
/* Past the hero the header slides away — visibility:hidden (deferred by the
   transition) also drops it from the tab order so it isn't a hidden keyboard trap. */
body.past-hero .site-header { transform: translateY(-100%); opacity: 0; pointer-events: none; visibility: hidden; }

/* Floating circular burger (appears only past the hero) */
.menu-fab {
  position: fixed;
  top: clamp(14px, 2.4vw, 22px);
  inset-inline-end: clamp(16px, 3vw, 30px);
  z-index: 60;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease),
              background-color .35s var(--ease), color .35s var(--ease);
}
body.past-hero .menu-fab { opacity: 1; visibility: visible; }
/* Auto-contrast: light fab over dark bg, dark fab over light/accent bg */
.menu-fab.on-dark  { background: var(--white);   color: var(--ink); }
.menu-fab.on-light { background: var(--bg-dark);  color: var(--white); }
.menu-fab__lines { display: flex; flex-direction: column; gap: 5px; }
.menu-fab__lines span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.menu-fab[aria-expanded="true"] .menu-fab__lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-fab[aria-expanded="true"] .menu-fab__lines span:nth-child(2) { opacity: 0; }
.menu-fab[aria-expanded="true"] .menu-fab__lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Side drawer (off-canvas) ---- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(1, 12, 14, 0.66);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.drawer-scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(360px, 86vw);
  z-index: 70;
  display: flex;
  flex-direction: column;
  padding: 22px clamp(22px, 4vw, 34px) 34px;
  background: var(--bg-dark-2);           /* solid — no transparency */
  border-inline-start: 1px solid var(--border-dark);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);            /* off-canvas on the end edge (LTR: right) */
  visibility: hidden;
  transition: transform .4s var(--ease), visibility .4s var(--ease);
  overflow-y: auto;
}
:root[dir="rtl"] .drawer { transform: translateX(-100%); }  /* end edge is left in RTL */
.drawer.is-open,
:root[dir="rtl"] .drawer.is-open { transform: translateX(0); visibility: visible; }
body.drawer-open { overflow: hidden; }

.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer__brand { font-weight: 650; font-size: 1.05rem; }
.drawer__close { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.drawer__close span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
}
.drawer__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.drawer__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.drawer__nav ul { display: flex; flex-direction: column; }
.drawer__nav a {
  display: block; padding: 15px 0;
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  border-bottom: 1px solid var(--border-dark);
  transition: color .2s var(--ease), padding-inline-start .2s var(--ease);
}
.drawer__nav a:hover, .drawer__nav a:focus-visible { color: var(--accent); padding-inline-start: 8px; }

.drawer__foot { margin-top: auto; padding-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.drawer__foot .btn { justify-content: center; }
.drawer__foot .lang-switch { align-self: flex-start; }

/* ============================ 7.1 Hero ================================= */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: 0; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  min-height: clamp(420px, 46vw, 620px);
}
.hero__copy { max-width: 640px; }
.hero__title {
  font-size: var(--fs-h1);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.85;
  color: var(--muted-dark);
  max-width: 34em;
  margin-bottom: 2.25rem;
}
.hero__actions { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; }

/* Concentric data core */
.hero__visual { display: grid; place-items: center; }
.data-core {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.data-core__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(18, 199, 215, 0.55);
}
.data-core__ring:nth-child(1) { width: 92%;  height: 92%; opacity: .38; }
.data-core__ring:nth-child(2) { width: 70%;  height: 70%; opacity: .55; }
.data-core__ring:nth-child(3) { width: 50%;  height: 50%; opacity: .72; }
.data-core__ring:nth-child(4) { width: 29%;  height: 29%; opacity: .9;  }
.data-core__axis {
  position: absolute;
  width: 1px; height: 84%;
  background: linear-gradient(to bottom, transparent, rgba(18,199,215,.5), transparent);
}
.data-core__dot {
  position: absolute;
  width: 10%; height: 10%;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px rgba(18, 199, 215, .55);
}
.data-core__ring { animation: corePulse 6s var(--ease) infinite; }
.data-core__ring:nth-child(2) { animation-delay: .4s; }
.data-core__ring:nth-child(3) { animation-delay: .8s; }
.data-core__ring:nth-child(4) { animation-delay: 1.2s; }
@keyframes corePulse {
  0%, 100% { transform: scale(1);   }
  50%      { transform: scale(1.03); }
}
/* Dark variant used on the accent Contact section */
.data-core--dark .data-core__ring { border-color: rgba(6, 23, 25, 0.28); }
.data-core--dark .data-core__dot {
  background: var(--ink); border-color: var(--ink); box-shadow: none;
}

/* Trust metrics */
.trust {
  display: grid;
  grid-template-columns: minmax(200px, 0.55fr) 1.45fr;
  gap: var(--gap);
  align-items: center;
  padding-block: clamp(40px, 5vw, 64px);
  margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--border-dark);
}
.trust__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.trust__intro { color: var(--muted-dark); max-width: 22em; line-height: 1.7; }
.metric__value {
  font-size: var(--fs-metric);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: right; /* keep numerals LTR but aligned to the RTL start */
}
.metric__label { color: var(--muted-dark); font-size: 0.875rem; margin-top: 0.75rem; }

/* Warning ticker */
.ticker {
  background: var(--accent);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding-block: 20px;
}
.ticker__track {
  display: inline-flex;
  gap: 80px;
  padding-inline-start: 80px;
  animation: tickerMove 26s linear infinite;
  will-change: transform;
}
.ticker__track span { font-weight: 600; font-size: 0.95rem; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ============================ 7.2 Problem cases ======================== */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.case-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.25);
  padding: clamp(24px, 2.5vw, 34px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(6, 23, 25, .08);
}
.case-card__num {
  font-size: var(--fs-label);
  font-weight: 650;
  letter-spacing: 0.1em;
  color: var(--accent-ink);
}
.case-card__title {
  font-size: var(--fs-h3);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.case-card__text { color: var(--muted-light); margin-top: 0.9rem; }

/* ============================ 7.3 Services ============================= */
.services { border-top: 1px solid var(--border-dark); }
.service { border-bottom: 1px solid var(--border-dark); }
/* Whole row is the link; title with its sub-text stacked beneath it,
   tags + arrow pulled a little in from the edge (trailing spacer column). */
.service__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto minmax(0, 0.28fr);
  align-items: center;
  column-gap: clamp(18px, 3vw, 52px);
  padding: clamp(22px, 2.4vw, 32px) 12px;
  color: inherit;
  transition: background .25s var(--ease);
}
.service__link:hover { background: rgba(18, 199, 215, 0.06); }
.service__index { font-size: var(--fs-h3); font-weight: 650; color: var(--accent); align-self: start; }
.service__body { display: flex; flex-direction: column; gap: 0.45rem; }
.service__title { font-size: var(--fs-h3); font-weight: 650; letter-spacing: -0.01em; line-height: 1.3; }
.service__desc { color: var(--muted-dark); font-size: 0.95rem; line-height: 1.6; }
.service__tags {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted-dark);
  font-weight: 500;
  white-space: nowrap;
}
.service__arrow {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .25s var(--ease);
}
.service__link:hover .service__arrow { transform: translateX(-8px); }
:root[dir="ltr"] .service__link:hover .service__arrow { transform: translateX(8px); }

.services-foot {
  display: flex;
  align-items: center;
  gap: var(--gap);
  margin-top: clamp(40px, 5vw, 72px);
}
.services-foot__tag { color: var(--accent); font-weight: 600; font-size: var(--fs-label); letter-spacing: 0.1em; white-space: nowrap; }
.services-foot__text { font-size: var(--fs-lead); font-weight: 600; }

/* ============================ 7.4 Process ============================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.step {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: clamp(24px, 2.5vw, 36px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.step__num {
  position: absolute;
  top: clamp(24px, 2.5vw, 36px);
  inset-inline-start: clamp(24px, 2.5vw, 36px);
  font-size: var(--fs-label);
  font-weight: 650;
  letter-spacing: 0.1em;
  color: var(--accent-ink);
}
.step__mark {
  position: absolute;
  inset-inline-end: clamp(24px, 2.5vw, 36px);
  top: clamp(24px, 2.5vw, 36px);
  width: 34px; height: 34px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.step__title { font-size: var(--fs-h3); font-weight: 650; margin-top: auto; letter-spacing: -0.01em; }
.step__text { color: var(--muted-light); margin-top: 0.75rem; }

/* Stop / warning band */
.stop {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--gap);
  align-items: center;
  background: var(--warning);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 52px);
}
.stop__title {
  font-size: var(--fs-h3);
  font-weight: 650;
  line-height: 1.3;
  max-width: 12em;
}
.stop__rules { display: grid; gap: 0.6rem; font-weight: 600; }
.stop__rules li { display: flex; gap: 0.6em; }
.stop__rules span { font-weight: 650; margin-inline-start: 0.2em; }
.stop__action { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.stop__label { font-size: var(--fs-label); font-weight: 650; letter-spacing: 0.1em; }

/* ============================ 7.5 Experience ========================== */
.experience__inner {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.75fr);
  gap: var(--gap);
  align-items: center;
}
.experience__copy { max-width: 40em; }
.experience__lead { color: var(--muted-dark); font-size: var(--fs-lead); line-height: 1.8; margin-top: 1.5rem; }
.experience__tags { color: var(--accent); font-weight: 600; letter-spacing: 0.02em; margin-top: 1.5rem; }

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "feature feature"
    "top     accent"
    "cases   foot";
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
/* The headline stat — the main element of the block */
.metrics-grid__feature {
  grid-area: feature;
  align-items: flex-start;
  gap: 0.85rem;
  background:
    linear-gradient(180deg, rgba(18, 199, 215, 0.10), rgba(18, 199, 215, 0.02));
  border-inline-start: 3px solid var(--accent) !important;
}
.metrics-grid__feature-eyebrow {
  font-size: var(--fs-label); font-weight: 600; letter-spacing: 0.12em;
  color: var(--accent);
}
.metrics-grid__feature-main { display: flex; align-items: center; gap: clamp(14px, 2vw, 22px); }
.metrics-grid__rank {
  font-size: clamp(2.6rem, 3vw + 1rem, 3.6rem); font-weight: 650; line-height: 0.9;
  color: var(--accent); letter-spacing: -0.03em; flex-shrink: 0;
}
.metrics-grid__feature-text {
  font-size: var(--fs-lead); font-weight: 600; line-height: 1.45;
  color: var(--white); max-width: 22ch;
}
.metrics-grid__cell {
  padding: clamp(22px, 2.4vw, 34px);
  border: 0.5px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}
.metrics-grid__cell--top    { grid-area: top; align-items: flex-start; }
.metrics-grid__cell--cases  { grid-area: cases; }
.metrics-grid__cell--accent { grid-area: accent; background: var(--accent); color: var(--ink); }
.metrics-grid__cell--foot   { grid-area: foot; }
.metrics-grid__value { font-size: var(--fs-metric); font-weight: 650; line-height: 1; letter-spacing: -0.02em; text-align: right; }
.metrics-grid__label { color: var(--muted-dark); font-size: 0.85rem; margin-top: 0.75rem; }
.metrics-grid__cell--accent .metrics-grid__label { color: rgba(6, 23, 25, 0.75); }
.metrics-grid__index { font-size: var(--fs-h3); font-weight: 650; color: var(--warning); }
.metrics-grid__principle { font-size: var(--fs-lead); font-weight: 600; margin-top: 1rem; }

/* ============================ 7.6 FAQ ================================= */
.faq {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.55fr);
  gap: var(--gap);
  align-items: start;
}
.faq__rows { order: -1; }
.faq__aside { padding-top: 0.5rem; }
.faq__rows { border-top: 1px solid var(--border-light); }
.faq-row { border-bottom: 1px solid var(--border-light); }
.faq-row__q {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: start;
  padding: clamp(18px, 2vw, 26px) 4px;
}
.faq-row__num { font-weight: 650; color: var(--accent-ink); font-size: 0.85rem; }
.faq-row__text { flex: 1; font-weight: 600; font-size: var(--fs-lead); line-height: 1.5; }
.faq-row__icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-row__icon::before,
.faq-row__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.faq-row__icon::before { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-row__icon::after  { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-row__q[aria-expanded="true"] .faq-row__icon::before { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-row__a {
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
/* Collapse only when JS can re-open it → answers stay readable without JS. */
.js .faq-row__a { max-height: 0; }
.faq-row__a p {
  color: var(--muted-light);
  padding: 0 4px clamp(20px, 2vw, 26px);
  max-width: 60ch;
  line-height: 1.8;
}

/* ============================ 7.7 Contact ============================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.contact__title {
  font-size: var(--fs-h2);
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.contact .eyebrow { color: rgba(6, 23, 25, 0.75); }
.contact__lead { font-size: var(--fs-lead); line-height: 1.8; margin-bottom: 2rem; max-width: 30em; color: rgba(6, 23, 25, 0.85); }
.contact__visual { display: grid; place-items: center; }

/* ============================ 7.8 Footer ============================= */
.footer { padding-block: clamp(48px, 6vw, 80px); }
.footer__opening {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__opening-text { color: var(--muted-dark); font-weight: 500; }
.footer__brand {
  font-size: var(--fs-display);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-block: clamp(28px, 4vw, 48px) clamp(20px, 2vw, 28px);
}
.footer__divider { height: 2px; background: var(--accent); border-radius: 2px; }
.footer__divider--thin { height: 1px; background: var(--border-dark); margin-top: clamp(40px, 5vw, 64px); }
.footer__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: clamp(36px, 4vw, 56px);
}
.footer__col-title {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer__col-body { color: var(--muted-dark); line-height: 1.9; }
.footer__links { display: flex; flex-direction: column; }
.footer__links a { transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--white); }
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 36px);
  color: var(--muted-dark);
  font-size: 0.85rem;
}
.footer__legal-link { transition: color .2s var(--ease); }
.footer__legal-link:hover { color: var(--white); }

/* Legal / privacy document */
.legal-doc { max-width: 760px; }
.legal-updated {
  font-size: 0.85rem; color: var(--muted-light);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.legal-block { margin-bottom: clamp(28px, 4vw, 44px); }
.legal-block h2 {
  font-size: var(--fs-h3); font-weight: 650; line-height: 1.25;
  letter-spacing: -0.015em; margin-bottom: 0.7rem;
}
.legal-block p {
  color: var(--muted-light); line-height: 1.75; font-size: 1.02rem;
  margin-bottom: 0.7rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block > ul {
  list-style: disc; padding-inline-start: 1.4em;
  color: var(--muted-light); line-height: 1.7;
}
.legal-block > ul li { margin-bottom: 0.4rem; }
.legal-links { list-style: none; padding: 0; margin-top: 0.4rem; }
.legal-links li { margin-bottom: 0.35rem; }
.legal-links a { color: var(--accent-ink); font-weight: 500; }
.legal-links a:hover { text-decoration: underline; }
.legal-block a { color: var(--accent-ink); font-weight: 500; }
.legal-contact { border-top: 1px solid var(--border-light); padding-top: clamp(24px, 3vw, 36px); }

/* ============================ 8. Utilities ============================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .ticker__track { animation: none; }
}

/* ============================ Responsive ============================== */

/* Root language redirect page (kept class-based for a strict CSP). */
.language-redirect__body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 20vh 20px;
  background: #011e22;
  color: #fff;
  font-family: system-ui, sans-serif;
  text-align: center;
}
.language-redirect__link { color: #12c7d7; }

/* Laptop */
@media (max-width: 1200px) {
  .service__link { grid-template-columns: auto minmax(0, 1fr) auto auto; column-gap: clamp(16px, 2.5vw, 36px); }
}

/* Tablet landscape / iPad Pro */
@media (max-width: 1024px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .experience__inner { grid-template-columns: 1fr; }
  .metrics-grid { max-width: 560px; }
  .stop { grid-template-columns: 1fr 1fr; }
  .stop__title { grid-column: 1 / -1; }
}

/* Tablet portrait / iPad */
@media (max-width: 900px) {
  .nav { display: none; }
  /* On small screens the burger is the only nav → keep it always visible,
     and drop the header CTA (it lives in the drawer instead). */
  .header__cta { display: none; }
  .menu-fab { opacity: 1; visibility: visible; }
  .header__inner { height: 68px; }
  .logo__wm i { display: none; } /* keep just the primary wordmark on small screens */

  .hero__inner { grid-template-columns: 1fr; text-align: start; min-height: auto; }
  .hero__visual { order: -1; max-width: 260px; margin-inline: auto; }
  .hero__copy { max-width: none; }

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

  .cases { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__visual { max-width: 320px; margin-inline: auto; }
  .footer__info { grid-template-columns: repeat(2, 1fr); }
}

/* Services collapse to a stacked card on tablet */
@media (max-width: 760px) {
  .service__link {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "index body arrow"
      "index tags arrow";
    column-gap: 14px; row-gap: 6px;
    padding-block: 24px;
  }
  .service__index { grid-area: index; }
  .service__body { grid-area: body; }
  .service__tags { grid-area: tags; margin-top: 2px; }
  .service__arrow { grid-area: arrow; align-self: center; }
}

/* Mobile landscape */
@media (max-width: 680px) {
  .stop { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .services-foot { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Mobile portrait */
@media (max-width: 480px) {
  :root { --section-pad: 64px; }
  .cases { grid-template-columns: 1fr; }
  .trust__metrics { grid-template-columns: 1fr; gap: 24px; }
  .metrics-grid { grid-template-columns: 1fr; grid-template-areas: "feature" "top" "accent" "cases" "foot"; }
  .footer__info { grid-template-columns: 1fr; }
  .footer__opening { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__actions { gap: 16px; }
  .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   9. Service pages + language switcher (added for the bilingual build)
   ========================================================================== */

/* Language switcher in the header */
.lang-switch {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.lang-switch:hover { color: var(--white); border-color: var(--accent); }
.header__cta { margin-inline-start: 12px; }

/* Service hero */
.svc-hook {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.svc-hero .hero__title { margin-bottom: 1.5rem; }

/* Trust strip (dark, three inline metrics under the service hero) */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding-top: clamp(32px, 4vw, 48px);
  margin-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--border-dark);
}
.trust-strip .metric__value { color: var(--accent); }

/* Diagnosis block */
.diag {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.diag__title { font-size: var(--fs-h2); font-weight: 650; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.diag__body { color: var(--muted-dark); font-size: var(--fs-lead); line-height: 1.85; max-width: 46ch; }
.section--light .diag__body { color: var(--muted-light); }
.diag__steps { display: flex; flex-wrap: wrap; gap: 16px; margin-top: clamp(28px, 3vw, 40px); }
.step-chip {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 180px;
  flex: 1;
}
.section--light .step-chip { border-color: var(--border-light); }
.step-chip__n { font-size: var(--fs-label); font-weight: 650; letter-spacing: 0.1em; color: var(--accent); }
.section--light .step-chip__n { color: var(--accent-ink); }
.step-chip__t { font-weight: 600; margin-top: 0.5rem; }

/* Warning box (coral) */
.warn-box {
  background: var(--warning);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
}
.warn-box__label { font-size: var(--fs-label); font-weight: 650; letter-spacing: 0.1em; }
.warn-box__title { font-size: var(--fs-h3); font-weight: 650; line-height: 1.3; margin: 0.75rem 0 1rem; }
.warn-box__body { line-height: 1.75; font-weight: 500; }

/* Q&A rows (static, two columns: question on the start side, answer on the end) */
.qa { border-top: 1px solid var(--border-light); }
.qa__row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap);
  align-items: start;
  padding-block: clamp(22px, 2.4vw, 32px);
  border-bottom: 1px solid var(--border-light);
}
.qa__q { font-size: var(--fs-h3); font-weight: 650; line-height: 1.35; letter-spacing: -0.01em; }
.qa__a { color: var(--muted-light); line-height: 1.85; align-self: center; }

/* Service CTA band (accent) */
.svc-cta { background: var(--accent); color: var(--ink); }
.svc-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--gap);
  align-items: center;
}
.svc-cta__title { font-size: var(--fs-h1); font-weight: 650; line-height: 1.15; letter-spacing: -0.03em; }
.svc-cta__body { color: rgba(6, 23, 25, 0.85); font-size: var(--fs-lead); line-height: 1.75; margin-top: 1.25rem; max-width: 52ch; }
.svc-cta__label { font-size: var(--fs-label); font-weight: 650; letter-spacing: 0.1em; margin-bottom: 1rem; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--muted-dark); padding-top: 20px; }
.breadcrumb a { color: var(--muted-dark); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; margin-inline: 6px; }

/* Service page responsive */
@media (max-width: 1024px) {
  .diag { grid-template-columns: 1fr; }
  .svc-cta__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .qa__row { grid-template-columns: 1fr; gap: 10px; }
  .trust-strip { grid-template-columns: 1fr; gap: 24px; text-align: start; }
}

/* ==========================================================================
   10. Direction-aware arrow motion (forward = left in RTL, right in LTR)
   ========================================================================== */
:root[dir="ltr"] .btn:hover span,
:root[dir="ltr"] .link-arrow:hover span { transform: translateX(4px); }
:root[dir="ltr"] .service:hover .service__arrow { transform: translateX(8px); }


/* ==========================================================================
   12. Footer (repo-style: CTA line · contact pills · socials · local time)
   ========================================================================== */
.footer { padding-block: clamp(56px, 7vw, 96px); }

.footer__cta { max-width: 900px; margin-bottom: clamp(40px, 5vw, 64px); }
.footer__cta-icon {
  display: inline-flex; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-dark); border-radius: 50%;
  color: var(--accent); margin-bottom: 1.25rem;
}
.footer__cta-icon svg { width: 20px; height: 20px; }
.footer__cta-eyebrow {
  font-size: var(--fs-label); font-weight: 600; letter-spacing: 0.14em;
  color: var(--muted-dark); margin-bottom: 0.75rem;
}
.footer__cta-title {
  font-size: var(--fs-h1); font-weight: 650; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1.75rem;
}

.footer__contacts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 3vw, 40px); }
.footer-pill {
  display: inline-flex; align-items: center; gap: 0.65em;
  padding: 12px 20px; border: 1px solid var(--border-dark); border-radius: 999px;
  color: var(--muted-dark); font-weight: 500; font-size: 0.9rem;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.footer-pill:hover { color: var(--white); border-color: var(--accent); background: rgba(18, 199, 215, 0.06); }
.footer-pill__ic { display: inline-flex; color: var(--accent); flex-shrink: 0; }
.footer-pill__ic svg { width: 18px; height: 18px; }


.footer__bottom {
  display: grid; grid-template-columns: 1fr auto; gap: var(--gap);
  align-items: start; margin-top: clamp(32px, 4vw, 48px);
}
.footer__meta { display: flex; gap: clamp(32px, 5vw, 72px); flex-wrap: wrap; }
.footer__meta-block p { color: var(--muted-dark); font-size: 0.9rem; line-height: 1.7; }
.footer__col-title {
  font-size: var(--fs-label); font-weight: 600; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 0.85rem;
}
/* Socials — compact icon + text links (matches the marketing site's footer) */
.footer__socials ul { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer__socials li { display: inline-flex; font-size: 0.85rem; }
.footer__socials li a {
  display: inline-flex; align-items: center; gap: 0.5em;
  color: var(--muted-dark);
  transition: color .2s var(--ease);
}
.footer__socials li a:hover { color: var(--white); }
.social-ic { display: inline-flex; color: currentColor; flex-shrink: 0; }
.social-ic svg { width: 1.15em; height: 1.15em; }

.footer__legal { margin-top: clamp(28px, 3vw, 40px); }

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


/* ==========================================================================
   13. Motion — scroll-reveal initial states (JS on + motion allowed only)
   GSAP animates these to visible; without JS or with reduced-motion they
   stay fully visible (progressive enhancement, no layout shift).
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .js .section-head,
  .js .case-card,
  .js .service,
  .js .step,
  .js .step-chip,
  .js .stop,
  .js .warn-box,
  .js .diag__main,
  .js .metrics-grid,
  .js .experience__copy,
  .js .trust__metrics .metric,
  .js .trust-strip .metric,
  .js .services-foot,
  .js .section-foot,
  .js .svc-cta__inner,
  .js .contact__copy,
  .js .contact__visual,
  .js .faq-row,
  .js .footer__cta,
  .js .footer__contacts,
  .js .footer__bottom { opacity: 0; }
}

/* ==========================================================================
   14. Preloader (simple wordmark splash) + next-service band
   ========================================================================== */
.preloader { display: none; }
.js .preloader {
  display: grid; position: fixed; inset: 0; z-index: 9999;
  place-items: center; background: var(--bg-dark);
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; }
.preloader__wm { display: flex; flex-direction: column; align-items: center; gap: 0.4em; }
.preloader__l {
  font-size: clamp(2.2rem, 6vw, 3.4rem); font-weight: 300;
  letter-spacing: 0.01em; color: var(--white); line-height: 1;
}
.preloader__b {
  font-size: clamp(0.72rem, 2vw, 0.95rem); font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--accent);
}
/* Rotating service names under the wordmark */
.preloader__svc {
  position: relative;
  display: grid;
  place-items: center;
  height: 1.7em;
  margin-top: clamp(2.4em, 7vw, 3.6em);
}
.preloader__svc-item {
  grid-area: 1 / 1;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.45em);
  transition: opacity .16s var(--ease), transform .16s var(--ease);
}
.preloader__svc-item.is-active { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .preloader { transition: opacity .01s; }
  .preloader__svc-item { transition: none; }
}

/* Next-service band (service pages, before the footer) */
.svc-next {
  display: block; background: var(--bg-dark-2); color: var(--white);
  border-top: 1px solid var(--border-dark);
  transition: background .25s var(--ease);
}
.svc-next:hover { background: rgba(18, 199, 215, 0.06); }
.svc-next__inner {
  display: flex; align-items: center; gap: clamp(12px, 2vw, 24px);
  padding-block: clamp(28px, 4vw, 46px);
}
.svc-next__label {
  font-size: var(--fs-label); font-weight: 600; letter-spacing: 0.12em;
  color: var(--accent); text-transform: uppercase; white-space: nowrap;
}
.svc-next__name { font-size: var(--fs-h3); font-weight: 650; letter-spacing: -0.01em; }
.svc-next__arrow {
  margin-inline-start: auto; font-size: 1.6rem; color: var(--accent);
  transition: transform .25s var(--ease);
}
.svc-next:hover .svc-next__arrow { transform: translateX(-8px); }
:root[dir="ltr"] .svc-next:hover .svc-next__arrow { transform: translateX(8px); }

/* ==========================================================================
   15. Contact page — form + direct-contact card
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: var(--gap);
  align-items: start;
}

/* --- form --- */
.cform__title { font-size: var(--fs-h3); font-weight: 650; letter-spacing: -0.01em; margin-bottom: 1.6rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 18px; }
.field label, .field legend { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.req { color: var(--warning); }
.opt { color: var(--muted-light); font-weight: 500; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.95rem; width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fff; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.field input::placeholder, .field textarea::placeholder { color: #9aa5a3; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(10, 108, 116, 0.16);
}
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: var(--warning); }
.field select {
  appearance: none; padding-inline-end: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5 6 6.5 11 1.5' stroke='%235c6b69' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center;
}
:root[dir="rtl"] .field select { background-position: left 15px center; }
.field--radios { border: 0; padding: 0; margin-bottom: 20px; }
.field--radios legend { margin-bottom: 0.7rem; }
.radio { display: inline-flex; align-items: center; gap: 0.45em; margin-inline-end: 22px; font-size: 0.92rem; cursor: pointer; }
.radio input { width: auto; padding: 0; accent-color: var(--accent-ink); }
.cform__submit { margin-top: 6px; }
.cform__note { margin-top: 16px; font-size: 0.85rem; color: var(--muted-light); line-height: 1.7; }
/* Honeypot: off-screen (not display:none, so bots still fill it) */
/* honeypot — hidden without an off-screen offset (an offset would extend
   the document width and cause horizontal scroll, esp. in RTL). */
.hp {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.cform__status {
  margin-top: 18px; padding: 16px 18px;
  border: 1px solid var(--accent-ink); border-radius: var(--radius-sm);
  background: rgba(10, 108, 116, 0.08);
  display: flex; flex-direction: column; gap: 5px;
}
.cform__status[hidden] { display: none; }   /* `hidden` must beat display:flex */
.cform__status-title { color: var(--accent-ink); font-weight: 650; }
.cform__status-body { font-size: 0.88rem; color: var(--muted-light); line-height: 1.7; }
.cform__status.is-error { border-color: var(--warning); background: rgba(255, 99, 70, 0.08); }
.cform__status.is-error .cform__status-title { color: #c2381f; }
.cform__submit[disabled] { opacity: .65; cursor: progress; }

/* --- direct contact card --- */
.cinfo {
  background: var(--bg-dark); color: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  position: sticky; top: 96px;
}
.cinfo__title { font-size: var(--fs-h3); font-weight: 650; margin-bottom: 1.3rem; }
.cinfo__pills { display: flex; flex-direction: column; gap: 10px; }
.cinfo__pills .footer-pill { justify-content: flex-start; }
.cinfo__hours { margin-top: 1.6rem; color: var(--muted-dark); font-size: 0.9rem; line-height: 1.8; }
.cinfo__hours strong { color: var(--white); }
.cinfo__note { margin-top: 0.8rem; color: var(--muted-dark); font-size: 0.85rem; line-height: 1.7; }
.cinfo__socials { margin-top: 1.8rem; }
.cinfo__socials ul { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.cinfo__socials li { font-size: 0.85rem; }
.cinfo__socials a { display: inline-flex; align-items: center; gap: 0.5em; color: var(--muted-dark); transition: color .2s var(--ease); }
.cinfo__socials a:hover { color: var(--white); }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cinfo { position: static; }
}
@media (max-width: 620px) {
  .cform__row { grid-template-columns: 1fr; }
}

/* Minimal footer (contact page): tighter, no CTA/pills/socials */
.footer--minimal { padding-block: clamp(40px, 5vw, 64px); }
.footer--minimal .footer__brand { margin-block: 0 clamp(18px, 2vw, 26px); }
